cancel
Showing results for 
Search instead for 
Did you mean: 

Allocation of Business Partner to a profit center

Former Member
0 Kudos

Hi,

Is it possible to allocate a BP to one or more Profit centers when creating a BP Master in SAP;such that, on creation of a marketing document the Profit center is directly picked up instead of selecting it.

Please comment.

Regards,

Accepted Solutions (1)

Accepted Solutions (1)

former_member583013
Active Contributor
0 Kudos

Projects can be associated with a Business Partner in the Master data definition but not Profit Center.

Profit Center have associated distribution rules and are linked to G/L account or a transaction at the row level.

You could do this. Create a UDF in the BP Master to enter the profit Center information.

In the Sales Order Rows..in the Profit Center field create a Formatted Search to pull the Profit Center from the BP Master UDF

Example: Let us say your Profit Center User field on the BP Master is called U_PC

then your Formatted Search on the Marketing document would be

<B> <Font Color=BLUE> SELECT T0.U_PC FROM [dbo\].[OCRD\] T0 WHERE T0.CardCode = $\[$4.0.0]

</FONT></B>

Set it to Auto Refresh on Item Code ....check Display Saved Values

If you want 2 Profit Centers on the BP Master and the user would select it in the Marketing document then let us presume your UDF's are U_PC1 and U_PC2,

the FMS would be

<B> <Font Color=BLUE>

SELECT T0.U_PC1 FROM [dbo\].[OCRD\] T0 WHERE T0.CardCode = $\[$4.0.0]

UNION ALL

SELECT T0.U_PC2 FROM [dbo\].[OCRD\] T0 WHERE T0.CardCode = $\[$4.0.0]

</FONT></B>

Suda

Former Member
0 Kudos

Hi Suda,

Thanks for your reply!

I tried following you steps as instructed, U_PC1 works fine....however the second Profit center (U_PC2) in the marketing doc does not seem to pick up the values, instead if I select more than one items, the "Choose from list " appears multiple times prompting to select the U_PC2 values....

Can you revert on the possible causes for such a result?

Awaiting your reply!

Regards,

former_member583013
Active Contributor
0 Kudos

When you have 2 rows in your result, it will always popup the window for the user to select. This is only advisable to be used when the user manually needs to select the accounts.

If you use refresh regularly, the result of the FMS should be only one row for it to work correctly

Former Member
0 Kudos

Hi Suda,

Yes got it....

It works correctly now that I specified sperate queries for seperate columns.

Thanks a ton.

Regards

Answers (2)

Answers (2)

former_member186095
Active Contributor
0 Kudos

Hi,

Profit center deals with expense and revenue accounts. Both are in the P&L. Meanwhile the BP will not have the account but it is balance sheet account i.e. liabilities and asset.

The solution is creating UDF in the BP master data or using business partner properties, so that it can be used in the aging selection criteria when you want to generate BP aging report.

The BP properties can be used directly in the marketing document by using query FMS.

Rgds,

Former Member
0 Kudos

Hi Vishal,

The answer is no because BP can only link to GL account by control account. Unless you GL accounts has one to one relationship with profit center (seems imposible), you only choice might be utilizing property fields to map BP with profit center. The link will be very weak in this way.

You can also use UDF to build the link too.

Thanks,

Gordon