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: 

How to change the Net value in Conditions tab in VA03

Bharath84
Participant
0 Kudos

Hi All,

In VA03, in conditions tab there is a Net value filed. I have defined Condition pricing and it there is a ZCON pricing the same Condition value should be populated in Net value in conditions tab. From where the Net value is getting populated? Please help me if anyone having the idea.

Thanks,

Haritha

6 REPLIES 6

Former Member
0 Kudos

Dear Haritha,

Please assign ZCON condition type in appropriate pricing procedure same condition type will populate

V/08 Tcode for pricing procedure

0 Kudos

Hi,

The condition type is assigned in pricing procedure. But in one of my call customer function, if there is a ZCON price, the net value should be updated with the ZCON price.

So from which structure the Net value is getting populated. I checked in program SAPMV45A->include mv45afzz.             " User-forms

I didnot find any field like komp-netwr.

Thanks,

Haritha

0 Kudos

Hi Haritha,

Its little confusing what you are saying. Where is you customer function code is wrtiten?

0 Kudos

Also, KOMP is not a table. NETWR field is available in table VBAK. Also, VBAK is available in user exit MV45AFZZ.

Hope it helps.

0 Kudos

Hi ,

As it is a custom condition type there should be SD Routine has implemented for this.

Please check the routine with that routine number by taking help from Functional consultant in VOFM tcode.

Regards

Mani

maciej_domagaa
Contributor
0 Kudos

The "net" field contains the result of pricing calculation, it's a sum of all non-statistical pricing conditions.

If you want to change its value you should definitely customize your pricing procedure accordingly instead of just trying to force such change in some user-exit (this value is distributed into several fields in the system, not just into this one single screen field). You should set up yuor pricing procedure (V/08) in such way that it gives you the value you need as a result of pricing. If you need some more sophisticated calculations in your pricing you can use your own formulas which you can assign in the pricing procedure.

To have an overview of the standard code that performs pricing (and thus calculates NETWR) see include LV61AA55 form XKOMV_BEWERTEN. See also note 900089 for more info.

regards