2006 May 29 6:51 AM
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
2006 May 29 6:58 AM
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
2006 May 29 7:08 AM
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
2006 May 29 7:20 AM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |