2010 Sep 21 2:11 PM
Hi,
If I input some value in one selection fields parameter. Based on the input value its should populate remaining input fields automatically on selection screen. How can it be done.
Thanks in advance
Hi,
If I input some value in one selection fields parameter. Based on the input value its should populate remaining input fields automatically on selection screen. How can it be done.
Thanks in advance
2010 Sep 21 2:27 PM
Hi,
try this way...
parameters : p_vbeln type vbap-vbeln USER-COMMAND 'A',
p_posnr type vbap-posnr.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'A'.
select single posnr from vbap into p_posnr where vbeln = p_vbeln.
ENDIF.
ENDLOOP.
Prabhudas
2010 Sep 21 3:39 PM
Moderator message - Please search before asking - post locked Rob
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |