‎2007 Sep 25 7:09 AM
Hi ALL,
I want this below mentioned words to be printed in selection screeen
Current Project ID :----
Previous Project ID : -
Note:
General select-options looks like this :
Current Project ID -
TO -
I want to replace this TO as Previous Project ID.
Can anyone tell me how to do it.
Thanks®ards,
R.Vinoth.
‎2007 Sep 25 7:13 AM
hi
Change the selection text in the options
open that selection text in change mode then replace the TO as Previous project id
‎2007 Sep 25 7:15 AM
Hi,
try like this
select-options : s_Current Project ID for <tablename-fieldname> no intervals,
s_Previous Project ID for <tablename-fieldname> no intervals.
Regards,
Nagaraj
‎2007 Sep 25 7:23 AM
Hi,
Check the below code.
tables: pa0001.
SELECTION-SCREEN BEGIN OF BLOCK aff WITH FRAME.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) text-020 FOR FIELD s_bukrs.
SELECTION-SCREEN POSITION 31.
SELECT-OPTIONS : s_bukrs FOR pa0001-bukrs NO INTERVALS NO-EXTENSION."Company Code
SELECTION-SCREEN COMMENT 56(3) text-030 FOR FIELD s_bukrs1.
SELECTION-SCREEN POSITION 60.
SELECT-OPTIONS : s_bukrs1 FOR pa0001-bukrs NO INTERVALS.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK aff.
text-elements
*020 Company code
*030 To
Message was edited by:
Velangini Showry Maria Kumar Bandanadham
‎2007 Sep 25 7:26 AM
Hi Vinoth,
When you are declaring select-options ,I think you cant insert your text in between them.Instead declare two select-options with no intervals or no-extension option
‎2007 Sep 25 7:36 AM
Hi Vinoth
i am sorry , there is no method to insert the data there
‎2007 Sep 25 7:42 AM
Hi vinoth,
You have to just write no-intervals syntax with the field in selection screen to replace TO.Just see eg below :
SELECTION-SCREEN BEGIN OF BLOCK ID WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS: EBELN FOR EKKO-EBELN NO INTERVALS,
AEDAT FOR EKKO-AEDAT NO INTERVALS.
The fields EBELN and AEDAT will be displayed without TO keyword.
Please reward if useful.
Thanks.