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: 

create tab

Former Member
0 Kudos

hi,

there is students master data there is lot of tabs are there, i have to create one more for category in that category i have to show EBC/NON EBC i.e. Economical backward calss or non economical backward class, please let me know how to create the same and display the same in students master data.

please explain me in details by step by step.

please do the needful in urgent

thanks

sujatha

1 REPLY 1

Former Member
0 Kudos

is that u want to develop screen withh multiple tabs.

if yes plz chk below.

***********************************************************************************

  • SELECTION SCREEN *

***********************************************************************************

*block for period

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

PARAMETERS : p_month LIKE t247-mnr OBLIGATORY , "month

p_year LIKE mkpf-mjahr OBLIGATORY. "year

SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN BEGIN OF TABBED BLOCK b2 FOR 11 LINES.

SELECTION-SCREEN TAB (15) text-002 USER-COMMAND ucomm1

DEFAULT SCREEN 101.

SELECTION-SCREEN TAB (15) text-003 USER-COMMAND ucomm2

DEFAULT SCREEN 102.

SELECTION-SCREEN END OF BLOCK b2.

  • declare parameters / select options here

SELECTION-SCREEN BEGIN OF SCREEN 101 AS SUBSCREEN.

PARAMETER: p_gs_cm TYPE ztpsin01-gsales_com,

p_ns_cm TYPE ztpsin01-nsales_com,

p_un_cm TYPE ztpsin01-units_com,

p_mv_cm TYPE ztpsin01-mva_com.

SELECTION-SCREEN END OF SCREEN 101.

SELECTION-SCREEN BEGIN OF SCREEN 102 AS SUBSCREEN.

PARAMETERS: p_mat_cm TYPE ztpsin01-in_rw_com,

p_wrk_cm TYPE ztpsin01-in_wip_com,

p_stk_cm TYPE ztpsin01-in_stf_com,

p_frd_cm TYPE ztpsin01-in_fpr_com,

p_oth_cm TYPE ztpsin01-in_oth_com.

SELECTION-SCREEN END OF SCREEN 102.

end-of-selection.

plz reward points.