Table Details Needed

Hi Experts,
Once we upload the data through the BAPI or IDOC. means its internally creates some sessions. In which database tables the details of these BAPI or IDOC stored.
For example we are uploading data using batch input session, the data is stored in the tables like BDCLM , APQD , APQI.
In the similar way is there any tables are there when we are uploading data using BAPI or IDOC.
Thanks and Regards,
Abinavasiri.

Hi Gauthm,
Thanks for sending the tables. But in these tables the session details are stored. If yes in which fields these are stored.
For Bapi , is there any tables.
Thanks and Regards,
Abinavasiri...

Similar Messages

  • Oracle LIte Conflict data table details Needed

    Hai,
    I have a new requirement from client that we have to send mail to user all conflict information between oracle lite and main database after synchronisation. We have taken publication and conclict table details from mobileadmin.C$EQ and wants to know which database table should be used for taking field wise details.
    Regards, Palani.R.

    What do you mean by conflict?
    The publication items will by default have a conflict type of 'server wins' or 'client wins'. This comes into play where updates have happened on both the server and the client, and in these cases the rule will be followed, the data updated accordingly and nothing is stored.
    If there is an ERROR in the upload processing, then the entire transaction will be put into the error queue (C$EQ), which sounds like what you are looking at.
    C$EQ will have a record for each record in the upload transaction, but the first one to cause an error will have the message text as not null (there may be other errors behind this, but only the first one is updated).
    If what you are trying to do is send an email when a transaction errors, then i would suggest you
    select the user (clientid), transaction (tranid$$) and message_text (this is the actual error) from c$eq
    to get the related table then
    select pub.owner||'.'||pub.store
    from c$all_publications pub
    ,c$eq eq
    where pub.name=eq.publication
    This is the schema and object name of the server table the data is going to. The actual error queue table is
    select pub.owner||'.CEQ$'||pub.store
    from c$all_publications pub
    ,c$eq eq
    where pub.name=eq.publication
    ie: object name prefixed by CEQ$ sitting in the main schema
    If you want the actual column data, then just use all tab columns inside a bit of dynamic SQL

  • OAB table details needed to pull 4 values

    Hi ,
    I want to display the below 4 OAB data values in a report.
    "Lump sum" -> means lump sum amount given to eligible employees during performance assessment.
    "compa ratio" -> means mid value/total salary
    "annual target amount" -> means target amount to be considered during compensation allocation.
    "final payout" -> Finalpayment
    Please help me to get the tables from where i can derive these values.
    Note : currently i amusing a standard view "ben_cwb_ws_download_v" , but this is causing the performance issue.
    Thanks much.
    VJ--

    Hi ,
    I want to display the below 4 OAB data values in a report.
    "Lump sum" -> means lump sum amount given to eligible employees during performance assessment.
    "compa ratio" -> means mid value/total salary
    "annual target amount" -> means target amount to be considered during compensation allocation.
    "final payout" -> Finalpayment
    Please help me to get the tables from where i can derive these values.
    Note : currently i amusing a standard view "ben_cwb_ws_download_v" , but this is causing the performance issue.
    Thanks much.
    VJ--

  • Master table, detail table, detail table not getting refreshed selection

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    will i have to use table selection listener
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5

    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

  • Master table detail table with SQL based read only VO with bind variables

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5
    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

    Instead of doing the master-detail layout by dragging the details over, can you try a new page where you first drag the master VO over and then drag the detail VO over, and then set partialTrigger from the detail to point to the master?

  • MRP - MD04 table details

    Hi,
    We are in the process of configuring MRP system .  While doing so, the users are asking for a customised reqport which can throw the details of Planned order, customer order, qty required , No. of Purchase req. raised and PO raised and the status
    To meet this, we need to write a customised report . To do so, we need the table details where are all the data stored.  There are FM available which throws the latest one displayed in MD04 screen.
    We need the entire history and hence we need to understand the tables.  Request you to help us in identifying the physical tables where the data stored.
    M.Senthamil Selvan

    Try this BAPI :  BAPI_MATERIAL_MRP_LIST

  • How to use table-detail with uiXML-BC4J?

    Hi,
    is there any sample code available how to use the table-detail tag with BC4J?
    Found in the UIX samples that i need to implement a hide and a show event.
    How to implement these eventhandlers for a bc4j:table?
    Thanks, Markus

    Hi Markus:
    I am doing the same thing, I have a Master and Detail VO and calling Detail VO in <detail> </detail> tag.
    Everthing thing display correctly, but when i click on the sortedcolumnheader while detail is disclosed, it closes the detail part. My detail information generated based on BC4J:Table detail:disclosed elements. could you please let me if you have faced this problem.
    Thanks
    Mohammad Tahir

  • Configured material BOM table details requried for component list

    Hi PLM Experts,
          As per the client requirement, we need to activate one sales condition type based on Super BOM components list. To define a logic for the above requirement, to list out the component we checked in STPO Table and in this table its appearing only the phantham materials not the real BOM of the component is appearing.
        So can you please suggest the table name where i can find the Bill Of Material of my Finished Product (Configured material) in the Table level.
    Warm Regards.
    Velmurugan P

    Thanks Ajit.
    But the problem still persist. The tables you have listed will suits for regular BOM compoents list. But we want to know the Table / procedure details in case of Configured material BOM details. Because for configured materials the BOM will be determined during sales order (Planned order) only.
        This BOM of configured material won't get stored in the table you have listed. As per our requirement we are looking for table details where we can list out the components list to perform the additional charges in the sales order based on BOM.
    Warm Regards,
    VEL

  • Insert record via data tab of table detail display

    I am using SQL Developer 3.0.04
    When I tries to insert more than 200 rows into a table via data tab of table detail display, it takes more than 8 minutes. It takes more than 19 minutes for 400+ rows. It is slow and it is not so slow in previous version (e.g. 1.5.4)
    Had anyone experienced the same issue and is there any workaround (other than loading data via SQL loader and stop using SQL Developer)?
    [Timer of SQL Developer 3.0| http://i.imgur.com/KVAdI.png]

    I've seen this also sometimes but i rarely load large amount of data using SQLDeveloper anyway.
    Please make sure you have patch1 installed and provide information on the database used.
    You can check if patch1 is installed at the
    Help -> About -> Extensionyou should find a "SQL Developer Patch" entry there.

  • In smartform : in a  table i need to maintain  fixed no of rec

    .2.in smartform in a table i need to maintain  fixed no of records in each page i.e 10 records in each page and after printing 10 records page break has to occur and print them in New page , how to do this can any body help me.in each page i.e 10 records in each page and after printing 10 records page break has to occur and print them in New page , how to do this can any body help me.

    Hi,
    I dont know if there is any direct way of doing so, but ican suggest a turn around solution.
    declare 2 global tables 1. ITAB_10 type ITAB (in which there is ur data)
                                      2. IT_ROW inwhich 2 cloumn (start_pos & end_pos type i)
    Now in intialization.
    Caluculate no of rows in ITAB.
    Say there are 56 rows, then fill table it_row as 1(start_pos) - 10(end_pos), 11-20,...51-56.
    Then in main Window, Create a loop on IT_ROW.
    in that create a CODE under this loop in which fill ur ITAB_10 from ITAB as per start_pos& end_pos in IT_ROW.
    Then create TABLE under the loop, for ITAB_10.
    Regards,
    Vaibhav.

  • How can I insert in the table detail of a master/detail form??

    Hello, I have created a master/detail form from the assistant, and with the code generated by APEX I do not manage to insert a row in the table detail, I press the button 'Add Row' and refill information, when I press the button ' to apply changes ' me the following mistake appears:
    'Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. current checksum = "C85B64D53C8D63E9D3EE83B82728DFA3", item checksum = "244B1FED90DF5CC5B0DDB6728F4D02DD"., update "CRM_ADMIN"."ASIGNACIONES_AM_CONTACTOS" set "SECUENCIA" = :b1, "CODIGO" = :b2, "NOMBRE_CLIENTE" = :b3, "NOMBRE" = :b4, "COMENTARIOS" = :b5, "CODIGO_COMERCIAL" = :b6'
    How I can solve and be able to insert in the table it detail?
    Thanks

    Hi Law,
    Text in a shape or a text box will not feature in the table of contents.
    To get a colour behind your titles, type them into your document (not a shape). Format as Heading or some other paragraph style the TOC will recognise.
    Select the title text and Format Panel > Text > Font > Gearwheel > Advanced Options.
    Choose Character Fill Color and choose a colour from the palette (left) or colour circle (right).
    Example Titles (all on the same page for a smaller screen shot).
    Chapter 3 (in a coloured Text Box or Shape) does not appear in the TOC:
    Hint for cheats :
    To give the titles a wider Character Fill Colour, add some Tab characters before and after.
    Regards,
    Ian.

  • SQK Developer 3.0.03 generated ORA-0904 on table detail tab

    When I select the table detail tab, I get an error dialog with the following message:
    An error was encountered performing the
    requested operation:
    ORA-00904: "STATUS": invalid identifier
    00904. 00000 - "%s: invalid identifier"
    *Cause:
    *Action:
    Vendor code 904
    Nothing is displayed on the detail tab.
    The same request, against the same database, using SQL Developer 2.1 displays the expected list of parameters and values.

    I have a saved connection for the sys user on that database. All of these connections were imported from the previous version of SQL Developer. All of the connections use the //server/instance style connection identifier.
    When I navigate to the table through the tree that opens under the Sys user:
    "Other Users" -> [userid] -> "Tables" -> [tablename]
    and select the "Details" tab, I get the same error messages as I do when I view the "Details" tab using the connection for the table owner.
    I did not check all tables, but I visited a few new tables (tables created in the last few weeks), and some old tables (ones that were created several years ago). Also, I looked at some tables owned by SYS, such as ASSOCIATION$ and DUAL. All showed the same error message.
    Edited by: djhenderson on Feb 8, 2011 3:30 PM

  • Master table / detail table: Problem refreshing the content

    Hi,
    I have a Master table/detail table on my page. When I add a new row to the master or detail table, the new row is inserted in the database, but not shown in the ADF Tables on the page. After restarting the OC4J the ADF Tables show the correct data, including the new rows.
    While dropping the collection on my page there were one methodIterator and two accessorIterators created.
    In several tutorials the solution for the refresh problem is to change the chacheResult parameter of the methodIterator to false. But this causes in "No row found for rowKey:null" errors.
    An other solution should be to create a new invokeAction with the id "tableRefresh" and the corresponding RefreshConditions. This doesn't helps, too.
    So how could I solve this problem? I want to update/refresh the master and detail table, after I inserted a new row.
    Thanks,
    Thomas

    Hi,
    thanks for your answer.
    Sorry, but I forgot to say, that I am using Jdev 10.1.3.1, Toplink, ADF and EJB3.
    I think I will give some further informations about the scenario. I created the m/d table by drag-and-droping the object out of the data control palette on site A. Each row stores a goLink item, which navigates to a new page B. After creating and saving the new entry the user navigates back to the page with the m/d table (page A). Storing the new entry is handled by an action in the page B managed bean.
    Now the question: How could I re-execute in page B backing bean the iterator which is stored in page A? Could this be handled by an invokeAction? Or is it possible to get access to the iterator used and stored on another page (definition)?
    Thanks,
    Thomas

  • Details needed

    Hi,
    When I want to integrate with third party system(non-SAP),what are the details I have to collect?
    What are the details needed from XI side?How we can say that we are able to integrate with SAP XI or not?
    Please share your guidance.
    Regards,
    Alex.

    hi,
    That actually depends on the third party system you are having,like you are having file,mail,jdbc etc.And from adapter parameters you can understand what all features and parameters are required from the XI side.
    like for mail adapter you can refer:
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/bf93409c663228e10000000a1550b0/frameset.htm
    for jdbc:
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/bf93409c663228e10000000a1550b0/frameset.htm
    for file:
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/bf93409c663228e10000000a1550b0/frameset.htm
    for jms:
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/bf93409c663228e10000000a1550b0/frameset.htm
    regards,
    ujjwal kumar

  • CProjects - Unable to change tabs from graphic to table/detail

    Hello experts,
    when the tabs in a project under cProjects changed from graphic to table/detail the Display remains to "Please Wait".
    Further processing of the project is no longer possible. It is  equal if i use WebDynpro application cProjects directly or is called from the portal. 
    I appreciate any hint!
    Thanks in advance!
    Regards
    Lutz

    we had to implement the following notes:
    1471832 Korrekturen zu Unified-Rendering bis SAP_BASIS 700/21 V
    1415405 - JS-Fehler in GANTT
    Now the problem is solved.
    Best regards
    Lutz

Maybe you are looking for

  • Java application problem

    I am using JDK1.4 and working on Windows Xp. I have written a code for application in java as follows: import javax.swing.*; public class sample JPanel panel; static JFrame frame; JButton but; public sample() frame=new JFrame("frame"); panel=new JPan

  • How to send non-latin unicode characters from Flex application to a web service?

    Hi, I am creating an XML containing data entered by user into a TextInput. The XML is sent then to HTTPService. I've tried this var xml : XML = <title>{_title}</title>; and this var xml : XML = new XML("<title>" + _title + "</title>"); _title variabl

  • AA 2.1 file saving problem

    I have AA 2.1 on Vista Home ( 32bit). I have used this for 2 years, no problems (besides my computer just being naturally slow), but all of a sudden I'm have issues saving my mixdowns and sessions. I open up the "Save As.." dialog box, and go to type

  • Can't set up my router..

    Hi all, first time poster. This has been driving me crazy over last 2 hours. We had 1 laptop and 1 desktop.  We used to have router hooked up to the desktop. However, due to personal reasons, I'm having router connected directly to my laptop and have

  • 2 player turn based game logic in c# for snake and ladder

    Hello programmers, I am developing a snake and ladder game in xaml and C#.(windows 8.1 app) my question is: 1) I am unable to think about the solution for player turn, I have build the game logic for single player and its working fine. please provide