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

Excluded LDB selection re-display

Former Member
0 Likes
396

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

2 REPLIES 2
Read only

Former Member
0 Likes
371

Hi,

Use selection screen version 700. It will solve ur problem.

Go to attributes of program and in selection screen enter value 700

Read only

vinod_vemuru2
Active Contributor
0 Likes
371

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.