GPWindow is Everything Dynamics GP. Try the Custom GP Search engine which searches high quality GP Blogs, and the Microsoft Dynamics GP Community Forums.
Copy List Items in Extender
Why this feature is cool!
Do you have lists on multiple forms or windows in Extender that are the same or very similar? Perhaps after you have finished typing a long list of items you found that you missed some or mistyped a word or changed the order from another list. Well now, you can copy a list of items from the same…

Here is another support case that was resolved simply and quickly using the Support Debugging Tool.
The customer was using Extender to add an additional comment to the inventory stock transfer transaction. They created an Extender ID "ST_COMMENTS" and used the Long String field type in Extender which is a 255 character string. This worked fine.
Then the customer wanted to include the Extender field on the posting reports. There is a Knowledge Base (KB) article that explains how to use a calculated string field and a user defined report writer function to return Extender to a report. click on the link below for more details:
The instructions are to use the rw_TableHeaderString() report writer function and pass through the following parameters:
So below is the definition of the Comment calculated field:
Comment = FUNCTION_SCRIPT( rw_TableHeaderString 3107 "ST_COMMENTS" Table.FieldName 0 1 )
To break the 255 character string into 4 lines of up to 80 characters each the following calculated fields were also created using the RW_ParseString() report writer function:
Comment1 = FUNCTION_SCRIPT( RW_ParseString Comment 80 1 )
Comment2 = FUNCTION_SCRIPT( RW_ParseString Comment 80 2 )
Comment3 = FUNCTION_SCRIPT( RW_ParseString Comment 80 3 )
Comment4 = FUNCTION_SCRIPT ( RW_ParseString Comment 80 4 )
In theory this should work perfectly. In practice it fails badly.
The problem is that there currently is a 80 character limit on the size of string calculated fields in report writer. This limit is discussed in the following post: Hybrid - Cheque Amount in Words Example and required additional code to be written to solve it for the one function: Announcing Report Writer Function RW_ConvertToWordsAndNumbersParse. The problem report number for the 80 character limit is PR 5239.
The end result was that only the first 80 characters of the Extender long string was returned and so only the first line of the 4 Comment lines was populated. It was at…
Why this feature is cool!
In GP2010, Unified Communications and Office Communicator 2007 functionality was added to the Dynamics GP windows to show the status of contacts and allow you to contact them directly through Office Communicator or make a phone call.
· Display Presence Indicator for customers and vendors
· Uses the Linked…
You may has seen that Microsoft Dynamics GP v10.00 Service Pack 4 will include a number of new features to the Extender product.
Please see the information on blog posts on the Inside Microsoft Dynamics GP blog and US Microsoft Dynamics GP Field Team blog:
What we are getting is more of the features from eOne Integrated Business Solutions's eXtender product. Lots of cool features that go way beyond the additional custom fields offered…