How to get contract conditions ?

hi all ,
I am currently on a purchasing contract which layout is based on the pruchase order. 
for the form of purchase order , there is a table l_xtkomv in the interface , from which i could get all the conditions , so i could calculate the Subtotal , Surcharge, Discount .
but the problem is that this table in purchase contract form is not filled up , so how could i get Subtotal , Surcharge, Discount in a purchase contract ?
please guide me
thanks and regards
Kevin

solved

Similar Messages

  • How to get Contract Account Number in Service Ticket

    Hi Experts,
    How to get Contract account number in Service Ticket, we are working in ISU environment. when i create the service ticket the contract account number is there in Business agreement number field in service tiket.
    Can anyone tell me how to retrieve that field.
    Answer will be appreciated.
    Praveen

    check tables tfk_buag_ref and fkkvkp

  • How to get this condition right ?

    Hi Friends,
    Please tell me , How to get this condition right.
    Current Date = Posting date (RBKP.BUDAT) + 7 (i.e. notifications are sent 7 days after the Posting date).
    I need to get the blocked invoices which are overdue for 7 days, and send these blocked invoices. How to do the declaration and get it right ...
    thanks in advance ...
    Edited by: Matt on Jan 28, 2009 2:38 PM - subject amended by moderator

    Hi, SK SIDDIQUI
    Have a look at following code will solve out your problem,
    TABLES: RBKP.
    data: it_rbkp like STANDARD TABLE OF rbkp WITH HEADER LINE,
          wa_it_rbkp like rbkp,
          p7date like sy-datum,
          p14date like sy-datum,
          p21date like sy-datum.
    p7date = sy-datum - 7.
    p14date = sy-datum - 14.
    p21date = sy-datum - 21.
    SELECT * from rbkp
      into CORRESPONDING FIELDS OF TABLE it_rbkp
      where budat <= p7date. " for 14 just Replace p7date with p14date and for 24 just Replace p7date with p24date
    Please Reply if any Problem,
    Kind Regards,
    Faisal

  • How to get all Conditions in Advanced Search

    Hi All,
    I'm implementing the AdvancedSearch using Query bean.
    I have defined the Criteria row with one Item of Varchar2 Datatype.
    On Advance Search the poplist shows only two conditions (Lookup type=ICX_CONDITIONS) of "is" and "is not". How to get the complete list of conditions ("contains", "ends with", "starts with"....)
    Thanks,
    Satya

    What is the item type for which you get only the two conditions.
    If the item type is OAMessageChoiceBean or OAMessageLovInputBean the conditon poplist will contain only those two options. And if the datatype is Boolean the conditon poplist will again contain only those two options.

  • How to get Tax condition's of Purchase Order

    Dear Gurus
    How to get all the condition types  for purchase order listed in the screen where we navigate from
    Purchase Order->purchase order item->invoice->Taxes Push button
    And I' am not saying about header conditions which we get from KONP.
    I' am saying about tax conditions which will get only by entering taxcode in item Invoice tab of Purchase order item.
    Regards,
    Rajeswar

    Hi,
    Tax condtions shd be given by functional consultants.ABAPers cant decide the tax condtions.
    you can have these condtions in KONV table.
    In item level vbrp-posnr = konv-kposn.
                      ekpo-ebelp = konv-kposn
    at header level as said in the below thread
    Just see this and get back if any concerns
    Regards
    Edited by: Rasheed salman on Dec 2, 2008 6:20 AM
    Edited by: Rasheed salman on Dec 2, 2008 6:22 AM

  • How to get amount : Condition record

    Hi all ,
      I need to print amount for a particular condition type.
    I am getting condition value in KOMP-KZWI1 , but not amount .
    Please let me know how to get amount.
    Regards
    Taranam

    Hi all thanks for your replies.
    But I am not able to find amount which I am seeing in condition tab through all solutions mentioned by you all.
    In VA13, IN conditions tab ,
    I have Condition Type, Name ,Amount , Condition value and so on.
    I am getting Condition value in KOMP structure.
    Any table in which this amount gets stored?
    I have already checked KONV .

  • How to get latest condition cost at GR for a material

    Hi SDN's,
    At the time of GR creation in MIGO, I need to get the latest additive price for the material instead of Purchase Order creation date additive price.
    Example: PO creation on 01June2008
    PO number : 01234
    Addtive cost(condition record) : 2$
    GR is creating on today (23 July2008)
    PO number : 01234
    Addtive cost(condition record) : 3$
    So system should consider latest additive cost 3$(GR creating date) now it is taking the PO creation date additive cost 2$.
    How to achieve this???
    Thanks in advance..
    Regards,
    Rahul

    in that case u have to get the document amt of that accouting Document of PO invoice.
    how --->
    get the IR number from EKBE
    CALL FUNCTION 'FI_DOCUMENT_RECORD'
        EXPORTING
          I_AWTYP            =  'RMRP'
          I_AWREF            =  W_AWREF1----->IR of Po
          I_AWORG            =  W_GJAHR1----->year
        I_AWSYS            = ' '
        I_AWTYP_INCL       = ' '
        I_AWTYP_EXCL       = ' '
        I_BUKRS            = ' '
        TABLES
          T_DOCUMENTS        = T_DOC.--->here u get the accouting document number.
    Regards
    Prabhu

  • SharePoint caml query how to get if((condition && condition && (condition OR Condition)) items

    I uses U2U canl builder to get queries,
    How to write caml query for condition like,
    (UserName==ABC && date1>=GivenDate1 && (date2<=givendate2 || date2 == null) )
    one more
    (UserName==ABC && date1>=givenDate1 && (date2<=givenDate2 || date3 <= givenDate2) )
    SharePoint caml query if((condition && condition && (condition OR Condition))
    Thanks

    Hi,
    According to your post, my understanding is that you wanted to Caml query with nested AND and OR for multiple fields.
    The expression A AND B AND C looks like this:
    <And>
    A
    <And>
    B
    C
    </And>
    </And>
    Then the CAML query would look like as below.
    <Where>
    <And>
    <And>
    <Eq>
    <FieldRef Name='AssignedTo'/>
    <Value Type='User'>admin</Value>
    </Eq>
    <Geq>
    <FieldRef Name='StartDate' />
    <Value Type='DateTime'>2014-07-30T12:00:00Z</Value>
    </Geq>
    </And>
    <Or>
    <Leq>
    <FieldRef Name='DueDate' />
    <Value Type='DateTime'>2014-08-01T12:00:00Z</Value>
    </Leq>
    <IsNull>
    <FieldRef Name='DueDate' />
    </IsNull>
    </Or>
    </And>
    </Where>
    More reference:
    http://msdn.microsoft.com/en-us/library/ms196939.aspx
    http://sharepoint-experience.blogspot.com/2014/02/caml-query-with-nested-ands-and-ors-for.html
    http://aasai-sharepoint.blogspot.com/2013/02/caml-query-with-multiple-conditions.html
    Thanks & Regards,
    Jason Guo
    Jason Guo
    TechNet Community Support

  • How to get PO condition record

    How can i get PO Header Condition record.
    Regards
    Malik

    Hi,
    Try this way,
    parameters: p_ebeln like ekko-ebeln.
    select ebeln knumv
    from ekko
    into it_ekko
    where ebeln = p_ebeln.
    select *
    from konv
    into it_out
    for all entries in it_ekko
    where knumv = it_ekko-knumv.
    The internal table it_out will hold all the condition records corresponding to the PO.
    Regards,
    vik

  • How to get pricing conditions while creating Sales Order

    Hi Guys,
                When we create sales order using VA01, price is automatically determined using pricing condition configured.
    My requirement is, I need to know what would be the price of a particular item.Say i put one item A with quantity x,can I get which price conditions will be applied and what value will come for them.I need this because I need to validate this price with some other price put in a file .

    I would suggest to use the Exit because that will be less efforts and you can implment and debug it easily. Moreover, you can restrict it by any condition e.g. order type, order reason because all the internal tables are available at that point.
    Whereas, accessing the access sequence is cumbersome process. You need to go to all the combinations (tables) in the access sequcen and try to find out the suitable match .
    Regards,
    Naimesh Patel

  • How to get contract's measures with 0REFX_2 extractor ?

    Hello,
    I try to use standard extractor 0REFX_2.
    It's ok with property measure value (object type IG) but for contract (object type IS) it doesn't get anything.
    Do you know why ?
    Is there another extractor for contract's measure ?
    Thank you in advance for your help.
    Best regards
    Nicolas

    it's ok now

  • BAPI_SALESORDER_SIMULATE How to get the conditions on header level?

    Hi,
    is it possible to get the pricing conditions on header level (sales order) with the Bapi BAPI_SALESORDER_SIMULATE?
    We only found the information on item level?
    Thanks a lot.

    hope its possible,
    If don't specify any item no for condition type in bapi, then it will be consider as header condition.
    make sure condition should be header condition.
    hope it will work.
    Regards,
    Marreddy

  • How to get Contract division from FM BAPI_ISUFINDER_FINDOBJOFDATA

    Hello Friends,
    I have a requiremment where I need a remote enabled FM which should find out Division of the Contract to which it belongs.I m using BAPI_ISUFINDER_FINDOBJOFDATA & passing ISUSECTOR as an Object Type ,but not getting the result.
    Could anyone guide me in this.
    regards
    sagar

    Hi,
    Actually the requirment is To get the Contract Related Data at Non-SAP system.
    Hence I am lookin for any Remote enabled Function Module & i have with me BP , CA & Contract available from BAP_ISU_FINDER.
    But i want to make sure to which division the Contract which i got from ISU Finder belongs.
    I think the earlier post I have to try.
    Thanx & regards
    sagar

  • How to get condition type for invoice

    How to get the condition type for invoice.
    i want tables and corresponding fields

    Sunil,
    KONV ,T685T and the following are related tablesVBAK,VBRP,VBAP,VBFA.
    K.Kiran.

  • How to get xveda values in sales Order userexit MV45AFZZ

    Hi guys,
    Tables XVEDA and YVEDA has no entries in sales order userexit. Do you know how to get contract end dates of line items in sales order user exit

    Used function module SD_VEDA_SELECT to solve the issue

Maybe you are looking for

  • Connect As- won't let me enter Name and Password on Back to My Mac

    I'm trying to "get back to my mac". It's a Pro Mac and iCloud shows it as Online. Connecting from my MacBook Pro, over the internet. Both machines are fully updated Mavericks (10.9.4). When I "Connect as-" on the ProMac in the finder, the Connecting-

  • Weather is Wrong

    The weather icon that shows in the Notification Center is wrong, and I have no idea how to fix it. It shows a Sun icon, but it's actually raining here, plus the detailed hour-by-hour weather report shows that it's also raining. So, why is the sun ico

  • Call another form with a button click (Oracle 10g)

    I have two forms. (One called Main Form and 2nd Called Notification summary) I want to call Main Form from notification summary. I have a unique column which is both in Main form and notification summary. I want to pass that unique column from notifi

  • Short description is avaiable in  'FAGL_SEGM'

    Hi All, I have a table 'FAGL_SEGM' .It has only one field 'SEGMENT' but when i execute this table short description is also coming with in the entry.How it is coming. The short descriptions are maintained in table 'FAGL_SEGMT' .No where this table is

  • Set z-order of Frames

    Hi, I have an application that has a lot of open Frames, and one main control bar frame. (Looks like an old Macintosh app, with windows all over the place.) When I'm using this app in windows, and switching back and forth between other apps, the wind