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

input through abap programs

Former Member
0 Likes
998

hi , i want to design a input selection screen through abap program.

i have following fields in table input master

1 Form type,

2 step no,

3 step desc,

4 value

i want to bring programatically first three values of input master on selection screen and fourth value should be given by user and after user fills the value it should get store in input master.

how to do it through abap program ???

3 REPLIES 3
Read only

Former Member
0 Likes
746

Hi,

selection-screen begin of block b1 with frame.

parameters: p_form like form type,

p_stepno like step no,

p_stepdes like step desc.

selection-screen end of block b1.

start-of-selection.

Modify value.

if sy-subrc = 0.

message ' text ' <type>.

endif.

Reward if Helpful

Jagadish

Read only

Former Member
0 Likes
746

Write the code in INTIALIZATION.

write the code at selection-screen on input. for the second requirement.

you will get.

Regards,

madan.

Read only

Former Member
0 Likes
746

Hi,

Please make ur requirement clear..

What is understood is..

Four fileds..

First , 3 fields should be enabled with F4 help.. that is selecton of some values which is already in the table.

Fourth field should be input enabled..

If this is the case...

PARAMETERS : Formtype TYPE Tablename-Formtype ,

Stepno TYPE Tablename-Stepno,

Stepdesc TYPE Tablename-stepdesc,

Value TYPE I.

Reward Points