cancel
Showing results for 
Search instead for 
Did you mean: 

Baselina date of a debit Memo

Former Member
0 Kudos

Hi everyone!

I have the next issue. When I create a debit memo with reference a one invoice, the system take like baseline date the invoice date. I reviewed the copy rules but I don´t see any wrong. I reviewed too the conditions terms.

Any suggestions?

Warm regards from Peru and thank you for all

Accepted Solutions (0)

Answers (2)

Answers (2)

alex_zheng
Contributor
0 Kudos

Hi Juan,

As described in SAP Note 112385, the billing date in SD is transferred into
accounting as document (BLDAT) and posting date (BUDAT).
The baseline date ZFBDT to determine the terms of payment is made up of
the billing date plus maybe the value days. If a value date is set, then
the value date is used as the baseline date.

Include LV60BF00, Routine ACCOUNTING_HEAD_LINE:
...
    xaccit-zfbdt = vbrk-fkdat + vbrk-valtg.

    if vbrk-valdt ne 0.
      xaccit-zfbdt = vbrk-valdt.
    endif.
...

Please check if there's a value date(VBRK-VALDT) get filled in the original invoice.
Please also check if you've implemented any custom logic in customer exit:
EXIT_SAPLV60B_002.


Regards,
Alex

Former Member
0 Kudos

Hi,

Can you more clarify what your issue is ??

You can also check copy control routines of source & target documents.

Former Member
0 Kudos

Hi! Sure!

When I create a debit memo whit reference a invoice, this take the baseline date of the invoice and not the invoice date like the payments condition indicate.

I am not sure about the routine because I use this for other copy rules and I don´t have this issue.

Former Member
0 Kudos

Hi Juan,

In VOFA tcode, for the debit memo check the fields Reference number and Allocation number. Check the same for the credit memo and make the values in debit memo same as the credit memo.

Now check the date & It should work fine.