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

problem in dynamic internal table

Former Member
0 Likes
319

hello experts,

i have developed a report the out put is as shown:

first screen: i will be entering one 'z' or 'y' table name dynamically.

second screen: a popup screen with checkboxes and the field names of above particular table entered.

when user selects the checkboxes or fieldnames.

only those fieldnames with data should be displayed in the next list.

for example:

when user enters table name: ZGEB_0X_FBIW_CSA

a pop-up screen displays as shown below:

fieldnames

checkbox1 mandt

checkbox2 sender

checkbox3 receiver (i hav done upto this )

when user selects checkbox1 & 2:

(but i am not getting how to get below screen after selecting the checkboxes)

only the data of mandt and sender should be displayed in the next list

i.e. mandt sender

710 ttttt

pls help me in this regard

thanx in advance

soham.p.

1 REPLY 1
Read only

Former Member
0 Likes
288

Hi Soham

In the secodn screen create two button BACK and Next.

When you click on Next it will take you to the third screen.

In the PBO of the third screen by defualt all the fields will be visible now

based on checkbox entry loop the next screen and modify the fields which you don`t want to display.

LOOP AT SCREEN.

CHECK screen-name = ZTAB-MATNR.

screen-input = '0'.

MODIFY SCREEN.

ENDLOOP.

Regards

Neha