Table Name for Rebates Condition Records in Rebate Agreements

Hello All,
I want to know the table name which stores the condition records for Rebate Condition Types?
fast responses are appreciated.
Regards,
Rags.

Hi,
Try KONA table.
KONM KONW
Regards,
Chandra

Similar Messages

  • Table name for asset deletion record

    Hi,
    Please tell me the table name for asset deletion record.
    Thanks...

    Hi,
    Find Asset deletion tables below.
    CDHDR     Table for find the list of Retired / deleted assets (use SE16 for the same and put T. Code ABAVN / AS06)         
    CDPOS
    Regards,
    JA
    Edited by: javeed ahmed on Jan 14, 2010 12:10 PM

  • Table name for storing condition value determined for Transactions

    Hi,
    For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    We were not able to find this table name.
    Any pointers?
    regards,
    Jaya

    >
    Jaya Nigam wrote:
    > Hi,
    > For a routine that we need to write for pricing procedure, we need to pick up the value of the condition record that gets determined in any order.
    >
    > We were not able to find this table name.
    > Any pointers?
    > regards,
    > Jaya
    Hi Jaya,
    It will be really helpful if you tell the business requirement.
    However you can use the following code snippet to loop the conditions.Hope this helps.
    IPricingItemUserExit prItem
    used in method calling as an parameter
    java.util.Vector conditions =prItem.getConditionsWithoutInvisible();
    for (int i = 0; i < conditions.size(); i++)
    IPricingConditionUserExit cond =
                                       (IPricingConditionUserExit) conditions.get(i);
    Warm Regards,
    Sumit

  • ERROR Message while creating Rebate condition record T code VBO1

    Dear Experts,
    I am getting error message while creating rebate condition record T code-VBO1-Error Msg-862 system cannot read the structure for table,because of this i could not create condition record.
    Please give the solution to create condition record.
    Regards
    siva

    Hi,
    You said you are trying to do this stuff in IDES right.
    If you are using IDES provided by a company and where many people play on IDES, then you can get many such issues...
    This is by our experience.  Today you do something in IDES and tommorow that thing or config is screwed up by others.
    If you have your own IDES, then check the suggestion given by the forum Guru's.
    Regards,
    SB

  • Rebate condition record T code VBO1-Error Message

    Hi,
    I am getting error message while creating rebate condition record T code-VBO1-Error Msg-862 system cannot read the structure for table,because of this i could not create condition record.
    (This error has occured while i am testing rebate process in IDES and it happen while creating condition record for rebate agrement,After filling the initial values in T code VBO1 and when click on enter the above mentioned error message has come).
    Please give the solution to create condition record.
    Thanks in Advance
    Regards
    Praveen  P C

    Hi,
    You said you are trying to do this stuff in IDES right.
    If you are using IDES provided by a company and where many people play on IDES, then you can get many such issues...
    This is by our experience.  Today you do something in IDES and tommorow that thing or config is screwed up by others.
    If you have your own IDES, then check the suggestion given by the forum Guru's.
    Regards,
    SB

  • Table Name for Condtion Record

    Hi,
    What is the table name for condition records which are maintained through VK11.
    regards
    Rajesh

    Hi Rajesh,
    The condition records are stored in different tables based on the condition tables given for an access sequence. First find out the access sequence and then the condition tables used for a particular condition type.
    Lets says for PR00 the access sequence is PR02 and the condition tables are 651, 652 & 653. Now the records would be stored tables A651, A652 & A653.
    Regards
    Nadarajah Pratheb

  • Rebate Condition Records Redetermination

    Dear All,
    When we Copy the Service Rendered Date in Billing Document into Billing Date using User Exit then Rebate Condition Records are not getting determined. If I go to the Analysis then i can see that the rebate Condition Record Exists but it does not gets set. In the analysis this is the message which shows for the Condition Record.
    "Condition record exists, but has not been set"
    Any Pointers as to which User Exit can be used to Redetermine the Rebate Condition Records.
    Regards,
    Madhukar

    Hi,
    Did you try to use transaction VBOF to rebill those invoices to set the rebate conditions.
    Regards,
    Rajesh Kumar

  • How can I find table names for Interaction Record

    Hi
    I need the table names for Interaction Record Notes, Description Field, Reason Code & IC Agent. Please assist.

    Hi Sunglad,
    The header data of the interaction record (incl. description) is saved in table CRMD_ORDERADM_H.
    The reason code can be found in table CRMD_SRV_SUBJECT.
    The connection between CRMD_ORDERADM_H and the CRMD_SRV_SUBJECT is rather complex:
    CRMD_ORDERADM_H --> CRMD_LINK --> CRMD_SRV_OSSET --> CRMD_SRV_SUBJECT
    get transaction guid from crmd_orderadm_h.
    get guid_set from crmd_link where crmd_link-guid_hi = transaction guid and objtype_set = 29.
    select guid from crmd_srv_osset where guid_set = guid_set found above in crmd_link table.
    select * from crmd_srv_subject where guid_ref is in all guid's found above.
    The text can be found in table STXH. I guess you need a function module (READ_TEXT) to
    retrieve the text.
    Hope this helps.
    regards,
    Wim Olieman

  • Report for freight condition records

    Dear Freinds
    In my transportation module project, requirement is report for freight condition records.
    We have been created two tables in one access sequence, two tables are: 1. route/ship-to-party 2. route
    They maintained more condition records. They want to see all vondition records in one single report.
    Report based on those two tables. But those two tables are storing in KOMG Structure.
    But price is storing in KONP table. How to fetch both in to repor.
    With regards
    Lakki

    Let us say the condition tables are 001 and 002
    Now you need to go to database tables A001 and A002 in SE16
    Give the name of your condition type for which you want to get all the condition records
    Execute now.
    Now you will get all the condition records for the condition type created for the table say A001
    Hope this solves your problem. You can reward if this helps.

  • How to Concatenate Table name and Where condition at runtime

    I am passing parameter as User and Zone to Stored Procedure.How to concatenate Table Name
    and WHERE CONDITION in SQL Statement.i have different type of users and zones.

    Hi !
    declare
      cur sys_refcursor;
      r emp%rowtype;
      v_sql varchar2(512);
    begin
    -- do your logic here
      v_sql := 'select * from emp';
      open cur for v_sql;
      loop
        fetch cur into r;
        exit when cur%notfound;
        dbms_output.put_line(r.ename);
      end loop;
      close cur;
    end;In this example you can see how can be done this with cursor vars .. You should concatenate v_sql string according to your requirements.
    But as in further posts has already been mentioned , be carefull at publishing such kind of procedures and think on security.
    Also when you want dynamicaly change from clause , you should consider using different records to accept data ? Maybe all your tables has the same structure and then this problem will be smaller.
    T
    T

  • Want field and table name for RESERVED coloum in MMBE

    Hi ,
            There is a RESERVED coloum in MMBE and     I want this   * RESERVED* coloum  in  MB52   .
           I got to know that Field related to this  RESERVED coloum is BDMNG coming from table RESB .
           To confirm the field and table I checked the value in BDMNG by putting join on MARA and RESB where MATNR = BAUGR.
            But I got  value in BDMNG is 50 and in MMBE it is .228 for that material.
               Please tell me field and table name for RESERVED coloum. and hoe to join MARA and RESB  to get exact result.
    Thanks and Regards,
    Ranu

    Hi,
    Mara-matnr is not equal to Resb-matnr and it shows no record if i do like this.
    But Mara-matnr is equal to Resb-baugr, and it gives me 1 record .But porblem is that i dint get BDMNG field matching with mmbe RESEVERD coloum.

  • How to find table name for the fields from Standard Extractor in CRM system

    How to find table name of fields from the standard extractor in CRM system ?
    e.g. We use LBWE TCode in R/3 system to find table name for the field from Extractor VCSCL(e.g.).
    Likewise is there any way to find table name for the fields from Standard extractor like 0CRM_LEAD_I.

    Hi ,
    Please find the link below for understanding BW CRM analysis.
    http://help.sap.com/bp_biv135/html/bw.htm
    activate the CRM DSs by scenario:
    1) Activate the application component hierarchy (tcode RSA9). Changes made to the application component hierarchy in the CRM system can be transferred to the BW using the "Edit Application Component Hierarchy" (SBIW - Postprocessing of DataSources).
    SAP Note 434886 must be implemented in CRM 3.0 before the application component hierarchy is activated.
    2) Activate the Business Content DataSources (tcode RSA5).
    Select/enter the application component and choose Execute (F8).
    To compare the shipped and active versions, choose the 'Select Delta' pushbutton. If there is no active version of the DataSource, it is selected automatically.
    To activate the shipped version, choose the 'Transfer DataSources' pushbutton.
    3) Management of the versions of the BW-Adapter metadata (tcode BWA5). All DataSources are displayed that are managed by the BW Adapter.
    As in transaction RSA5 (Service API Metadata Activation), the 'Select Delta' function can be used to select the inactive DataSources or compare shipped and active versions.
    You can also go directly to the screen for maintaining DataSources that are managed by the BW Adapter.
    The 'Compare Version' function makes a detailed comparison of the shipped and active versions.
    All BW-Adapter metadata is considered when versions are compared:
    Header information (Table SMOXHEAD)
    Mapping information (Table SMOXRELP)
    Global selection conditions (Table SMOXGSEL)
    Attribute key fields (Table SMOXAFLD)
    Hope this helps.
    Regards,
    csm reddy

  • What is the table name for Workload analysis?

    Hi All TechGurus,
    We need to create an ABAP program in which it displays some information of Transaction (STO3n), Report for the same (SAPWL_ST03N)
    We want  to create an ABAP program to get the output in excel format?
    What is the table name for Workload analysis?
    Many thanks in advance!!

    Hi  Keshav,
    Thank you for your reply.
    As per my requirement, i want to create an ABAP program in which it displays some information of Transaction (STO3n) and want to send the output in excel format. however I don't understand how to start with it.
    Below are the conditions -
    1. display data for today's date
    2 .In transaction profile,  task should be Dialogue.
    from where should i fetch data which is getting displyed after executing t.code ST03n?
    Please help me with your suggessions...
    Thanks

  • Whats the fieldname and table name for purchase order delivery date

    hi all,
        whats the fieldname and table name for purchase order delivery date
      thanks and regrads

    EKET-EINDT is the delivery date according to the schedule lines.
    for example the line item has 100 qty.
    it is sent in three schedules (40, 40, 20).
    Then EKET will have 3 records for one PO Line item.
    The final delievry data is the EKET-EINDT for the 3rd schedule line item.
    Regards,
    Ravi

  • Table name for Asset master

    hi folks,
    can u share the TABLE NAME FOR ASSET MASTER
    Thanks in Adv
    Regards,
    Varma

    hi Prasad,
    ANLA                           Asset Master Record Segment              
    ANLB                           Depreciation terms                       
    ANLBZW                         Asset-specific base values               
    ANLC                           Asset Value Fields                       
    ANLE                           Asset Origin by Line Item                
    ANLH                           Main asset number                        
    ANLI                           Link table for investment measure -> AuC 
    ANLK                           Asset Origin by Cost Element             
    ANLP                           Asset Periodic Values                    
    ANLQ                           Period values from dep. posting run per po
    ANLT                           Asset Texts                              
    ANLU                           Asset Master Record: User Fields         
    ANLV                           Insurance data                           
    ANLW                           Insurable values (year dependent)        
    ANLX                           Asset Master Record Segment              
    ANLZ                           Time-Dependent Asset Allocations         
    hope this helps
    ec

Maybe you are looking for