‎2011 Dec 23 1:48 PM
when we run the funtion module named 'PRELIMINARY_POSTING_FB01' we got messege called profit center is expired and when we debug we found that the date format is going wrong '20.11.1224' instead of '24.12.2011'
Please suggest us.. <removed by moderator>
Edited by: Thomas Zloch on Dec 23, 2011 8:38 PM
‎2011 Dec 23 1:54 PM
everything we do is very important, isn't it?
convert your date with code, considering user's settings... or change your user settings to match the date format that you are receiving. If your transaction requires a specific format, use abap code to convert you incoming date value to the correct format.
This is a very basic question, really..... Search the forum for posts about user date and currency settings!
‎2011 Dec 23 2:59 PM
Before moving the date to functional module convert it.
declare another variable.
DATA: WF_DATE(10) TYPE C.
WRITE <YOUR_DATE> TO WF_DATE DD/MM/YYYY.and pass WF_DATE to your Functional Module.
try this,,..