Table for Idoc details including messageID

Hello All.
Is there any table in ECC end , where we can get inbound iDoc details including message ID (which is same as that of Message ID of XI sender system )
I need to find this MessageID information for thousands of IDoc.
Normally we need to open each idoc control structure's Detail tab to find this.
Thanks,
Shiv

Hello Avinash,
I already seen in tables  EDIDC and EDIDS but not able to find the message ID details of sender system (XI system ) .
Thanks,
XI team

Similar Messages

  • Tables for delivery details

    Hi all,
    What are the tables for delivery details.
    What i want exactly is header and lines tables for one Delivery .
    Thanks

    Thanks Nagmohan...
    And i want to know what are the tables get affected and the flow of process from the status to shipp confirm ..
    Can you pls tell me patiently..
    thanks

  • Problem occured when create a tree table for master-detail view objects using SQL queries?

    I am programming a tree table for master-detail view objects using SQL queries and these 2 view objects are not simple singel tables queries, and 2 complex SQL are prepared for master and view objects. see below:
    1. Master View object (key attribute is SourceBlock and some varaible bindings are used for this view object.)
    SELECT  cntr_list.SOURCE_BLOCK,                   
            sum(                   
             case when cntr_list.cntr_size_q = '20'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr20 ,                   
            sum(                   
             case when cntr_list.cntr_size_q = '40'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr40 ,                   
             sum(                   
             case when cntr_list.cntr_size_q = '45'                   
                  then cntr_list.cntr_qty                   
                  else 0 end ) as cntr45                    
    FROM (       
        SELECT yb1.BLOCK_M as SOURCE_BLOCK,       
               scn.CNTR_SIZE_Q,        
               count(scn.CNTR_SIZE_Q) AS cntr_qty        
        FROM  SHIFT_CMR scm, SHIFT_CNTR scn, YARD_BLOCK yb1, YARD_BLOCK yb2       
        WHERE       
        scm.cmr_n = scn.cmr_n             
        AND (scm.plan_start_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS')                 
        OR scm.plan_end_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS'))                 
        AND scm.shift_mode_c = :ShiftModeCode                           
        AND scm.end_terminal_c = :TerminalCode      
        AND scm.start_terminal_c = yb1.terminal_c                  
        AND scm.start_block_n = yb1.block_n                  
        AND substr(scn.start_location_c,(instr(scn.start_location_c,',',1,5)+1),instr(scn.start_location_c,',',1,6)-(instr(scn.start_location_c,',',1,5)+1)) BETWEEN yb1.slot_from_n AND yb1.slot_to_n                  
        AND scm.end_terminal_c = yb2.terminal_c                  
        AND scm.end_block_n = yb2.block_n                  
        AND substr(scn.end_location_c,(instr(scn.end_location_c,',',1,5)+1),instr(scn.end_location_c,',',1,6)-(instr(scn.end_location_c,',',1,5)+1)) BETWEEN yb2.slot_from_n AND yb2.slot_to_n           
        AND scn.status_c not in (1, 11)             
        AND scn.shift_type_c = 'V'             
        AND scn.source_c = 'S'       
        GROUP BY yb1.BLOCK_M, scn.CNTR_SIZE_Q       
    ) cntr_list       
    GROUP BY cntr_list.SOURCE_BLOCK
    2. Detail View object (key attributes are SourceBlock and EndBlock and same varaible bindings are used for this view object.)
    SELECT  cntr_list.SOURCE_BLOCK, cntr_list.END_BLOCK,                
            sum(                     
             case when cntr_list.cntr_size_q = '20'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr20 ,                     
            sum(                     
             case when cntr_list.cntr_size_q = '40'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr40 ,                     
             sum(                     
             case when cntr_list.cntr_size_q = '45'                     
                  then cntr_list.cntr_qty                     
                  else 0 end ) as cntr45                      
    FROM (         
        SELECT yb1.BLOCK_M as SOURCE_BLOCK,     
               yb2.BLOCK_M as END_BLOCK,  
               scn.CNTR_SIZE_Q,          
               count(scn.CNTR_SIZE_Q) AS cntr_qty          
        FROM  SHIFT_CMR scm, SHIFT_CNTR scn, YARD_BLOCK yb1, YARD_BLOCK yb2         
        WHERE         
        scm.cmr_n = scn.cmr_n               
        AND (scm.plan_start_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS')                   
        OR scm.plan_end_dt BETWEEN to_date(:DateFrom,'YYYY/MM/DD HH24:MI:SS') AND to_date(:DateTo,'YYYY/MM/DD HH24:MI:SS'))                   
        AND scm.shift_mode_c = :ShiftModeCode                             
        AND scm.end_terminal_c = :TerminalCode        
        AND scm.start_terminal_c = yb1.terminal_c                    
        AND scm.start_block_n = yb1.block_n                    
        AND substr(scn.start_location_c,(instr(scn.start_location_c,',',1,5)+1),instr(scn.start_location_c,',',1,6)-(instr(scn.start_location_c,',',1,5)+1)) BETWEEN yb1.slot_from_n AND yb1.slot_to_n                    
        AND scm.end_terminal_c = yb2.terminal_c                    
        AND scm.end_block_n = yb2.block_n                    
        AND substr(scn.end_location_c,(instr(scn.end_location_c,',',1,5)+1),instr(scn.end_location_c,',',1,6)-(instr(scn.end_location_c,',',1,5)+1)) BETWEEN yb2.slot_from_n AND yb2.slot_to_n             
        AND scn.status_c not in (1, 11)               
        AND scn.shift_type_c = 'V'               
        AND scn.source_c = 'S'         
        GROUP BY yb1.BLOCK_M, yb2.BLOCK_M, scn.CNTR_SIZE_Q         
    ) cntr_list         
    GROUP BY cntr_list.SOURCE_BLOCK, cntr_list.END_BLOCK
    3. I create a view link to create master-detail relationship for these 2 view objects.
    masterview.SourceBlock (1)->detailview.SourceBlock (*).
    4. I create a tree table using these 2 view objects with master-detail relationship.
    When I set default value for variable bindings of these 2 view objects and the matching records exist, tree table can work well. I can expand the master row to display detail row in UI.
    But I need to pass in dymamic parameter value for variable bindings of these 2 view objects, tree table cannnot work again. when I expand the master row and no detail row are displayed in UI.
    I am sure that I pass in correct parameter value for master/detail view objects and matching records exist.
    Managed Bean:
            DCIteratorBinding dc = (DCIteratorBinding)evaluteEL("#{bindings.MasterView1Iterator}");
            ViewObject vo = dc.getViewObject();
            System.out.println("Before MasterView1Iterator vo.getEstimatedRowCount()="+ vo.getEstimatedRowCount());
            System.out.println("Before MasterView1Iterator ShiftModeCode="+ vo.ensureVariableManager().getVariableValue("ShiftModeCode"));
            vo.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
            vo.ensureVariableManager().setVariableValue("DateTo", dateTo);
            vo.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
            vo.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
            vo.executeQuery();
            System.out.println("MasterView1Iterator vo.getEstimatedRowCount()="+ vo.getEstimatedRowCount());
            DCIteratorBinding dc1 = (DCIteratorBinding)evaluteEL("#{bindings.DetailView1Iterator}");
            ViewObject vo1 = dc1.getViewObject();
            System.out.println("Before DetailView1Iterator vo1.getEstimatedRowCount()="+ vo1.getEstimatedRowCount());
            System.out.println("Before DetailView1Iterator ShiftModeCode="+ vo1.ensureVariableManager().getVariableValue("ShiftModeCode"));
            vo1.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
            vo1.ensureVariableManager().setVariableValue("DateTo", dateTo);
            vo1.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
            vo1.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
            vo1.executeQuery();
            System.out.println("after DetailView1Iterator vo1.getEstimatedRowCount()="+ vo1.getEstimatedRowCount());
    5.  What's wrong in my implementation?  I don't have no problem to implement such a tree table if using simple master-detail tables view object, but now I have to use such 2 view objects using complex SQL for my requirement and variable bindings are necessary for detail view object although I also think a bit strange by myself.

    Hi Frank,
    Thank you and it can work.
    public void setLowHighSalaryRangeForDetailEmployeesAccessorViewObject(Number lowSalary,
                                                                              Number highSalary) {
            Row r = getCurrentRow();
            if (r != null) {
                RowSet rs = (RowSet)r.getAttribute("EmpView");
                if (rs != null) {
                    ViewObject accessorVO = rs.getViewObject();
                    accessorVO.setNamedWhereClauseParam("LowSalary", lowSalary);
                    accessorVO.setNamedWhereClauseParam("HighSalary", highSalary);
                executeQuery();
    but I have a quesiton in this way. in code snippet, it is first getting current row of current master VO to determine if update variables value of detail VO. in my case, current row is possibly null after executeQuery() of master VO and  I have to change current row manually like below.
    any idea?
                DCIteratorBinding dc = (DCIteratorBinding)ADFUtil.evaluateEL("#{bindings.SSForecastSourceBlockView1Iterator}");
                ViewObject vo = dc.getViewObject();           
                vo.ensureVariableManager().setVariableValue("DateFrom", dateFrom);
                vo.ensureVariableManager().setVariableValue("DateTo", dateTo);
                vo.ensureVariableManager().setVariableValue("ShiftModeCode", shiftModeC);
                vo.ensureVariableManager().setVariableValue("TerminalCode", terminalCode);
                vo.executeQuery();
                vo.setCurrentRowAtRangeIndex(0);
                ((SSForecastSourceBlockViewImpl)vo).synchornizeAccessorVOVariableValues();

  • Table for Plant Detail

    Hi,
           What is the table for plant details on Material Basis?
    Thanks

    Hi,
    MARA                             General Material Data
    MARC                             Plant Data for Material
    MARD                             Storage Location Data for Material
    Reward of helpful

  • Table for batch detail

    Hello
    plz suggest Table for batch detail for sale & purchase in SAP 8.81 pl 07

    hi Jayakumar
    In Sap b1 8.8 the batch tables have been changed
    Category                                     Old Tables                    New Tables
    Batch Number                          OIBT, IBT1, OSRD             OBTN, OBTQ, OBTW, OITL, ITL1
    i think this will solve
    Regards
    Jenny

  • Tables for Catalog details...

    Hi,
    I'm new to CCM. Can any one let me know the details of the tables or reports where I can find the following details:
    1. Catalogue Number
    2. Date on which catalogue was created
    3. Who had created the catalog.
    4 Whether any changes were done for the catalogue
    5. When the changes were done & who had done the changes.
    It will be really helpful if any one can send me the material on CCM.
    Wishes & Regards,
    Mahesh. J

    Hi,
    All the CCM tables are stored under Table names </CCM/>
    You can also check these reports in SE38... There are more of them, do a search on /CCM/*
    Report Name Description. Attention / additional hints
    /CCM/CLEANUP_CATALOG Deletion / Cleanup of catalogs. May be dangerous since all catalogs can be deleted via this report! The report is needed if an upload crashed in order to delete the temp. version of the uploaded catalog.
    /CCM/PATCH_CATALOG Needed if data migration was necessary between two support packages in order to migrate the data.
    /CCM/VERIFY_CATALOG Prints out a list of the database content of a catalog.
    Options on the selection screen for Item valuations, includes deleted objects, views etc.
    /CCM/CATALOG_CME_DATA Shows the predefined characteristics / data types
    Shows the characteristics / data types of a catalog.
    Can be used to check the data (e.g. alias, aspects) of predefined characteristics
    /CCM/VISUALIZE_MAPPING Displays the mapping tables for a given catalog ID
    /CCM/INITIALIZE_CME Initializes the predefined data types / characteristics. Used to initialize the catalog
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Tables for Vendor details

    I want to know the name of the following tables:
    Vendor Master (General level)
    Vendor Master table (purchase organization level)
    Vendor Master (Company Code Level)
    I used LFM1 table but could not find vendor name there.  I want details like vendor, purch organisation, company code, reconciliation account, vendor name.
    Moderator: Please, search SDN

    Dear:
                   I have these details regarding master data saved in word file . Please follow given below tables for vendor master data information
    Vendor Master (General Section) u2013 LFA1
    Vendor Master (Company Code) u2013 LFB1
    Vendor master (VAT registration numbers general section) u2013 LFAS
    Vendor master (dunning data) u2013 LFB5
    Vendor Master (Bank Details) u2013 LFBK
    Vendor master record (withholding tax types) X u2013 LFBW
    Vendor master record purchasing organization data u2013 LFM1
    Vendor Master Record: Purchasing Data u2013 LFM2
    Partner Functions - WYT3

  • How to create a database table for educational details

    how to create table for this image. i have to develop a job portal website. i created all the tables that required. but i dont know how to store these fields in table. any one help me plz

    It would need following tables
    1. Employee table where EMpNo field would be included as an attribute. Other fields would be EmployeeName,Designation, ...
    It will have Primary Key as EmpID
    2. QualificationType table with QualificationCategoryID and QualificationCategory with values Highest Qualification Post Graduate etc
    QualificationCategoryID  is the primary key
    3. QUalificationTypeAttributes tables with fields as QUalificationTypeAttributeID,QUalificationTypeAttributeName
    QUalificationTypeAttributeID is primary key
    and QUalificationTypeAttributeName will have values Institute Name, Qualification Category etc
    4. EmpQualificationTypeValues table with fields
    QUalificationTypeValueID, QUalificationTypeAttributeID , QualificationCategoryID , EmpID, Value
    QUalificationTypeValueID would be the primary key
    for above case values would be like below
    Employee
    Emp ID EmpNo Name ...
    ID1 12345 xxxxxxx
    QualificationType
    QualificationCategoryID QualificationCategory
    CatID1 HIghest Qualification
    CatID2 Post Graduate
    QUalificationTypeAttributes
    QUalificationTypeAttributeID QUalificationTypeAttributeName
    QTAID1 Institute Name
    QTAID2 Qualification Category
    QTAID3 Year Of Passing
    QualificationTypeValues
    QUalificationTypeValueID QUalificationTypeAttributeID QualificationCategoryID EmpID Value
    QTVID1 QTAID1 CatID1 ID1 Your institute Value set from screen for highest qualification
    QTVID2 QTAID2 CatID1 ID1 Your qualification category Value set from screen for highest qualification
    QTVID3 QTAID3 CatID1 ID1 Your year of passing value set for highest qualification
    QTVID4 QTAID1 CatID2 ID1 Your institute Value set from screen for post graduate
    QTVID5 QTAID2 CatID2 ID1 Your qualification category Value set from screen for post graduate
    QTVID6 QTAID3 CatID2 ID1 Your year of passing value set for post graduate.....
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Tables for IDOC's

    Some time ago I created a job which deletes all idocs older than 1 year.
    I am asked now to check what is the benefit in term of space(tables, database..)
    I wander in which tables idocs are stored(if tables are different for different idocs could you let me know tables for most commonly used)
    . However I am afraid (having oracle database) I can not see the benefits as segments/database just grows regardless of empty space.

    Jan,
    Check below links for idoc tables
    What is the name of the IDoc table
    Re: IDOC Table
    Idoc table
    Re: idoc
    To reduce the Oracle DB size check below link
    Re: How to reduce oracle DB's size?
    Re: degradated indexes of the table D0101INC
    Hope it helps
    Thanks
    Sushil

  • Table for Billing Details(in Sales Area Data) in BP

    Hi,
    Can you let me know the table name for Billing Details(in Sales Area Data) in BP xn.
    Please Help.
    Neeraj

    Hi,
      CRMD_BILLING Contains billing related information.
    see these tables also..
    CRMD_BILLPLAN
    CRMD_BILLPLAN_D
    CRMD_BILLPLAN_DA
    Regards
    Srinu

  • WHAT ARE THE TABLE for PO details ?

    Hi,
    Does any body know Table for Total PO Value .
    Kindly help
    Sure shot Rewards if helpfull
    Regards

    Hi,
    Table EKPO -NETPR at item level
    Diwakar
    Edited by: diwakarnd deshpande on Oct 17, 2008 11:04 PM

  • Large table for IDoc

    Hello Guru:
    Now the DB table EDID4 is very large ( more than 45 million records ) in our BW system, is there anyway to delete the content of the table but do not harm our BW logic?
    The system will read some data from the table when we try to read the monitor.
    Thank you.
    Best regards,
    Eric

    Hi,
    You can use SAP's archiving (txn SARA) to archive old IDOCs. These can alwasy be restored back into the system if required.
    You can select the IDOCs for archiving based on dates to delete IDOCs which are quite old and are not likely to be used.
    You can use an archiving job to automatically delete the idocs periodically (say idocs older than six months, the job running every week).
    cheers,
    Ajay

  • Abap report for PO details including the person releasing the PO last.

    Hi gurus,
    I need to create a abap report for the purchase order details. I am finding difficulty in getting the last person who released the PO. Can anyone tell me how can I get the person who released the PO last ??
    From which table I can get this detail ??

    Hey hi ,
    thanks for your reply,
    Actually , I already went through the tables before, but here, there is one scenario listed below which is creating the problem :
    1. There are two person related with the release of PO and either of the two can release the PO ( in other's absense ). Now, how to check who released the PO among the two. Here link with the PO is necessary as the person released this PO might not release the next PO.
    Thats why i feel the link of the PO must be existing based on release code too. As suppose the organization assign another manager to release the PO, it should not affect previous PO's released by the Old manager.
    thanks
    Edited by: kanak bhandari on Feb 6, 2008 1:19 PM

  • Table for Idoc messages

    Hi,
    Where I will get the bd87 idoc messages
    what the name of the table contain these messages.
    Thanks!!

    Hi Ramesh,
    if you are tracing the idocs through BD87 (idocs in outbound side) , then u can find the corrresponding inbound idocs in the reciever system,use transaction we02 give the outbound idoc numbers and execute , the u can see the idoc numbers along with thier inbound status (for eg 51, 53 0r 64).
    Also in bd87 itself u can trace the idocs by mentioning the time and date on which u created idocs.
    The status through which ab idoc has passed are stored in EDIDS.
    Regards...

  • Table for getting details in segment of Allocation (Tcode GA13)

    Hi Guy,
    I need a table which shows that in a certain Allocation cycle (Tcode GA13), how many segments are there and in those segments the details of sender/receiver (all the detailed attributes)
    I could not find any database table just table T811C which shows the Cycle details but not for any segment details.
    -JR

    Hi Ravana,
    go for T811S Allocation Segments
    Regards JMy

Maybe you are looking for

  • I'm on the fence and need help, please.

    My service contract is up and I'm ready to get a new phone.  I want a touch screen phone with no data plan and I'm turn between the Lg cosmos touch and the KIN 2m.  I have seen a lot of mixed reviews on the 2m and mostly positive reviews for the cosm

  • HT1349 why wont my itunes open?

    why wont my itunes open on my PC

  • Team invitation email not getting through?

    I have a team and have invited users to seats that I have purchased but they are not getting the invitation emails. I have tried Adobe support on the phone but I dont have two days spare to stay on hold and then be cut off!

  • Master Detail Wizard: Cannot Redirect Detail Form to Detail Form 2

    Dear all, I created a Master Detail Report Forms using wizard where Master Report has a link to its Detail1 form, which has a link to its Detail2. However, the page redirection didn't work from Detail1 to Detail2 whereas Master to Detail1 worked. I c

  • Changing to a new Active Directory

    We are synchronising Shared Services to Microsoft Active Directory to create our main user directory. We add the AD accounts to native groups, which are provisioned with Essbase and Planning roles. We apply security filters for our Planning cubes dir