‎2008 May 09 5:28 AM
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 ???
‎2008 May 09 5:32 AM
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
‎2008 May 09 5:38 AM
Write the code in INTIALIZATION.
write the code at selection-screen on input. for the second requirement.
you will get.
Regards,
madan.
‎2008 May 09 7:10 AM
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