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

questions

Former Member
0 Likes
586

hai experts,

1, can any one tell how to debugg bdc programs?

2,if the date format in flat file is dd/mm/yyyy how to convert it into mm/dd/yyyy when we process ?

thanking u

gopan

hai experts,

1, can any one tell how to debugg bdc programs?

2,if the date format in flat file is dd/mm/yyyy how to convert it into mm/dd/yyyy when we process ?

thanking u

gopan

3 REPLIES 3
Read only

Former Member
0 Likes
561

Hi,

2. Use the functions to convert the dates to internal and external formats accordingly.

CONVERT_DATE_TO_EXTERNAL

CONVERT_DATE_TO_INTERNAL

regards,

Ravi

Note : Please mark the helpful answers

Read only

Former Member
0 Likes
561

1.

/hs This switches into debugging mode and activates the debugging of system functions.

http://www.sap-img.com/abap/learning-bdc-programming.htm

2.

data :

data1(10) type c,

date2(10) type c.

date1 = '23/10/2005'.

concatenate date13(3) date10(3) date1+6(4) into date2.

write date2.

Thanks,

Susmitha

Dont forget to reward points for useful answers

Read only

Former Member
0 Likes
561

HI

GOOD

DEBUG THE BDC PGORAM->

THERE ARE TWO METHODS USE IN BDC

CALL TRANSACTION

BDC SESSION

CALL TRANSACTION - YOU CAN CATTH THE ERROR HERE USING THE STRUCTURE BDCMSGCOLL.

BDC SESSION - YOU CAN CAT THE THE ERROR HER THROUGH SM35

CONVERT DATE FORMAT->

CONVERT_DATE_TO_EXTERNAL Converts date from system storage format to users specified display format

THANKS

MRUTYUN