KLH1 - Which table holds the data?

Hi, I'm looking for the table that holds the "Activity Type Groups" that are created under transaction KLH1.
Any ideas where I can find this info?
Thanks,

Hello Graeme,
Check the tables:
COEJL                          CO Object: Line Items for Activity Types (
COEPL                          CO Object: Line Items for Activity Types (
COKL                           CO Object: Control Data for Activity Types
COSL                           CO Object: Activity Type Totals
COSLD                          CO Object: Activity Type Totals - of Which
If useful please reward.
Vasanth

Similar Messages

  • Which table stores the data of transaction FBL1N...?

    Hi,
    Please help me find out which table stores the data ,generated from transaction FBL1N..Actually i need to find out the g/l account against the vendor account that is being displayed in FBL3N's document overview.

    Hi,
    Data will be retrieved from following table :
    tables: lfa1, lfb1, bsik, bsid, kna1, t001,t005, SKAT, SKB1.
    In BSIK you have  both LIFNR and HKONT. You will get the data based on the LIFNR and HKONT. LIFNR is Vendor and HKONT is GL assigned to the vendor.
    Thanks,
    Sriram Ponna.
    Message was edited by:
            Sriram Ponna

  • When target DB is down in which table is the data from source is stored, also where are the error messages stored in ODI

    When target DB is down in which table is the data from source is stored, also where are the error messages stored in ODI( I am not getting any error message in E$_TARGET_ANI_TEST).
    When i am running the interface i am getting the below error against the errored step
    "ORA-01045: user ABC lacks CREATE SESSION privilege; logon denied."
    Only E$_TARGET_ANI_TEST  is created with no data. No such tables like C$_0TARGET_ANI_TEST, I$_TARGET_ANI_TEST are created and also data is not inserted in the target table TARGET_ANI_TEST.

    Hi,
    I have checked that only E$ table is created. C$ and I$ table are not created ( I have selected my target schema as the part for the staging table).
    All the parameters for dropping the tables are selected as "<default>:false".
    I am importing the following KMs with the following parameters:
    1) CKM Oracle
    DROP_ERROR_TABLE
    :false
    DROP_CHECK_TABLE
    :false
    CREATE_ERROR_INDEX
    :true
    COMPATIBLE
    :9
    VALIDATE
    :false
    ENABLE_EDITION_SUPPORT
    :false
    UPGRADE_ERROR_TABLE
    :false
    2) LKM SQL to SQL
    DELETE_TEMPORARY_OBJECTS
    :true
    3) IKM SQL Incremental Update
    INSERT
    :true
    UPDATE
    :true
    COMMIT
    :true
    SYNC_JRN_DELETE
    :true
    FLOW_CONTROL
    :true
    RECYCLE_ERRORS
    :false
    STATIC_CONTROL
    :false
    TRUNCATE
    :false
    DELETE_ALL
    :false
    CREATE_TARG_TABLE
    :false
    DELETE_TEMPORARY_OBJECTS
    :true 

  • In which tables are the data for the aplication KSB1?

    I'm getting data from Qlik View with a BI tool called Qlik View.
    I need help to find in which tables are the data for KSB1 aplication.
    I've found something in COBK and COEP but there's more table involved since I didn't find all data.
    Somente can help me please?
    Regards.
    Robson

    I ran a trace and found some tables that may help you.
    COVP(View)
    CSKT
    CSLT
    CSKS
    CSKU
    AUFK
    Thanks
    Rathish

  • Which table holds the Shopping Cart Approval Manager Name

    Can any one  please let me know which table holds the Approving Manger Name. Please find the scenario below.
    Employee creates the Shopping  Cart and forward the SC for Approval to Approval Manger. But approval manager will take some time to approve the shopping cart. I need to extract the approving manager's name who has still not approved the shopping cart into SAP BW.
    Thanks in Advance.
    Regards
    Venkata Agraharam.

    Hi,
    This is not answer. Just feedback from my project experience.
    I know some customer developed this kind of report which shows approver but they used the report only the first 1 month after go live. Approval monitoring was fun but you need someone who monitor it. Finally they realized high monitoring admin cost. Final solution was Alert Notification with BBP_ALERTING BADI which sends email to approver and admin when deadline is reached.
    Regards,
    Masa

  • Which table holds the link between Purchase requisition and Reservations ?

    Hi Guys,
    We are using MRP and as a result of the MRP run the reservations are converted to purchase requisition. When i look at transaction MD04 it shows me the Purchase requisition against a reservations.
    I would like to know which table holds this information? I mean which table will give me the reservations tied to a purchase requisition or vice a versa.
    I have looked into RESB and RSBD but could not find what i am looking at. RESB table has BANFN field for purchase requisition but this field is not populated. RSBD table hold the Purchase requisition and reservations but it only holds the relation for Direct procurement and not for all.
    Any idea where i can find the Preq and Reservations created through MRP run?
    Thanks
    VJ

    Try RKPF..
    thanks
    jz

  • Which table holds the position ID

    Hello
    Just a quick question. I have restricted access to PA30/PA40. I want to searc for an employee and find out the position ID
    Which table holds it? I want it to map the roles to positions
    Thanks

    Hello Jack,
    If you have restricted access to use PA20, then you would also have some restrictions for using transaction PPOME.
    If you search for PPOM / PPOME then you will find some more information on them to assign roles to positions.
    Cheers,
    Julius
    PS: Do you have a SAP Service Marketplace ID now?

  • Which table has the data for DeliveryBlock and DunnCount ??

    Hi SAP gurus
    I am trying to read values of DeliveryBlock and DunnCount, but couldn't locate a table that has these values.
    The help feature showed that the table name is V_TQ04A. However, when I try to use the command
    "select * from V_TQ04A into itab." I get a message that V_TQ04A is not defined in ABAP dictionary.
    I would appreciate if some one can please let me know in which table I can see the values of these two.
    Thanks
    Ram

    Hi,
    write this Query..
    data : begin of itab occurs 0,
               SPERRFKT              t ype TQ04A-SPERRFKT,
              BESTELLUNG           type TQ04A-BESTELLUNG
              ANFRAGE     TYPE TQ04A-ANFRAGE
             KURZTEXT     TYPE TQ04S     -KURZTEXT
             BZGQUELLE     type TQ04A-BZGQUELLE
             WESPERR     type TQ04A-WESPERR
          END of ITAB.
    select a~SPERRFKT
    a~BESTELLUNG
    a~ANFRAGE
    b~KURZTEXT
    a~BZGQUELLE
    a~WESPERR
    from TQ04A as A
    join   TQ04S as B
    on a~SPERRFKT = b~SPERRFKT
    into corressponding fields of table itab
    where <condition>.  "add your condition here
    if sy-subrc = 0.
    endif.
    regards,
    Prabhudas

  • ML60 tcode !! which table stores the data which is shown in ML60 ..urgent !

    Hi Guys,
    Tcode ML60 shows the Relase Group, Relase strategy and all....
    Can anyone tell me which table is that which the stores the data which is shown in tcode ML60 ???
    The problem that i am facing is that for ML60 the amount that is fixed for every relase staretgy is in text fields eq 2.5k - 50 K USD but i want this value to be in numeric field and not as text.
    If i will find that table which stores all this information, may be i will get this field which stores this text as a numeric field.
    Please help me find this table.
    And also can any one tell me how to link PO document type to the relase group ??
    Points will be awarded.
    Thanks a lot
    Rahul

    Hi guys,
    Yes ML60 is a standard SAP transaction but may be ML60 is not configured to the system which you are using. Otherwise also if u will search google, you will find ML60.
    Hi Anji, i have already tried all these tables, but none of these tables store the limit for each release strategy.
    I can see the limit only in ML60 tcode
    Thanks
    Rahul

  • Which table holds the reserved stock

    Hi All,
    In report - MMBE there are two columns unrestricted stock and reserved stock. Can you kindly share how this reserved stock is calculated which table/field holds the reserved stock. If I run the MMBE report now if it is determining the reserved stock assuming it comes from RESB which holds reservations what field in RESB gives me the reserved stock and how many days or what logic does MMBE use to calculate the reserved stock.
    Thanks
    Karen

    hi KarenFarr  .. check out this tables
    Table MCHB ,  MSLB
    regards
    chinnaiya

  • Production Order COst Itemization details : which table stores the data

    Hi gurus ,
    Please help in the followoing scenario
    For any production order : GOTO > Costs>Itemization : it says Planned values are recalculated
      At which table level we would retrieve the Itemization details for any production order(containing Material).
    The requirement is to develope a report to display the Cost Itemization details for any production Order.
    Any help is appreciative or helpful.
    Thanks
    Kylietisha

    Dear,
    Check the table COAS and COEP or use BAPI_COSTESTIMATE_ITEMIZATION or K_ORDER_ITEMIZATION_GET
    Please refer this link,
    production order - table for cost itemization
    Regards,
    R.Brahmankar

  • Which tables hold datasource timestamps?

    Can anybody tell me which table holds the timestamps showing the date a datasource was last generated (on both the R3 and BW systems)?
    i.e. the timestamp which needs to match following relpication of a datasource.
    thanks,
    Hans

    Hi Hans
       Check at ROOSOURCE & ROOSFIELD.
    Hope it Helps
    Srini

  • In which table is the Live cache data stored?

    Hi experts,
       I am new APO .Can anyone let me know in which database table will the Live cache data be stored?
    Thanks in advance
    regards
    Ashwin.

    Hello Ashwin,
    the idea of the liveCache is to haev data permanently and quickly available without having to read/write from/to database. Therefore, the liveCache is <b>NOT</b> a physical database, it is a program in C++ that <i>simulates</i> a database and holds the data in the memory.
    However, it does need so called liveCache-anchors which are saved on the database, and which are similar to pointers.
    However, you can extract data from liveCache using BADIs or by creating a datasource on a planning area (for DP and SNP), manipulation can also be done only by BADIs or sophisticated programming (which basically uses RFCs).
    I hope this answers your question.
    Regards,
    Klaus

  • Which table holds data for plant, soldto party and shipto party? Help!

    Hi Experts,
             Which table holds data for plant, soldto party and shipto party?
             Basically I want get palnt and associated soldto party and shipto party.
             Kindly help!
    Thanks
    Gopal

    Hi
    You have to link VBAK and VBAP tables.
    regards
    Srinivas

  • Which SD Table holds the Technical Object Information?

    I am writing a report in SQ01 and can't find an SD table holding the technical objects information from the Sales contracts or orders. Can anyone suggest a table or which tables to joins I need. .
    Thanks
    Jen

    .... also:
    inner join with sales ordem item:
    VBPM-VBELN = VBAP-VBELN
    VBPM-POSNR = VBAP-POSNR
    Available fields:
    Technical reference object type
    Technical reference object
    Serial number

Maybe you are looking for

  • Does dropping bitmap index and creation of b- index cause any dead locks

    Does dropping a bitmap index on table which is being used continuously for DML operations and creation of b- index cause any dead locks on a table in oracle 10g database ( 10.1.0.4.0 - 64bi). we have seen alert log file which has dead lock occurrence

  • An app to where I can edit existing PDF files with typed text

    I would love to be able to edit my contracts for my business on the iPad to email. On my computer I use Adobe Photoshop. My contract is a PDF. I would like to find an app where I can just fill in details in the appropriate locations on the contract u

  • Cannot Import javax.swing.JOptionPane   Please HELP!!!

    import javax.swing.JOptionPane; this line of code returns the error: C:\Java Files\BankAccount\BankAccount_Test.java:1: Class javax.swing.JOptionPane not found in import. import javax.swing.JOptionPane; ^ 1 error Process completed. Please help, I don

  • Photo file sizes and iPhone

    My digital camera files has extremely large file sizes - around 10mb. When I sync iphoto with the iphone I'm planning to get, will it resize the files and upload a smaller version to the iPhone? I hope so or my iphone will fill up pretty fast.

  • Problem in matrix 3d

    Sir, I am trying to experiment with new CS4 and AS3 to create 3D aplications using matrix3D class.i recently encountered a problem in the Code and I am unable to compile it even. URL: http://livedocs.adobe.com/flex/gumbo/langref/flash/geom/Matrix3D.h