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

matchcode symbol problem

Former Member
0 Likes
857

Hi All,

Hope all are doing fine!!!!

am displaying the date field in the selection-screen .., am able to display the calendar by pressing F4 in the select-options ,,,,but the problem is am unable to display matchcode-symbol ( round symbol ) for that date field ..,

am using: l_date type datum,

l_date type sy-datum,

l_date type erdat,,,,,,,but none of these options are displaying matchcode symbol ,,..

but am able to display calendar by pressing F4 on the date field.

pls. help me solving out this issue which will be able to display matchcode symbol

Thanks & Regards,

Jack

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
767

Hi

declare tha field as any date field in any table.

Eg :

parameter : t_date type bkpf-budat.

4 REPLIES 4
Read only

Former Member
0 Likes
768

Hi

declare tha field as any date field in any table.

Eg :

parameter : t_date type bkpf-budat.

Read only

0 Likes
767

Hi Yogesh,

Thanks it solved my problem..,

any function module to convert date format from dd.mm.yyyy to yyyy-mm-dd ????

thanks in advance

Jack

Read only

0 Likes
767

hi use this ....

CONVERT_DATE_TO_EXTERNAL to change the date formats

https://www.sdn.sap.com/irj/scn/wiki?path=%3fpath=/display/snippets/function%252bmodule%252bfor%252b...

please refer the above wiki for changing the date format to any

Read only

Former Member
0 Likes
767

dd.mm.yyyy to yyyy-mm-dd

concatenate date6(4) '-' date3(2) '-' date(2) into date.

Try this way..

Just to remind you..Please Close your Questions Once Solved.

Total Questions: 53 (45 unresolved)

Edited by: Harini Krishna on Apr 4, 2009 12:32 PM