Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding Selection screen

Former Member
0 Likes
362

Hello friends,

*SELECT-OPTIONS: P_CDATE LIKE SY-DATUM. "Create Date

In the selection screen I need to display only label with out any input field.

==== ===========================

Create Date -


<Text Field Box>

under <Text Fieldb Box> , i need to display lable as .....( date format: MM/DD/YYYY )

=======================

please help me.

Thanks in advance

Regards

Raghu

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
339

Try this code;

SELECT-OPTIONS: p_cdate FOR sy-datum.

SELECTION-SCREEN SKIP 1.

SELECTION-SCREEN COMMENT : 35(10) text-001 , 60(10) text-001 .

Create the text element text-001 as 'MM/DD/YYYY' .

Let me know if that helps ...

Thanks,

Aditya.V

2 REPLIES 2
Read only

Former Member
0 Likes
340

Try this code;

SELECT-OPTIONS: p_cdate FOR sy-datum.

SELECTION-SCREEN SKIP 1.

SELECTION-SCREEN COMMENT : 35(10) text-001 , 60(10) text-001 .

Create the text element text-001 as 'MM/DD/YYYY' .

Let me know if that helps ...

Thanks,

Aditya.V

Read only

Former Member
0 Likes
339

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT (29) from_text.

PARAMETERS: p_para11 LIKE knvk-parau AS LISTBOX VISIBLE LENGTH 18.

SELECTION-SCREEN COMMENT (5) to_text.

PARAMETERS: p_para2 LIKE knvk-parau AS LISTBOX VISIBLE LENGTH 18.

SELECTION-SCREEN END OF LINE.

from_text = FROM

to_text = TO

thanq