2007 May 03 7:58 PM
Hi everyone,
Could anyone let me know how I can get 2 fields with their text values in the same line. For eg:
weight ______ unit of weight _____
i need both of the fields and text to be visible.
Thanks/
Message was edited by:
Raj Kali
Hi everyone,
Could anyone let me know how I can get 2 fields with their text values in the same line. For eg:
weight ______ unit of weight _____
i need both of the fields and text to be visible.
Thanks/
Message was edited by:
Raj Kali
2007 May 03 8:01 PM
Hi,
You can use SELECTION-SCREEN BEGIN OF LINE and SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) INPUT1.
PARAMETERS P1 TYPE I.
SELECTION-SCREEN COMMENT 40(10) INPUT2.
PARAMETERS P2 TYPE I.
SELECTION-SCREEN END OF LINE.
INITIALIZATION.
INPUT1 = 'FIELD1'.
INPUT2 = 'FIELD2'.
Regards,
Ferry Lianto
2007 May 03 8:12 PM
Hi,
Check this example..
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(10) v_text1 FOR FIELD p_menge.
PARAMETERS: p_menge TYPE menge_d.
SELECTION-SCREEN COMMENT 30(20) v_text2 FOR FIELD p_meins1.
PARAMETERS: p_meins1 TYPE meins.
SELECTION-SCREEN END OF LINE.
INITIALIZATION.
v_text1 = 'Weight'.
v_text2 = 'Unit of Weight'.
Thanks
Naren
2007 May 03 9:25 PM
Hi,
Is this what you want or some thing else? Just reply and close the thread if your problem is solved.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |