cancel
Showing results for 
Search instead for 
Did you mean: 

Transaction Key infoobject

Former Member
0 Kudos

Hi,

could any one tell me where i can find the Transaction Key infoobject "0PROCESSKEY" in 0ic_c03 cube?

i see the filed BWVORG in the 2lis_03_BX/BF/UM extraction structure, but i don't know where i can find corresponding infoobject in BW - in update rules or transfer rules?

please advice,

Ping

Accepted Solutions (0)

Answers (1)

Answers (1)

edwin_harpino
Active Contributor
0 Kudos

hi Ping,

you won't find 0PROCESSKEY in infocube 0ic_c03,

it has been translated to column, try to check the routine in update rules to infocube, you will find

code like attached, you can locate bvwvorg map to 0processkey in transfer rules, go to 'change transfer rules', tab 'tranfer rules', in right side 'assign infoobj-field', click 'position/other entry' button, choose field name and type bwvorg.

hope this helps.

IF ( COMM_STRUCTURE-PROCESSKEY = '100' "Other Issues

OR COMM_STRUCTURE-PROCESSKEY = '101' "Returns / Vendor

OR COMM_STRUCTURE-PROCESSKEY = '104' "Material Transfer

OR COMM_STRUCTURE-PROCESSKEY = '105' "Stock Adjustment InvD -

OR COMM_STRUCTURE-PROCESSKEY = '106' "Stock Adjustment Other -

OR COMM_STRUCTURE-PROCESSKEY = '110' ) "Issues from Stock Transfers

AND COMM_STRUCTURE-BWAPPLNM EQ 'MM'

  • Valuated Stock is considered

AND ( COMM_STRUCTURE-STOCKCAT IS INITIAL OR

COMM_STRUCTURE-STOCKCAT = 'E' )

  • Only movements which are relevant for stock control

AND COMM_STRUCTURE-STOCKRELEV = '1'

AND COMM_STRUCTURE-CPQUABU <> 0.

  • result value of the routine

RESULT = COMM_STRUCTURE-infoobjectname.

  • if the returncode is zero, the result will be updated

RETURNCODE = 0.

ELSE.

  • if the returncode is not equal zero, the result will not be updated

RETURNCODE = 4.

ENDIF.

Former Member
0 Kudos

Hi,

0PROCESSKEY is used in BF and UM update rules.But not in BX.

With rgds,

Anil Kumar sharma .P

Former Member
0 Kudos

Thanks for everyone' inputs. i have assigned ponits.