Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding PF-STATUS Functional type: System Function

Former Member
0 Likes
1,832

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...............

6 REPLIES 6
Read only

Former Member
0 Likes
1,040

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

Read only

Former Member
0 Likes
1,040

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

Read only

Former Member
0 Likes
1,040

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

Read only

Former Member
0 Likes
1,040

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

Read only

Former Member
0 Likes
1,040

This message was moderated.

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
1,040

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