523
- Heading for open item list of line items -
&ULINE(71)&
<K>Invoice No,,Reference.,,Inv.Date,, Due date,,,,
Balance</>
,,,,,,
&ULINE(71)&
PERFORM GET_DATE IN PROGRAM ZREPORT
USING &BSID-BELNR&
CHANGING &S_DATE&
ENDPERFORM.
530
- Line items Customer open items -
&BSID-BELNR&,,&RF140-BELEGNUM&,,&BSID-BLDAT&,,&S_DATE&,,
&RF140-WRSHB&
-
Created a new report with the below code..
REPORT ZREPORT.
&----
*& Form get_date1
&----
text
----
-->S_ITAB text
-->S_ITAB1 text
----
FORM get_date using s_itab
changing s_itab1.
*FORM get_date1tables int_cond structure itcsy
*outt_cond structure itcsy.
data : s_itab11(10) type c value '01/01/2006'.
s_itab11 eq sy-datum.
s_itab1 = s_itab11.
ENDFORM.
If I am printin out the columns under s_date is blank..instead I want to default it as '01/01/2006'.
is it some thing which I need to take care..?