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

UPDATE AND DISPLAY TABLE WHEN EXECUTE BUTTON IS CLICKED

Former Member
0 Likes
581

Hi,

I'm new into ABAP and so require help.My requirement is:

I have a selection screen with two radiobuttons:1) table 2) reports

When the user clicks 'table' another screen is displayed with four input fields 1)date 2)price 3)share 4) description.

After the user fills the details and clicks on execute button a table is displayed with the updated details(which the user fills in selection screen).

When the user clicks 'reports' a screen is displayed with three radiobuttons:1)monthly 2)quarterly 3)yearly.

When the user clicks 'monthly' another screen is displayed with two input fields: 1)month 2)year

After the user clicks execute table is displayed for the fields entered.

When the user clicks 'quarterly' another screen is displayed with input field as listbox(1,2,3,4).After the user clhooses one of the options from the list and clicks on execute table is displayed.

and same for 'yearly'.

i have used modif id's with radiobuttons and used screen-active=0 to hide the selection screen.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF R1='X'.

IF SCREEN-GROUP ='MODIFID 1'.

SCREEN-ACTIVE=0.

ENDIF.

endif.

MODIFY SCREEN.

ENDLOOP.

How will i update the table with the input fields(which the user gives in selection screen) and display the table when execute button is clicked?please help.

Hi,

I'm new into ABAP and so require help.My requirement is:

I have a selection screen with two radiobuttons:1) table 2) reports

When the user clicks 'table' another screen is displayed with four input fields 1)date 2)price 3)share 4) description.

After the user fills the details and clicks on execute button a table is displayed with the updated details(which the user fills in selection screen).

When the user clicks 'reports' a screen is displayed with three radiobuttons:1)monthly 2)quarterly 3)yearly.

When the user clicks 'monthly' another screen is displayed with two input fields: 1)month 2)year

After the user clicks execute table is displayed for the fields entered.

When the user clicks 'quarterly' another screen is displayed with input field as listbox(1,2,3,4).After the user clhooses one of the options from the list and clicks on execute table is displayed.

and same for 'yearly'.

i have used modif id's with radiobuttons and used screen-active=0 to hide the selection screen.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF R1='X'.

IF SCREEN-GROUP ='MODIFID 1'.

SCREEN-ACTIVE=0.

ENDIF.

endif.

MODIFY SCREEN.

ENDLOOP.

How will i update the table with the input fields(which the user gives in selection screen) and display the table when execute button is clicked?please help.

1 REPLY 1
Read only

Former Member
0 Likes
410

Moderator message - Please do not post your requirements and ask the forum to do your work for you. This is not a good forum to learn ABAP post locked Rob