


















User Exit for Release Procedure (PR)
By Willem Hoek http://www.sap123.com/a/74/
Sometimes either the logic to be used is to complicated to use normal strategies or the field to be used in strategy is not available in Communication Structre (see transaction se12 - table CEBAN). In that case user exit can be used.
Example, lets say we want the following strategy:
For all PR's against a cost centre (account assignment K), base strategy on Cost Centre number and Document Type.
For all PR's not against a cost centre, base stretegy on Plant (in PR) and Document Type.
To set up:
When you create / change the PR, the characteristic will get value of ceban-usrc1 from user exit.
This is sample code of user exit
**&---------------------------------------------------------------------
**
**& Include ZXM06U13
**&---------------------------------------------------------------------
case i_ceban-knttp.
when 'K'.
e_ceban-usrc1 = i_ceban-kostl.
when others.
e_ceban-usrc1 = i_ceban-werks.
endcase.
e_ceban-bsart = i_ceban-bsart.
Activate enhancement will activate the user exit.
Notes based on SAP ECC 5.0
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。