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

Selection Screen Select-Options link to db question

Former Member
0 Likes
636

Hi,

Can someone please tell me why the following code produces a drop-down (look-up) for s_partnr, but not one for s_collsg?

DATA: w_udmbp  TYPE udmbpsegments,

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECT-OPTIONS: s_partnr  FOR w_udmbp-partner,                "Partner
                             s_collsg  FOR w_udmbp-coll_segment.       "Collection Segment

SELECTION-SCREEN SKIP 1.
PARAMETERp_segmnt TYPE bdm_coll_segment OBLIGATORY DEFAULT 'SEGMENT_US'(003).
SELECTION-SCREEN END OF BLOCK b1.

Thanks for your help,

Andy

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
605

Hello.

Because s_partnr (w_udmbp-partner) contains a help search and not s_collgs. Look

Regards

Miguel

3 REPLIES 3
Read only

Former Member
0 Likes
606

Hello.

Because s_partnr (w_udmbp-partner) contains a help search and not s_collgs. Look

Regards

Miguel

Read only

0 Likes
605

Oh...simple enough...thank you!

Read only

RaymondGiuseppi
Active Contributor
0 Likes
605

The system look for a search-help for each field from screen definition to ddic

This graphic is explained in the accompanying text

Here it found one for first field and not for second, check via SE11.

Regards,

Raymond