how to calculate the difference between two date type of
variables ?
Answers were Sorted based on User's Feedback
Answer / kapil
data : date1 type sy-datum ,
date2 type sy-datum ,
days type i .
date1 = sy-datum.
date2 = sy-datum - 7.
days = date1 - date2.
write : days. "Answer should be 7
Is This Answer Correct ? | 16 Yes | 9 No |
Answer / amit
You can use the function
module 'DAYS_BETWEEN_TWO_DATES' and pass the start date in
i_datum_bis and end date in i_datum_von then you get the
accurate result!!!!!!!!!!!!!!!!!!!!!!!!!
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sandeep
You can use the function
module 'FIMA_DAYS_AND_MONTHS_AND_YEARS' and pass the dates
to & from to get the job done....
Is This Answer Correct ? | 2 Yes | 2 No |
Answer / vijay
data: x type i value '10',
y type i value '6',
z type i .
z= x - y.
write:/ z.
Is This Answer Correct ? | 5 Yes | 10 No |
Among "Move" and "Move Corresponding", which is efficient one?
Why do we use Process On Value Request(POV) event instead of data element,search help in module pool.
Define batch input session?
What is direct input method?
how do you supress blank spaces in sap scripts?
6. wat is pf status interactine report?
Does the call transaction method allow multiple transactions to be processed by sap? : abap bdc
How do you use structures in the abap programs?
What Methods are using in Perform tuning
In Realtime, how you get flat file for BDC session method.. through email or any other source? Who will send you flat file..your team lead or project lead or project manager etc?
What is the purpose of buffering? How many types of buffering?
Explain the data types of internal tables?