‎2008 Dec 26 10:57 AM
The logical database VXV has a selection screen version 600, which excludes the parameter VBTYP_M.
This ldb and the screen 600 therein have been used in a Z program, in which i need this parameter to appear.
Is it possible to re-display ( if you will ) a parameter excluded in the selection screen declaration in the ldb.
Secondly , (i tried but was not successful at this ), if a selection screen version can be created in the customer namespace for an SAP provided LDB ( without ofcourse resorting to creating a copy of the LDB ).
Awaiting your response
‎2008 Dec 26 12:08 PM
Hi,
Use selection screen version 700. It will solve ur problem.
Go to attributes of program and in selection screen enter value 700
‎2008 Dec 26 12:22 PM
Hi,
Yes it is possible.
AT SELECTION-SCREEN OUTPUT.
LOOP AT screen.
IF screen-name EQ ur screen field name. "This is ur LDB screen field name. If select option then
"pass some thing like 'SO_VBTYP-LOW' and SO_VBTYP-HIGH'.
screen-sctive = 1.
MODIFY screen.
ENDLOOP.
Thanks,
Vinod.