‎2010 Feb 11 6:21 AM
Hi,
I created a pf-status and for BACK, EXIT buttons I asigned Funtional Type as Systeom Function 'S', but here why I unable to get BACK and EXIT functionality, I haven't handled SY-UCOMM in PAI, Coz I thought that the System Function option performs the default action w/o our code. If so can plz say why we do have this System function 'S'.
Thanks & Regards
Srinivas...............
‎2010 Feb 11 6:40 AM
User command will be handled by the system only if you use the standard GUI status.
For your own GUI status, you have to write the code explicitly in PAI subroutines and handle the events.
Regards,
Sumit
‎2010 Feb 11 6:47 AM
Hi
this link provides the different function types and its description
http://help.sap.com/saphelp_nw04/Helpdata/EN/d1/801ce8454211d189710000e8322d00/frameset.htm
Regards
G. Nikhil Kumar
‎2010 Feb 11 6:47 AM
Hi
this link provides the different function types and its description
http://help.sap.com/saphelp_nw04/Helpdata/EN/d1/801ce8454211d189710000e8322d00/frameset.htm
Regards
G. Nikhil Kumar
‎2010 Feb 11 6:47 AM
Hi
this link provides the different function types and its description
http://help.sap.com/saphelp_nw04/Helpdata/EN/d1/801ce8454211d189710000e8322d00/frameset.htm
Regards
G. Nikhil Kumar
‎2010 Feb 11 6:48 AM
‎2010 Feb 11 9:20 AM
Hi,
Refer the below:-
E - Triggers an "at exit-command" module in the Process After Input (PAI) processing block (MODULE <xxx> AT EXIT-COMMAND). When the user selects an E type function, the system enters the "at exit-command" module before carrying out any input checks.
T - Calls another transaction. Activating a T type function has the same effect as the LEAVE TO TRANSACTION statement. The user cannot return to the original transaction.
S - Triggers system functions used internally in SAP standard applications. You should not use type 'S' when creating your own functions.
P - Triggers a function defined locally at the GUI. This function is not passed back to the ABAP program (no SY-UCOMM or OK_CODE). Instead, it is processed at the presentation server. This type of function can only currently be used for tabstrip controls (Screen Painter).
Hope this helps you.
Regards,
Tarun