cancel
Showing results for 
Search instead for 
Did you mean: 

VC Date format problem

Former Member
0 Kudos

Hi all,

I am using an RFC from a VC application to create a service order in R3.

I have a field which passes a date value to the R/3. This value is captured in VC screen using a date picker.

I tried entering 02/03/2008 as the value.

But when this value reaches R/3 , it is stored as " 20.08.0302 "

I tried with different date formats , but the same value appears in R/3.

Can anyone suggest a solution for this?

In which format I should pass date values to SAP system?

Thanks alot

Shobin

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Shobin,

Take a look via SE37 as Marcel described but also try this:

- In the line between your Date field and your RFC write formula to move your date field;

RIGHT(@yourdatefield,4)&LEFT(@yourdatefield,2). What you are changing the order of your field from by taking the first four, 2008, moving them to the right and taking your last two, 02, and moving them to the left. Resalt would be 02032008.

Kind Regards,

Gilson

Former Member
0 Kudos

Hi,

you can use external breakpoints for debugging as I have described in my [weblog|https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5221] [original link is broken] [original link is broken] [original link is broken];. You should pass the value as YYYYMMDD (the default format for dates in the backend), but it depends on your service resp. the backend table where the data are stored.

Best Regards,

Marcel