REPROCESSING AN IDOC WITH SAME NUMBER

hi ppl,
i hv sent an idoc to the inbound system with a  generated idoc number.
and now i had added some fields fo the same idoc and have to resend  it to the same inbound system
with the same IDOC NUMBER.
how can we RESEND AN IDOC with SAME IDOC NUMBER.
thanx very much...
regards,
RAVI.

>
ChakravarthiPonnam wrote:
> with the same IDOC NUMBER.
> how can we RESEND AN IDOC with SAME IDOC NUMBER.
Was that IDOC ended with status 53? If so then I donu2019t think if you could able to edit the segments and reprocess straight forward.
If that IDOC has been ended with Error then just edit this IDOC(WE02>Double click on segment then from menu "Data record>change") now the status has been change to 69. then just reprocess with BD87.
NOW, if your IDOC has ended with 53 and you want to edit this then a minute work-around we have to do. Like first change the IDOC status from 53 to 69 then do the same like for error one,
Cheers
Amit.

Similar Messages

  • Two idocs with same idoc number in idx5

    We are using an idoc to file scenario where idocs are bundled using bpm and posted to ftp. here the issue is we are getting two idocs with same idoc number in idx5. due to which the file in ftp is getting overwritten.
    Could anyone suggest me what to do in this regard.

    Hi,
    >>>check your sender system is sending same IDoc twice ?
    if you send the same IDOC twice they both get different numbers as IDOC number is taken from the IDOC num range
    unless you're able to send the same IDOC twice with the same IDOC num somehow
    Regards,
    Michal Krawczyk

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem.
    After trying a lot to do it myself, finally decided to post here..
    I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet.
    It is working fine with a single table. The problem now is that i am unable to do the same with 2 tables.
    Because both the tables have same number of columns & column names.
    Below are 2 tables with column names:
    Table-1 (MONTHLY_PART_1)
    Table-2 (MONTHLY_PART_2)
    SL_NO
    SL_NO
    COMP
    COMP
    DUE_DATE
    DUE_DATE
    U-1
    U-1
    U-2
    U-2
    U-4
    U-4
    U-20
    U-20
    U-25
    U-25
    Since both the tables have same column names, I'm getting the following error :
    Error 402 at line 103, column 4
      alias required in SELECT list of cursor to avoid duplicate column names.
    So How can i export the data to excel which has 2 tables with same number of columns & column names?
    Should i paste the code? Should i post this query in 'SQL and PL/SQL' Forum?
    Help me with this please.
    Thank You.

    You'll have to *alias* your columns, not prefix it with the table names:
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id, b.id, a.val1, b.val1, a.val2, b.val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
      for rData in cData loop
    ERROR at line 18:
    ORA-06550: line 18, column 3:
    PLS-00402: alias required in SELECT list of cursor to avoid duplicate column names
    ORA-06550: line 18, column 3:
    PL/SQL: Statement ignored
    $[CHE_TEST@asterix1_impl] r
      1  declare
      2    cursor cData is
      3      with data as (
      4        select 1 id, 'test1' val1, 'a' val2 from dual
      5        union all
      6        select 1 id, '1test' val1, 'b' val2 from dual
      7        union all
      8        select 2 id, 'test2' val1, 'a' val2 from dual
      9        union all
    10        select 2 id, '2test' val1, 'b' val2 from dual
    11      )
    12      select a.id a_id, b.id b_id, a.val1 a_val1, b.val1 b_val1, a.val2 a_val2, b.val2 b_val2
    13      from data a, data b
    14      where a.id = b.id
    15      and a.val2 = 'a'
    16      and b.val2 = 'b';
    17  begin
    18    for rData in cData loop
    19      null;
    20    end loop;
    21* end;
    PL/SQL procedure successfully completed.
    cheers

  • I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    I'm moving from a iPhone 4S to an iphone 5s but and I'm changing SIM card with same number but I want to make sure that all my pictures go onto my new phone how can I do that?

    Hello Bethanygrace_m7,
    Thank you for contacting Apple Support Communities. You can take a look at this article about transferring content from your old iPhone to a new one:
    Transfer content from an iPhone, iPad, or iPod touch to a new device
    http://support.apple.com/kb/HT2109
    Here is another thread from the Communities about migrating data from an old iPhone to a new one:
    Migrating data from old to new iPhone?: Apple Support Communities
    https://discussions.apple.com/thread/2038778
    Regards,
    Jeff D.

  • More Table Blocks in 11g with same number of rows as in 9i

    I was using SQL performance analyzer to compare performance difference between 9i and 11g databases.
    For this purpose I generated a trace file in 9i database and used it to build STS in 11g database.
    After runing two trials and comparison the report showed performance regression (comparing "buffer gets") while using following SQL statement
    *"SELECT * FROM EMP";*
    There were total 14 rows in emp table in both databases( i.e 9i and 11g)
    There was no plan change for above SQL statement in 11g database but still there was performance regression in 11g.
    After querying dba_tables view for number of blocks in emp table on both sides i found that EMP table in 9i database had 1 block where as in 11g emp table had 5 blocks (Even after using alter table emp move;)
    I am unable to understand why emp table has more number of blocks in 11g with same number of rows as in 9i emp table?

    user8916506 wrote:
    Below query was executed in 9i database.
    SQL> select extent_management,initial_extent,allocation_type from dba_tablespaces where tablespace_name='SYSTEM';
    EXTENT_MAN INITIAL_EXTENT ALLOCATIO
    LOCAL 65536 SYSTEM
    Results shows that SYSTEM tablespace in 9i database is locally managed.
    Where as results of below query from 11g database is indicating that users tablespace in 11g is also locally managed.
    SQL> select extent_management,initial_extent,allocation_type from dba_tablespaces where tablespace_name='USERS';
    EXTENT_MAN INITIAL_EXTENT ALLOCATIO
    LOCAL 65536 SYSTEMGood to see that you also picked up the allocation_type at the same time.
    So you have shown that the discrepancy between 9i and 11g isn't down to the difference in extent management.
    Are there any other differences between the tablespaces when you compare 9i system with non-system, and 9i system with 11g non-system ? (Hint - we have an anomaly with space allocation.)
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Author: <b><em>Oracle Core</em></b>

  • Create Equipment with same Number rang at Diff Equipment Catagory

    Hallo Guys,
    client bymistake created some equipments which are actually PRT with catagory M ( Machine)
    now they made deletion indicator to that and inactive the part and now want to create same machine as a PRT with same number range interval
    as that of made at machine, but as per std system is not allowing to create duplicate records.
    How to achive this ?
    Regards,
    Rip

    If no Equipments were created after the Deleted Equipments then you may have an option.
    Tcode OIEN
    Go to Number range interval, Then the Current number  can be changed as under. Reduce this Current number by those many equipments. Then new equipments will have the same numbers of the deleted equipments
    You should do it in trial servers and if suits to you then you can decide to go ahead. You should be prepared to have filters in Selection-screes to avoid the DLFL INAC equipments appear in the reports
    Jogeswara Rao K

  • Idocs processing time between 2 idocs with same material

    Hi Gurus
    we are getting 2 idocs from other system with same material, first idoc is process successfully, second one is not processing and error throughing - material is currently processing by user WF BATCH. can we set time gap between 2 idocs for processing, where we need to do this?
    Thanks in Advance
    Ramki

    Hi Ramki,
    There is another option which you can consider with the help of an ABAPPER. Check if you can use the concept of enqueing.
    Ex: When the idoc comes in the SAP system and updates the material quantity in the sales order, it has to get in to the VA02 in order to do this. Now when another idoc is sent along with this simulataneously to update something in the same order, it fails as the order is open by the first idoc.
    In this case we write a check in the posting program and check if the order (Order number we get from the idoc) is open or enqued.
    If it is enqued then there is a delay by calling an event. This event triggers a job which has a certain delay inserted in it before running.
    Hope this helps..
    FK

  • PR transfer from R/3 to SRM with same number

    We are transfering R/3 PR's to EBP. We want keep Number of Shopping card same as PR number in R/3
    It is always picks up Internal Number range for the shopping card in SRM.
    We have only kept external number assignment for shopping cart transaction type, then in SLG1 it gives error "Internal number range is missing for transaction type. Inform syst. admin"
    Any other method to keep Number of Shopping card same as PR number in R/3?
    Regards,
    NNK
    Edited by: Nitin Khajindar on Apr 23, 2008 5:53 PM

    Hi,
    We are using the SRM 5.0 with PPS ( Procurement for public sector) industry specific component. We transfer the PR's from ECC to SRM and we have same number in the both the systems.
    PR number in ECC is the SRM shopping cart number may be this is public sector sector specific functinality but this is available in SRM 5.0
    Send me your information, I can send you my configuration print screens to you.
    Thank you
    Sreedhar Vetcha

  • Multiple contacts with same number?

    Hello,
    I have multiple contacts in my address book with the same number, for instance "Mom" or "Grandma" or "Mrs. Smith."  Is there a way to ensure that my iPhone 4 chooses the assigned photo and name to each contact? 
    I have all three under "All Contacts" but also have only one under a sub-group that is my primary contact group.  Perhaps my problem is syncing via MobileMe? Doing that means I have All Contacts as well as my sub-group on the iPhone; that may be confusing it?
    Thanks for any help!

    If you have multiple contacts have the same number the iPhone makes a random choice. There is no way to force one over another.

  • Second sim with same number

    I use my phone a lot for work, and want to leave it permanently in the van, can I have a second sim on the same number ?

    Orange used to offer exactly this with their "Single Number" facility, but it was never opened up to EE users, and finally closed down at the back end of last year. For what it's worth, the only other network to have ever offered similar was Vodafone with "multi-SIM" but that never let you use data from the second SIM and closed many years ago. As others have suggested, a GSM-divert is now the closest you'll get. You could also use EE "pocket landline" with the "one to many" option if you want multiple phones to ring with incoming calls at the same time. Details at http://ee.co.uk/business/small/connecting-your-business/pocket-landline

  • Retiming with same number of frames

    Hi (couldn't find this) - If I want to convert my source video to a new frame rate -- but keep exactly the same number of frames -- what is the best way to do that?
    Do I just set my desired frame rate in the Encoder tab and then set duration to 100% in the Frame controls? Does that give me the just the original frames in the source, but at a different speed?
    Thanks, PH

    OK -- I figured it out!

  • Question on linkage of idoc with document number created in SAP R/3

    Hi all,
    I have a query related to IDOC.
    When inbound IDOC is posted into SAP R/3 it creates Material document number or billing document number is generated in SAP R/3.
    Question: <b>Do we have interface monitor in SAP R/3 Where I can see the linkage of Idoc number with the document number created in SAP R/3.</b>
    Need your help on this any suggestion will be greatly appreciated.
    Thanks & Regards
    Prabhat

    I'm not sure if this is what you are asking for, but you can look at the IDOC in WE02/WE05 and look at the header segments to get the document number.

  • Billing output to IDoc & reprocess the IDoc in same sys. to post FI entry

    I have a requirement to send the billing output to IDoc, read the same IDoc to post a FI entry but to another company code. Please suggest how can this be acheived, and is there any other alternative to acheive the above requirement.
    Thanks in advance.

    Hi Naga,
    I have to select the records in JDBC based on different conditions each time. For example I have to select based on company code '1000' and Employee claasification 'E1' and date range. After I post these records in SAP again I want to select other records for some other company code '2000' and different business area and different dates. Basically I want to extract data multiple times based on different conditions.
    -->
    Such requirements cant be handle through select query of the sender...but you can handle this in the message mapping area.....you can fire a select query in the database to pick up records in a batch of 10K (do not keep any condition on this except for sorting). After the records come into PI you can send the message to your target based on the unique combination of "Company code+ Employee clasification + date range" handling this in the message mapping.
    Another question is in the JDBC to IDOC scenario since the sender adapter is JDBC and the sender adapter polls depending on the duration of time ( say 60 secs ) in the adapter once after I extract the data based on a condition how do I control in such a way that the same data is not extracted again.
    You can use the N--> C logic
    The data records that you pick have a corresponding control table i assume. There should be a field STATUS where the initial status of record should be N.
    After you pick the records this status should be made C so that only those records present in the database with status = N are picked up.
    Mention the condition Status = N in the select query.
    Thanks
    Dhwani

  • Mapping every row to an idoc with same header

    hi,
    i have record:
    recordset 1..1
    Header 1..1
    Row      0..unbounded
    i want to map it to :
    idoc 0...unbounded
    Header 1..1
    Row     1..1
    i want every row in source will create an idoc. every idoc will have same header but different row.
    can u please explain how do i do that?
    thanks,
    Tomer

    Hi,
    Map row node with IDOC node. It will create an IDOC per row.
    Now map header node with header node. Between the header nodes you have to create a User defined function commonlly named CopyPerValue:
    public Void copyPerValue (String[] a, String []b, ResultList result, Container container){
    for (int i=0; i<a.length; i++){
          result.addValue(b[0]);
    You have to map row with a. And header with b.
    Regards,
    Carlos

  • Multiple people with same number???

    OK i have another problem that i need some sort of system for and I'm looking for suggestions from all of you. What do you guys do for multiple people with the same phone #. For example i have contact info for my aunt, uncle and cousins that all have the same home #. I have multi entry's because i want their birthday info in cal plus their cell phones. But I hate the fact that i have to scroll Thu 4 people with one # and I'm not sure how it picks who to display when someone from the home # calls me. I guess it isn't a huge problem but thought i would throw it out to see what others do. Feedback....
    CC

    I have a couple of contacts that share a phone number. Pretty much the same reasons as yours. When I get a call from the shared number, then it will say "John Doe or Mary Doe calling" Or some thing like that.
    I don't think there is any way around scrolling through each contact since they all have distinct info and are seen as separate

Maybe you are looking for