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

Tab sequence in Matetial Master

Former Member
0 Likes
962

We are working on customized Material master screen. (These

sub-screens are defined in customization of material master)

In our

customized sub-screens we are using TABLE control to display the data. When we

click on table control scroll bar, the main program pushes to next tab instead

of remain on same tab.

After debugging the program I have found that the

field BILDFLAG in defined in main program decides the flow of tabs. If the value

of BILDFLAG is initial then it pushes to next tab otherwise it keep same screen

(tab).

My problem is I can not access the BILDFLAG field in my

customized sub-screen.

Does anyway one know how can put value in this

field? Or any other method to stop pushing program to next tab?

1 ACCEPTED SOLUTION
Read only

Sayan_C
Explorer
0 Likes
859

Hi Ramso,

If you want to assign value to filed BILDFLAG at your customized subscreen ,please try as below

data: lv_str_BILDFLAG  TYPE char30.

FIELD-SYMBOLS: <fs_BILDFLAG> TYPE KZREF.

lv_str_BILDFLAG = '(SAPLMGMM)BILDFLAG'.

ASSIGN (lv_str_BILDFLAG) to <fs_BILDFLAG>.

if <fs_BILDFLAG> is ASSIGNED.

   <fs_BILDFLAG> = 'X'"You can set value here

ENDIF.

Hope it help,

Sayan.

3 REPLIES 3
Read only

Sayan_C
Explorer
0 Likes
860

Hi Ramso,

If you want to assign value to filed BILDFLAG at your customized subscreen ,please try as below

data: lv_str_BILDFLAG  TYPE char30.

FIELD-SYMBOLS: <fs_BILDFLAG> TYPE KZREF.

lv_str_BILDFLAG = '(SAPLMGMM)BILDFLAG'.

ASSIGN (lv_str_BILDFLAG) to <fs_BILDFLAG>.

if <fs_BILDFLAG> is ASSIGNED.

   <fs_BILDFLAG> = 'X'"You can set value here

ENDIF.

Hope it help,

Sayan.

Read only

Former Member
0 Likes
859

Changing the '(SAPLMGMI)UBILDFLAG' did help.

thanks

Read only

0 Likes
859

Hi Sayan,

Can this be suppressed at the config level instead of handling at the code?. Facing similar issue with custom subscreen in MM43.