My Target: What I am trying to achieve is to fill the scrolling window with two customer details.
but the line fill of scrolling window rejects the additional details and display only default customer detail.
How to tackle the rejection of my hardcoded customer detail?
Trigger registered.
l_result = Trigger_RegisterFocus(anonymous('Next Button - Window Area' of window RM_Apply_Document of form RM_Cash_Apply), TRIGGER_FOCUS_CHANGE, TRIGGER_AFTER_ORIGINAL, script fillthescroll);
Trigger processing Procedure (script fillthescroll)
'Customer Number' of table RM_OPEN_TEMP="AARONFIT0001";
'Document Number' of table RM_OPEN_TEMP="STDINV2222";
'RM Document Type-All' of table RM_OPEN_TEMP=1;
'Email Type' of table RM_OPEN_TEMP=0;
'Currency ID' of table RM_OPEN_TEMP="Z-US$";
save table RM_OPEN_TEMP;
*This post is locked for comments