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

Date formating in the Report

Former Member
0 Likes
591

Hi all,

I have print one field in the report.

The field actually concatenation on string and Date

EX: Selected on 30.05.2007

I have declared this field has char (30).

This Date will be taking how ever the stored in the Data Base.

Can anybody give me suggestions?

Date should be How ever user has setting in his profile.

Thank you.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
571

Hi,

data: V_CHAR type char10.

WRITE SY_DATUM TO V_CHAR.

The variable v_char will have the date as per user setting.

Hi all,

I have print one field in the report.

The field actually concatenation on string and Date

EX: Selected on 30.05.2007

I have declared this field has char (30).

This Date will be taking how ever the stored in the Data Base.

Can anybody give me suggestions?

Date should be How ever user has setting in his profile.

Thank you.

4 REPLIES 4
Read only

Former Member
0 Likes
572

Hi,

data: V_CHAR type char10.

WRITE SY_DATUM TO V_CHAR.

The variable v_char will have the date as per user setting.

Read only

0 Likes
571

thank you Siva Prakash .

I have rewaded point to you

Read only

Former Member
0 Likes
570

before concatenation on string and Date

convert the date formate in to system formate then u concatenate.....

check for some function M.....

Regards

Anbu

Read only

Former Member
0 Likes
570

u can display with the help of concatenate keyword..