Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

VBRP-VRKME change value

Former Member
0 Kudos

Hi,

In the table VBRP, I have this value

MANDT VBELN POSNR UEPOS FKIMG VRKME UMVKZ UMVKN MEINS

110 0055000117 000090 000000 3,000 STD 1 1 STD

In this transaction VBRP-VRKME = STD

but in the transaction VF03 i have that :

item description Qty UQ net-value

90 description 3,0 HRE 300,00

In this transaction VBRP-VRKME = HRE

How can i do for have HRE in the table VBRP and not STD? where he change the value.

Thanks for your reply

1 ACCEPTED SOLUTION

Former Member
0 Kudos

This is because SAP stores some values in internal format...the most popular example will be the partner functions..

SP = sold to party is the popular name--but internally it is AG

SH = ship to party --> internal value = WE..

tis exactly the same phenomenon which causes the value to be displayed as HRE and STD..

your question is not very clear.. why do you want to change this value ?

to read the value you can use.. the conversion function modules, CONVERSION_EXIT_CUNIT_INPUT and CONVERSION_EXIT_CUNIT_OUTPUT.

3 REPLIES 3

Former Member
0 Kudos

This is because SAP stores some values in internal format...the most popular example will be the partner functions..

SP = sold to party is the popular name--but internally it is AG

SH = ship to party --> internal value = WE..

tis exactly the same phenomenon which causes the value to be displayed as HRE and STD..

your question is not very clear.. why do you want to change this value ?

to read the value you can use.. the conversion function modules, CONVERSION_EXIT_CUNIT_INPUT and CONVERSION_EXIT_CUNIT_OUTPUT.

Former Member
0 Kudos

Thanks for your reply.

I need to read VBRP-VRKME = HRE but in the table VBRP-VRKME = STD.

Former Member
0 Kudos

The module function work. thanks for your help