Idoc number with other fields

hii
How i can get the in single table Idoc number with BELNR feild data .
I need get the data like this in single transaction code . can some body help in this ??
Thanks

hii
I have approximately 10,000 IDOCs .. Its not possible to open individually the and get the field data for IDOCS.
So how i can acheive this in single shot or there is any table ..
Thanks

Similar Messages

  • To find the IDOC number with SOBID information

    Hi Experts,
      I have an employee information like VARYF, SEQNR, AEDTM, UNAME, ITXNR, SCLAS, SOBID and PROZT.
    Some outbound IDOC number has stopped its process to the SRM system.
    I want to know thw IDOC number.
    Please help me in finding out the transaction to find the IDOC number with the SOBID or OBJECTID information.
    Thanks in Advance.
    Ramya Sekar

    Look at transaction WE09.
    Other IDOC information can be found through WEDI.

  • How to modify field symbol of type Index Table with other field symbol of type any.

    Hello Experts,
    How is it possible to update an filed symbol table of type Index table with other filed symbol table.
    e.g.
    Field symbol :  <lt_table1> type Index table.
    Field symbol : <lt_table2> type Index table.
    after some code...at run time these table filled like following.
    <lt_tabel1 > has  value fore column  like c11 , c12 , c13 
    <lt_table2> has value for column like C11     , C12 , C13 , C14 , C15 . some extra  values from <lt_table1>
    Now I want to be modify <table1> one entires like C12 with <table2 > col C12.
    how I can achieve this.
    Regards,
    Chetan.

    Hi,
    did you try  ASSIGN COMPONENT xx OF STRUCTURE <IT_TABEL1> TO <IT_TABLE2>.
    xx will contain the number of the column
    or maybe, if you have the description with a field catalog or other, that will be easier ..
    regards
    Fred

  • IDOC Posting with new fields in VA01

    Hi,
    Previously i asked for creating New fields in VA01 screen.
    i got that now i need to create a sales order based on the Inbound IDOC  which i get and i will be getting new fields which are created .
    And this Fields data is coming from an Extension to the Standard IDOC. Sales order is getting created but the new fields are not getting populated nor stored in VBAK Table.
    pls let me know why is this.And provide me with a soultion.
    MG.

    Hi,
    i had a similar problem in my last assignment .
    I think you are using IDOC_INPUT_ORDERS F/M for Posting the IDOC.
    Here once you go into the code at line number 116 you can see that they are calling Transaction VA01 for posting the sales order .
    If you go into any perform there you would be having the User Exits . Use the exits and you need to process the IDOC in the Foreground so that you can catch the Screen flow and the screen number , as you do in SHDB.
    Now you need to make sure that you are getting the new screens there where you have desigined the fields on the screen.
    And write the BDC Code with proper OK Codes before the Save ok code SICH is reached .
    And make sure that you are writing the code at the header level only as you need to update the VBAK Table.
    As this is a single screen you can directly write the BDC code for populating the fields data and at last make sure that the ok-code you are giving is the right one.
    Pls let me know if this problem is solved , i need to check the code in which exit i have written . But  here it would be the same EXIt i think .
    the exit name is EXIT_SAPLVEDA_002 .
    Pls check this and let me know.
    Regards,
    Naidu.

  • Idoc enhancement with new fields and refresh in MII 12.1

    Hello all,
    I'm using one standard idoc LOIPLO to transfer planned orders from ERP to SAP ME 5.2
    I have enhanced this idoc to add some new "custom fields" -> On the ERP side I can see my new fields in the idoc, but when idoc is received in MII, I don't see my new fields (it's still the "old" idoc version). In 5.1, I remember that we had to stop/start the message listener in MII and new fields were available, but in 5.2 it does not work.
    -> Message listener is now configured at Netweaver level and we stop/start it, but the new fields are not in.
    Any idea how to "refresh" the idoc version in MII ?
    Thanks and regards,
    Michaël.

    Restart the NW server
    Restarting the Java process should be enough...
    Perhaps also via the "cache refresh" tool normally used for Webdynpro stuffs...

  • Crosstab - Comparing value with other fields

    Post Author: Micho
    CA Forum: General
    Hi , I'm using CRXI Standard (eclipse plugin) and I have
    some trouble to customize my crosstab.
    Here is a simple example of what I'd like to doStructure of my resultset:ColumnsPARTNUMBERSECTOR_NAMEQUANTITYORDER_LATE_FLAG My crosstab looks like thisRows=partnumbercolumns=sector_namecalculated fields=sum(quantity)                    |    sector_name1   |   sector_name1   |----
    partnumber     |  sum(quantity)   |   sum(quantity)   |                    |                         |                          |  What I need to do is that I want to display a "*" before the total quantity if a partnumber has it's ORDER_LATE_FLG set to true
    if ({ORDERS.ORDER_LATE_FLAG} = "Y") then       "*"+
         ToText(CurrentFieldValue)
    else       ToText(CurrentFieldValue)The problem is that {ORDERS.ORDER_LATE_FLAG} always refer to the first record, and not always to the value of the Current record beeing processed.Is there's a solution to that ?? Thanks
    Phil

    Post Author: V361
    CA Forum: General
    you can try adding
    whileprintingrecords;
    before the formula.

  • Get max value with other fields

    Hi All,
    I have a table as below
    Name Value
    A1     5
    A3 10
    A2 7
    A2 9
    A1 10
    What I would like to get is the max(Value) and with grouping of its name
    Name     Value
    A2 16
    Thanks
    Alex
    Edited by: user8606416 on 01-Jun-2011 10:17
    Edited by: user8606416 on 01-Jun-2011 10:26

    Depending on how you feel about ties one of:
    SELECT name, value
    FROM (SELECT name, SUM(value)
          FROM table
          GROUP BY name
          ORDER BY 2 DESC)
    WHERE rownum = 1
    SELECT name, SUM(value)
    FROM table
    GROUP BY name
    HAVING SUM(value) >= ALL (SELECT SUM(value)
                              FROM table
                              GROUP BY name)among many other methods. The first will pick a single arbitrary record in case of a tie, the seond will show all of the tied records.
    John

  • Sales order number with idoc number

    experts
    the idoc is generated and posted the sales order and given the idoc number.
    how to get the sales order data for this idoc .i have seen the table edidd,edid4etc but no use.
    If atleast i get the sales order number with this idoc then i can get the sales order details ie kunnr, matnr,menge etc in vbak table.
    please tell me where to get the data of the idoc.

    thanks Alexander you are always a great help.
    in the status table EDIDS four records are created for each idoc.
    in this the one with status 53 has the document number and the field name is STAPA2.
    is there any function module to get the order number if we give the idoc number?
    or any other table or function module which fetches all the data of the order if we give the idoc number.

  • Get IDoc number for IDoc generated through RBDMIDOC

    Hi All,
    I have a requirement where in I need to send Vendor master information through CREMAS to PI system. I am using change pointer and batch job to trigger RBDMIDOC and send IDocs.
    In case the IDoc fails a mail needs to be triggered to concerned person giving vendor number, Idoc number and date. Can anyone suggest any user exit/BADI where this can be done ??
    Note: system is 4.7C.

    Hi Chinmay
    I didn't knew you were in 4.7. Since you mentioned about the details of the workflow getting triggered, here are the options i can think of.
    In case of error it is triggering the standard task 00007989 which you can check in PFTC. This task calls the method ERRORPROCESS from Business Object IDOCAPPL. My suggestion here would be to create a subtype of BO IDOCAPPL in SWO1 transaction and add additional logic in method ERROR_PROCESS to send the mail. The details of the IDOC number and other things are available in the task container of TS00007989. But make sure you do it specific for your message type, as this will be triggered for all message types. And then change the BO and method reference in task 00007989 to point to your new BO method.
    Other options would be to delegate the BO IDOCAPPL to a new Z BO, and then modify the method IDOCAPPL. This way you don't have to change the task BO assignment, as it will implicitly use the Z BO method. May be you can get in touch with your Workflow consultant who can help you more on this.
    Regards
    Ranganath

  • After inserting into one field using LOV,  how to populate other fields ?

    Hi,
    I have a BLOCK based on a table (ex:EMP)
    And I have a LOV on the field(item): EMPNO.
    When I select one EMPNO from the LOV (when the field:EMPNO is populated with an emp number), the other fields should be populated
    Can some body let me know, which trigger I need to use and .......
    Thanks

    while creating LOV at empno you can this query
    select empno,ename,deptno from emp
    and define return item for each column.
    You can populate LOV manually at New_instance_item or Key_next_item
    of item empno.

  • Idoc distribution with status of error records.

    Hi Gurus,
    my business requirement is i want to creat the Outbound Interface to distribute the data from sapserver to ESB server using the one userdefined function module, in this custom function module i written the logic to validate the input data if validation is file those error records are updated to one return table parameter and using the FM Master_Idoc_distribute for  create and distribute the sucessfull records. till its working fine (with status 30-ready to dispach, 01- idoc creatd is in we05 and i have done  the all configaration of message type creation, idoc type creation, port, partnerfrofil) ,
    but my requirement is , for example if in 10 records even one record is also error records then no need to distribute the idoc data to sending system,  just i want to send the idoc number with status error with error message.
    plese suggest me the appropriate procedure.
    Thanks & Regards,
    Sai Ram.

    Hi,
    in ur code ur filling the idoc data rcord, control record ryt ..before u append data to idoc data , u r also validating and u might be doing in loop for appening the idoc data.
    if there is any error in idoc then it won't distribute the data, it will be in error status only..u can only see the data in WE02. Then u can also change the data in WE02 and redistirbute it via BD87.
    if u have any conerns let me know
    Regards,
    Nagaraj

  • Picture on Jabber. Change the %%uid %% to other field thant userid

    Hi guys,
    When we use a UDS for contact search on jabber and the Photo retrieval is done from web server we use the variable %%uid%% to map the photo file with the userid.
    Could someone tell me if is posible map this variable with other field of UDS schema, p.e.. telephone number.
    I think is possible when use EDI change this uid map, but Im not sure if is posible with UDS.
    Thanks a lot,

    All,
    I had the same issue. 
    In my case, Blob Cache was enabled for the web application in which the image issue was occuring.
    I cleared blob cache, and after doing a hard refresh of my browser, the correct image was then displayed.
    To clear blob cache, do the following:
    Navigate to:   
    http://yourwebapp:port/yoursite/_layouts/objectcachesettings.aspx
    Select:  "Object Cache Flush"  and  "Force all servers in the farm to flush their object cache" check boxes
    Click the OK button
    Hope this helps.

  • Finding Idoc Number

    Hi,
       Can some one tell me how to identify an iDOC number for an sales order in CRM.
    Regards,
    Raj

    Hi Praveen,
    ITs very easy ....
    Use function module
    FM SREL_GET_NEXT_RELATIONS
    logic :
      L_R_OBJECT-OBJKEY = Likp-VBELN.
      L_R_OBJECT-OBJTYPE = LIKP.
      CALL FUNCTION 'SREL_GET_NEXT_RELATIONS'
           EXPORTING
                OBJECT         = L_R_OBJECT
            ROLETYPE       =
            RELATIONTYPE   =
            MAX_HOPS       = 1
          TABLES
            LINKS          =
               ROLES          = L_T_relROLES
       EXCEPTIONS
            INTERNAL_ERROR = 1
            NO_LOGSYS      = 2
            OTHERS         = 3
      DELETE L_T_RELROLES WHERE OBJKEY EQ VBELN AND OBJTYPE EQ OBJTYPE.
    After this in the L_T_RELROLES table u can find the idoc number in the field OBJKEY
    Please check this.... its works and let me know if u need any further help.
    ......Patil

  • FB03 alternate Trans or Report with Amount Field

    Hi,
    The user wants to see the "Amount" Field when he runs the Trans FB03.
    unfortunately its not available in dynamic selection.
    Is there any other SAP standard report or trans instead of FB03 where we can get the Amount field
    along with other Fields as in FB03.
    Or i may have to create one using SQ01 pls guide here as well i have never used this transaction before.
    Your help will be appreciated
    Regards

    thanks

  • Standard Report with IDOC Number and PR number

    Hi
    My client need the Standard report with the combination fields of "  Purchasing Number , Requirements tracking number in PR,
    IDOC number , IDOC Processing status. "
    (Our PR will generates through IDOC from other system via XI interface)

    Hi Nagendra,
    for   Purchasing Number , Requirements tracking number in PR you can use -ME5A
    Purchasing Number-EBAN-BANFN
    Tracking number goto- MELB.
    table name-EKPO
    for  IDOC number , IDOC Processing status -we09
    For IDOC number -EDID4-DOCNUM
    IDOC Processing status-EDIDC-STATUS
    Regards,
    Krishna.
    Edited by: kris_hna on Sep 8, 2011 1:14 PM
    Edited by: kris_hna on Sep 8, 2011 1:19 PM

Maybe you are looking for