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: 

Condition type tables

Former Member
0 Kudos

Hi,

I need to know where are the caluculated values for freight FRC1 is getting stored in the purchase order conditions.

2 REPLIES 2

former_member194669
Active Contributor
0 Kudos

Hi,

Check this

This code i find one of the sites


select * from ekko.
       select * from konv where knumv = ekko-knumv
           "Get all the condition records for the purchase order
       endselect.
endselect.

* Get the info record conditions record
* First declare the record structure for the key
data: begin of int_konp,
             txt1(5),
             lifnr(5),
             matnr(18),
             txt2(4),
             txt3(1),
        end of int_konp.

clear: konh, konp, int_konp.

* data for the record key konh-vakey
int_konp-txt1    = '00000'.
int_konp-lifnr    = ekko-lifnr+5(5).
int_konp-matnr = ekpo-matnr(18).
int_konp-txt2    = 'ALL'.
int_konp-werks = ekpo-werks.
int_konp-txt3    = '0'.

select * from konh where      kschl = 'PB00'            "Conditions (Header)
                                     and datab => p_datum.       "valid from date

      if konh-vakey = int_konp.                                  "Conditions (Item)
             select single * from konp where knumh = konh-knumh.
             continue.
      endif.

endselect. 

aRs

Former Member
0 Kudos

KONV - Conditions (Transaction Data)

KONV-KNUMV = EKKO-KNUMV

KONV-KPOSN = EKPO-EBELP

KONV-KSCHL = 'FRC1'