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

fctcode

Former Member
0 Likes
750

Hi,

all about fctcode

regards

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
702

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®

4 REPLIES 4
Read only

former_member194669
Active Contributor
0 Likes
703

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®

Read only

0 Likes
702

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

Read only

0 Likes
702

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

Read only

Former Member
0 Likes
702

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