Application Development 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: 

fctcode

Former Member
0 Kudos

Hi,

all about fctcode

regards

1 ACCEPTED SOLUTION

former_member194669
Active Contributor
0 Kudos

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.

4 REPLIES 4

former_member194669
Active Contributor
0 Kudos

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.

0 Kudos

can we give it like fct1 and how many can we create these codes

0 Kudos

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

Former Member
0 Kudos

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