Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- * This report demonstrates how more than one fields
- * can be transferred from a pick in the value help
- * See http://scn.sap.com/message/14103652 for details
- * The important point is to make all the involved fields
- * part of one DDIC structure (here: ZZORGEH),
- * and to refer to this DDIC structure in the parameter
- * and/or select-options definitions.
- * In the DDIC structure, the F4 assignment is defined.
- report zz_test_orgeh.
- selection-screen begin of line.
- selection-screen comment 1(30) for field p_org.
- parameters: p_org type zzorgeh-orgeh.
- parameters: p_orgtx type zzorgeh-orgtx.
- selection-screen end of line.
- * This is only for closing the field P_ORGTX for input
- * (as it is only concomitant, and will be populated by F4 pick)
- at selection-screen output.
- loop at screen.
- if screen-name eq 'P_ORGTX'.
- screen-input = 0.
- modify screen.
- endif.
- endloop.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement