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: 

Error Transaction 'Function code' doesn't exist.

Former Member
0 Kudos

hi ppl,

i have a screen in which i am calling a subscreen.In the Subscreen there is button and i have given its function code as 'SSR'.

Now when i execute the transaction the subscreen with all the data is appearing on the screen.When i press the button SAP is giving me error'Transaction 'SSR' doesnt exist'.

In the PAI of the subscreen i have the below logic.

case sy-ucomm.

when 'SSR'.

call screen 1008 starting at 5 10 ending at 23 43.

when others.

exit.

endcase.

Can anybody suggest what is the problem and how to fix it?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi..,

Check in the field attributes of the layout of this screen...

<b>In the FCT type of this field u might have given as 'T'...

remove that.</b>

plz do remember to close the thread when ur problem is solved..

reward points if helpful,

sai ramesh

3 REPLIES 3

Former Member
0 Kudos

hi..,

Check in the field attributes of the layout of this screen...

<b>In the FCT type of this field u might have given as 'T'...

remove that.</b>

plz do remember to close the thread when ur problem is solved..

reward points if helpful,

sai ramesh

Former Member
0 Kudos

Hi Raja,

While you giving the Function code for that button, you have a Function type(Fct type), there do not select anything, just select Blank, and activate it

Regards

Sudheer

Former Member
0 Kudos

have you called the subscreens in PBO and PAI like this..

ROCESS BEFORE OUTPUT.
  MODULE STATUS_100.
  CALL SUBSCREEN: AREA1 INCLUDING SY-REPID NUMBER1,
                  AREA2 INCLUDING SY-REPID NUMBER2.

PROCESS AFTER INPUT.
  MODULE CANCEL AT EXIT-COMMAND.
  MODULE SAVE_OK.
  CALL SUBSCREEN: AREA1,
                  AREA2.
  MODULE USER_COMMAND_100.