2013 Jun 20 3:40 PM
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.
PARAMETER: p_segmnt TYPE bdm_coll_segment OBLIGATORY DEFAULT 'SEGMENT_US'(003).
SELECTION-SCREEN END OF BLOCK b1.
Thanks for your help,
Andy
2013 Jun 20 3:49 PM
Hello.
Because s_partnr (w_udmbp-partner) contains a help search and not s_collgs. Look
Regards
Miguel
2013 Jun 20 3:49 PM
Hello.
Because s_partnr (w_udmbp-partner) contains a help search and not s_collgs. Look
Regards
Miguel
2013 Jun 20 4:16 PM
2013 Jun 21 6:32 AM