Report on condition type & vendor

I guyes can you help me please
In imports purchase order -Conditions we are using customs vendor
I need a report based on the condition type and vendor
Say for Eg : I am using condition type jcdb & vendor assingment -200
so is there any report based on the condition type & vendor used
Rgds

Table = KOMV Field = KSCHL, fields can be different though depending on the condition type.
Table KONV can also be used for conditions
Edited by: Afshad Irani on Apr 20, 2010 10:27 AM

Similar Messages

  • Standard Report with Condition Type and Condition Records

    Hello to all,
    Is there any standard report available in which Condition Type and Condition values are displayed in either column or row format? The selection criteria can be either Quotation, Contract, Sales Order, Delivery, Invoice or Billing. Thanks anyways...

    Hi Huzefa,
      Pls check the relevant table where the condition records are stored. then do a query with  that condition table and KONP. say for eg: condn type ZINV,ZMRP gets stored in condition table A821, then combine A821 and KONP, u can input condition type and get the values........................
    go to vk13, display and click on layout, u will able to see the condition table.
    Rgds,
    Anitha J

  • Report of condition types per line item in sales order

    Hi all,
    Is there any report that can tell me all the price conditions that are allocated to a sales order line item? I am talking about the actual conditions relevant for a line item, not only conditions that have a condition record setup.
    So I would like to key in sales order number, the line item and get a report of all conditions that are allocated to that line item in the specific sales order.
    If there is no such standard report, does anyone know what tables to link?
    Thanks in advance,
    Lars

    Hi Lars,
    In my current customer they had the same requirement and after almost 1 month of analysis we decided to build a custom report to execute this.
    And as an enhancement we compare prices from the sales orders and the sap price records in order to check the differences.
    First we need to find all the open lines (status and reason for rejection (ABGRU)), than loop KONV and select the  KSCHL (condition types) you want, material text descriptions, etc.....of course a lot more in terms of coding.....;-)
    This was the form I used :
    FORM FIND_SO_PRICES.
      LOOP AT IT_ITEM_REPORT.
        REFRESH IT_PRICING.
        SELECT KSCHL KBETR WAERS KPEIN KMEIN KUMZA KUMNE
          INTO IT_PRICING
          FROM KONV
         WHERE KNUMV = IT_ITEM_REPORT-KNUMV
           AND KPOSN = IT_ITEM_REPORT-POSNR
           AND KINAK <> 'M'
           AND KINAK <> 'X'.
          APPEND IT_PRICING.
        ENDSELECT.
        READ TABLE IT_PRICING WITH KEY KSCHL = 'XXXX'. -> My price condition
        IF SY-SUBRC = 0.
          IT_ITEM_REPORT-ZSP1 = IT_PRICING-KBETR.
          MODIFY IT_ITEM_REPORT.
        ENDIF.
        READ TABLE IT_PRICING WITH KEY KSCHL = 'XXXX'. -> My discount condition
        IF SY-SUBRC = 0.
          IT_ITEM_REPORT-ZSD1 = IT_PRICING-KBETR / -10.
          MODIFY IT_ITEM_REPORT.
        ENDIF.
       IT_ITEM_REPORT-LIQ = IT_ITEM_REPORT-ZSP1 - ( IT_ITEM_REPORT-ZSP1 * (
                                              IT_ITEM_REPORT-ZSD1 / 100 ) ).
        MODIFY IT_ITEM_REPORT.
      ENDLOOP.
    ENDFORM.                    " FIND_SO_PRICES
    Please tell me if this helped you,
    Regards,
    Alcides Fialho

  • Report for condition type

    Hi,
    I have maintained a pricing condition record for one condition with combination key of plant and incoterms.
    My requirement is to take report for that condition type with respect to plant .
    Kindly need your input
    -Prabu

    Hi,
    You may be knowing the condition table of the Plant / Inco terms key combination.
    Goto SE16 with the condition table preceded with A and and in the selection screen give your plant and the condition type and get the total entries maintained with the field KNUMH for all of the entries.
    Pass on the KNUMH to KONV table to get the condition values with various validities.
    Regards,
    RitiG

  • Report with "Condition Type" (KSCHL)

    Hi Friends!
    Does anybody know any standard report that show CONDITION TYPE ?
    Thank you in advace!

    There are no standard reports available which shows the transaction data of CONDITION TYPES. However  you can refer to the condition type related details in database tables KONV at transaction level.
    In this case, either VBAK-KNUMV or VBRK-KNUMV should be equal to KONV-KNUMV
    Hope this helps you.
    If you need further info, pls let us know

  • Condition type based on P.O document type

    Hi SAP Gurus,
    We are maintaining a condition type vendor discount in the pricing procedure. It is based on access sequence Vendor condition group, Vendor subrange and vendor.
    Can we control this condition based on P.O document type. The requirement is not to have this condition for Return P.O's.
    Any inputs are appreciated.
    Thanks
    Edited by: sspven on Oct 27, 2010 7:45 PM

    Hi
    In Spro follow the following steps:
    1.MM>>condition>>Define price determination>>maintain condition table.
    2.Add BSART feild in the condition catlouge
    3.Include the same in the acces sequence table
    4.Maintain the condition record.
    Hope this helps you.
    Regards
    MK
    Edited by: Manish Kumar on Oct 28, 2010 8:34 AM

  • Standard Report for Materials Cost Component Structure - PO Condition Type

    Dear experts,
    We are using below cost component structure (CCS) for materials:
    - Direct materials
    - import duty
    - import handling
    In which, all those above CCS are achieved through below condition type in Purchasing Info Record. When doing the standard cost estimate through costing run, we have successfully grouped all those condition types into their respective CCS. The problem is, while executing the standard report of "result of costing run" (S_ALR_87099930), the sytem groups all those three CCS into CCS "Direct materials" only.
    I have tried different standard layouts, but still got no way to show all those CCS separately in the standard report.
    Please kindly suggest what approach should i take
    Thank you very much
    BR, Erwin
    @edit
    Solved.
    Edited by: Erwin Hartono on Nov 16, 2011 9:16 AM

    Hi
    Check cost elements assigned to structure.  For this go to transaction code OKTZ and select your CCS and double click on Assignment Cost Component-Cost element interval.
    Srinivas

  • Can we take standard report for all sales orders based on the condition typ

    Hi all,
    Based on the condition type, we need to take a report for sales orders on the particular date.
    Thanks and Regards.....VM

    Hello again.
    Searching for a solution, I found a Logical Database for sales orders, that have all the information that you need.
    Using like reference the post of Bhagavatula, in the same transaction SQVI you can use, instead of the suggested join, you can select a logical database called VAV in Data source.
    This logical database links the tables, VBAK, VBAP, VBUK and KONV that is the central point of the question.
    You can list the information of logical database using the transaction SLDB.
    In 'Logical Database' inform VAV.
    Press F8 to list all the fields.
    More information about logical database in:
    Link: [SAP Logical Database|http://help.sap.com/saphelp_46C/helpdata/EN/9f/db9b5e35c111d1829f0000e829fbfe/content.htm]

  • Updating Vendor of Freight Condition Type in STO

    Hi,
    I am facing a problem in updating KOMP-LIFNR in my program. I have below scenario
    I have created a Z program which gets all materials from mchb and creates a STO order thru a BAPI_PO_CREATE1. Anyway STO is getting created but i am facing a program to update a freight condition type. I need to LIFNR(Vendor) in freight condition type.
    Pls help is how to update is there any bapi to update.
    Regards,
    Sreekanth

    Hi
    We dont have any fields in the BAPI_PO_CREATE1 to directly input the Freight vendor , But by maintaining the freight vendor in the purchase infor record will update the Conditons in the PO at the time of creation of the PO.
    You can also acheuive this by using the user exit enhancement SAPL2012
    Exit : EXIT_SAPL2012_001.Customer Exit for Creating a Purchase Order in Enjoy Using BAPI_PO_CREATÊ1
    You can chek out using SMOD.Please take the help of ABPERs to develop the code as per the requirement.
    Award points if useful
    Thanks & Regards
    Kishore.

  • How to assign vendor to condition type by default?

    Hi,
    Here one import PO is having more than 100 line items and for each condition type different, different vendor has to be assigned.
    Is there any way to make it default before only like all custom duty conditions belong to one custom clearing vendor only all the time, so that each and every time they need not assign it manually..
    How to do it pls let me know..
    regards,
    Sanjana

    Hi,
       You can create an access sequence for the customs conditions, for example with condition table 780 for plant. In this case you can maintain the import duty condditions based on plant. You can assign the access sequence to the import duty conditions. Now you can maintain the condition records for the import duty conditions in MEK1 based on the access sequence. Since the duty rates may change, you may maintain the condition records without duty rates. Now go to details of the conditions, where you will find "Vendor" field. There you can assign the customs vendor, so that it will be defaulted all the time based on the access sequence (In my example, based on plant).
    Regards
    AKPT

  • Display of vendor name in po condition type

    Dear SAP Gurus,
    I have got a requirement to add vendor name in po item detail condtions tab in that if we select particular condition type and see the details there we can see vendor and now it is required to add vendor name display based on the given vendor.
    i got some idea of doing sonmething in the screen of that program.
    programname SAPLV69A
    Screen number 640.
    We need to display vendor name against vendor.Can you tell me the badi or any exit for coding the requirement.
    Regards,
    Anand.

    Hi
    Add you own tab in the PO for this item with this info. Use the badi's ME_GUI_PO_CUST and ME_PROCESS_PO_CUST.
    If you need more info, let us know.
    Regards
    Eduardo

  • Default vendor not appearing in freight condition type ZVCF

    Hi All,
    After going all the forums I am posting this issue.I have mainatined condition record for the frieght vendor with key combition of vendor, customer(Zfield) and material.
    I have mainatined partner functions for VN with GS partner type.
    When I create PO ZVCF condition type is triggering in the PO but in the condition type details the main vendor is picking. Could you please let me know is this standard behaviur or need to do any cutmisation for this.
    Attched screen shots for your refernce
    Insted of picking GS 831092 it is picking main vendor 830970
    Regards,
    Chand Basha Shaik

    Go to M/06 and input your Frieght condition type and enter the Condition type and in Control Data 2 tab enter Value A against Exclusion and Save.
    Now Maintain conditon record for the required combination in MEK1 or MEK31 and enter the required details along with the rate and choose the line item and click on Magnifier and here you need to enter the Frieght vendor and save.
    Now create Purchase order and see if the required Condition type is automated into the Purchase order. If automated, select the Freight condition and click on Magnifier and here you will be able to see the Frieght Vendor.
    Ensure Manual check is removed from the Pricing Procedure against the Frieght Conditon type. Else the condition record doesnot work.
    Alternately, Maintain the Conditon record with combination Vendor 830970 Customer 137955 Material 902 and choose the line item in MEK1 or MEK2 and input the Frieght Vendor ie.831092 and Save.
    Now Create Purchase order and check once again.

  • Condition types for Import Vendor not getting in Contract

    Hi,
    In Contract Document if Import Vendor selected, for the Line items we are not getting the Import Pricing Condition types. Instead, we are getting the Local pricing condition types even if Import vendor schema maintained in Vendor Master.
    We have found that Gross Price PB00 and PBXX are maintained for both Local and Import Pricing Procedures. In PB00 condition type configuration, Local Pricing Procedure is assigned in the field Pricing Procedure (V_T685A-KALSM).
    But while creating the Purchase Order we are not facing this problem & we are getting respective Pricing Condition types based on the Vendor schema assigned in Vendor Master. And already till now more than 4 Lakhs of Purchase Order created.
    Please let me know the solution to get Import Pricing Condition types in Contract for the line items.
    Thanks & regards,
    Datta

    In Contract only basic price will be shown, other conditions and pricing procedure do not appear, becayse eventually the contract has to be released, which is nothing but creating a PO.
    SAP Standard practice, Outline agreements (Contract and Scheduling areement) will not have pricing procedures, they will have only basic price and discounts conditons.
    Hope this anwers your question.
    Thanks & regards
    Hameed Parvez.

  • Condition type not appearing in Pricing report

    Hello all,
    There are 2 condition types
    ZR00 - condclass B, calc type C, item condition, with acc seq Sales Area/Material and
    ZQA2 - condclass A, calc type C, item condition, with acc seq Sales Area/Customer/Material.
    I have maintained condition records for both & created a pricing report with field name Condition type for which position is Page Header of Pricing report.
    However when i fire this report condtype ZR00 appears but ZQA2 does not. Please advise.
    Thanks
    -Dinesh

    Hi Dinesh
    In the condition table , maintain the key combination of sales area/Customer grp /customer/material and then generate the report. Then you may  get the output  . But make sure you have maintained the customer group in CMR also.
    But it is better to reduce the key combination you have maintained , because there are many feilds which are involved, may be that could be the reason you were not getting output.
    Regards
    Srinath

  • Condition type wise report

    can we have condition type wise report of all billing documents executed
    thanks
    srinivasan

    See u r prices are in KONV & Billing Tables are VBRK & VBRP
    VBRK is Header Table
    VBRP is Detail table
    Now enter billing document number in VBELN field of VBRK & extract KNUMV i.e Document Condition.
    Also enter billing document number in VBELN field and material number in field of MATNR & extract Item Number POSNR,
    So now u are having Document condition & item number
    Put this two things in KNUMV & KPOSN fields of KONV & u will get all values in KWERT according to Condition Type.
    I hope this will help u.
    Regards
    SWAPNIL

Maybe you are looking for

  • Accounting indicator not able to change after service order is released

    Hi, The accounting indicator cannot be changed anymore after a service order is released. Does anyone know how to change this setting so that accounting indicator can be changed even after a service order is released? Thanks. Edited by: SAP INFOUSER

  • Site Not Working On Firefox?

    Hello. This might be more of an issue with Tumblr itself, as opposed to Firefox, but I figured it would be worth posting here as well, since this is an issue that seems to be happening only on Firefox. I have contacted Tumblr regarding this issue, so

  • Selection few pages of spool output

    Hi, I am sending spool request related output to a file using the function module RSPO_RETURN_ABAP_SPOOLJOB. is there any function module to select only some portion of this buffer/output? for example: the total output contains 5000 pages. but I want

  • "Erase Free Space" work-around for non-apple ssd

    for those of you attempting to "Erase Free Space" per knowledge base article: "OS X Lion v10.7.3: User account passwords appear in log files for Legacy FileVault, and/or network home directories" quote: "6. Open Disk Utility. 7. Select your OS X Lion

  • Gaussian blur vs smart sharpen

    As far as I know, gaussian blur is a spatial convolution filter and smart sharpen is a deconvolution filter. So I think that they should be opposite of each other when smart sharpen is at the gaussian blur mode. But we can not remove gaussian blur (a