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: 

Getting header data (condition values) for shipment

Former Member
0 Kudos

For the shipment VI03, the user wants the header Condition values(KWERT) corresponding to condition values(KSCHL).

Some of the condition type having values in item level but these condition types are not maintained in header level, so they want for these condition types values should be Zero.

As I am taking condition values for PRICING function module, it will display at sub-item level values depending on condition values.

Please let me know is there any functiona module or table exist where header data is directly mainatined(Condition values & Condition type).

Thanks & Best Regards,

Mahesh

3 REPLIES 3

Former Member
0 Kudos

KOMK,KOMV,KOMP

KONV Conditions for Transaction Data

KONP Conditions for Items

KOND Conditions (Data)

KONH Conditions (Header)

KONM Conditions

T684 Condition Exclusion Groups

T684G Condition Exclusion Groups: Condition Types

T684S Condition Exclusion: Procedure Assignment

T689 Download Profile for the Conditions

T689K Reference: Download Profile - Pricing Procedures

Axxx- condition record tabel

eg: A304- is table for condition record for material with release status

A305, a306,a074

A000 Condition Table for Pricing

valter_oliveira
Active Contributor
0 Kudos

First find the related salesorder using:

VBFA

VBAK-VBELN = VBFA-VBELV

LIKP-VBELN = VBFA-VBELN

VBFA-VBTYP_N = 'J'.

or

LIPS

VBAK-VBELN = LIPS-VGBEL

After that, with the order, get condition number in VBAK and then search KONV.

VBAK-KNUMV -> KONV-KNUMV.

Regards.

Valter Oliveira.

Former Member
0 Kudos

Hi,

It's possible throught field KONV-KINAK(Inactive condition), this field will be set to value L, this will make that particular condition(ZZ02) exclusion from header or inactive at header level. So we need to skip those condition which are having value KONV-KINAK = 'L'.

Thanks,

Mahesh