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: 

Please pass the solution tabstrip

Former Member
0 Kudos

The error wen i run the transaction which had tabstrip with it

i.e screen no 0200

Below written is the error friends

<i>

<b>call subscreen zrub_module 0200 No dynpro name</b></i>

subscreens 5000 and 5001

why this error is coming and how can i solve that

Plz Plz Plz do reply

code for my 0200

process before output.

module status_0200.

call subscreen: subarea1 including zrub_module 5000,

subarea2 including zrub_module 5001.

process after input.

call subscreen: subarea1, subarea2.

module user_command_0200.

and on double click events

module STATUS_0200 output.

tab1-ACTIVETAB = 'FIRST'.

endmodule.

module USER_COMMAND_0200 input.

SAVE_OK = OK_CODE.

CLEAR OK_CODE.

IF SAVE_OK = 'OK'.

MESSAGE I888(SABAPDOCU) WITH 'TAB1-ACTIVETAB ='

TAB1-ACTIVETAB.

ENDIF.

endmodule.

on main window

declaration

CONTROLS TAB1 TYPE TABSTRIP.

DATA: ok_code TYPE sy-ucomm,

save_ok TYPE sy-ucomm.

i think i had done all steps but then y i m not getting subscreens on screen

Plz Do reply

Thanking You,

With Best Regards

Ruby

1 REPLY 1

Former Member
0 Kudos

Hi Ruby

While calling the subscreen write '5000' and '5001' instead of 5000 and 5001.

Ex:

call subscreen: subarea1 including zrub_module '5000',

subarea2 including zrub_module '5001'.

Please award points, if I have solved your problem.