on 2024 Jan 08 5:30 AM
Hello SAP community,
I'd request to understand how the below mentioned final invoicing step doesn't record the trading partner and how is it possible to tag the TP moving forward.
Example:-
When we're booking an intercompany sales invoice (DR-customer invoice), the journal entry posted is as follows:-
Trade receivables a/c....Dr.
To Advance rentals A/C
In the example, let's assume that the entity making the sales is 1000 and the TP that is tagged to the customer master is 1310.
A follow up entry for final invoicing from the 3rd party application generates the following entry in SAP (DG: Credit memo):-
Advance rentals A/C...Dr.
To revenue a/c
Here, the trading partner is not tagged along as in the first step where TP was derived from the customer master. Can I please understand how to tag the final invoicing step to a trading partner as well?
Thanks & Regards,
Rishav.
Request clarification before answering.
It appears that your concern is related to the absence of a trading partner (TP) tag in the final invoicing step when generating a credit memo in SAP. To ensure that the trading partner information is carried forward in subsequent transactions, especially during the final invoicing step, you may need to consider a few options:
Configuration in SAP:
Customization/Enhancement:
Intercompany Clearing Account Setup:
Check for Standard SAP Notes/Updates:
Consult SAP Support or Consultants:
Here's a general example of how trading partner information might be passed in SAP using ABAP code (please note this is a simplified example and might need modification based on your specific SAP version and customization
DATA: lv_trading_partner TYPE trading_partner. * Fetch trading partner information based on your business logic. lv_trading_partner = ... * Update the trading partner in the credit memo entry. UPDATE accounting_document SET trading_partner = lv_trading_partner WHERE document_number = 'your_credit_memo_document_number'.
Please work with your SAP consultant or ABAP developer to implement any customizations based on your specific requirements and SAP version.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
60 | |
8 | |
8 | |
5 | |
5 | |
4 | |
3 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.