2007 Nov 02 1:55 PM
2007 Nov 02 2:03 PM
Hi,
Function code that triggers the PAI event. When the user clicks the tab, the function code is placed in the system field SY-UCOMM. If you are scrolling at the backend, the function code is also placed in the OK_CODE field.
a®
2007 Nov 02 2:03 PM
Hi,
Function code that triggers the PAI event. When the user clicks the tab, the function code is placed in the system field SY-UCOMM. If you are scrolling at the backend, the function code is also placed in the OK_CODE field.
a®
2007 Nov 02 2:08 PM
can we give it like fct1 and how many can we create these codes
2007 Nov 02 2:15 PM
Hi,
The codes are generally based on the number of elements(like push buttons) on your screen and there is no as such limit on them.
Regards,
Atish
2007 Nov 02 2:14 PM
Hi,
fctcode is Function Code,
system field, SY-UCOMM holds the fctcode.
In PAI of the Screen, we will write the functionality for that particular fctcode,
like,
CASE SY-UCOMM.
WHEN 'INSERT'.
.....................
WHEN 'EXIT'.
...................
ENDCASE.
Bye,
KC