Is Confirmation Message possible in case of File to IDOC

Hi Friends,
It’s a File (sender) to IDOC (receiver) interface. Once the IDOC is posted correctly in SAP, is it possible to generate a confirmation message back to sender file? 
I want to know if there is any way to inform the sender system that the transaction was successfully created.
Thanks in advance.
Regards,
Meghna.
Edited by: meghna swaraj on Mar 27, 2008 1:53 PM

Hi Friends,
It’s a FILE to IDOC interface. confirmation message back is needed to sender file, for that I followed the below link for Configuring the IDOC acknowledgment ALEAUD.
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f6d2d790-0201-0010-9382-b50b499b3fbe
As specified in point 7 and 8, used the transaction RBDSTATE & created the variant SAP_AUDIT_SEND for report RBDSTATE and scheduled a background job at receiver system.
Here the problem is, acknowledgment for ALEAUD getting scheduled twice, as a result two IDOC’s ALEAUD is generated.Instead it should get scheduled only once.
Can any one tell me why the job is getting scheduled twice.
Thanks in advance.
Regards,
Meghna.

Similar Messages

  • How to handle the control records in case of file to idoc scenario.

    Hi All,
    can you please clarify me how to handle the control records in case of file to idoc scenario.

    Hi,
    In File to Idoc scenario even though you selected apply control record values from payload and you are not getting those correct values which you have provided in the mapping.
    Also check the checkboxes Take sender from payload and Take receiver from payload along with the Apply control record values from payload checkbox
    Regards
    Seshagiri

  • Status of message in case of file-xi-idoc scenario

    In file2idoc scenario, i have 500 records, how to check the records reached or    not (except SXMB_MONI & IDX5)?

    palnati,
    RWB run time workbench.
    or
    http://<yourserver>:<port>/MessagingSystem
    Regards
    Sreeram.G.Reddy

  • Writting confirmation message??

    Hi all friends,
    I am developing one uploading software it is a total automatic process of uploading user only copy the files in predefind folder and click on upload button once and my software starts uploading one by one from queue and move the file one by one into another folder automatically after completion of uploading.After that in between uploading if user copy more files in that folder my software automatically takes those file for uploading not require to click on upload button again.Now I am facing problem on writing confirmation message of uploading of every file on my swing interface which my servlet writing on PrintStream after completion of writing of every file on destination.But my interafce not writing those confirmation messages on textArea but it is writing confirmation message of last file on Dos-Prompt coz iam running my application from Dos-prompt.I want to write every file's uploading confirmation message on textArea of my swing application.Can any one plz guide me how I can do that.Below r my codes:-
    swing application(Iam pasting those portion only):-
    ===================
    class Loglater implements Runnable {
    String msg;
    public Loglater(String s) { msg = s; };
    public void run() { log(msg); }
    public void log(String msg) {
    if (SwingUtilities.isEventDispatchThread()) {
    textArea.append(msg);
    textArea.append("\n");
    System.err.println(msg);
    else {
    SwingUtilities.invokeLater(new Loglater(msg));
    return;
    servlet:-
    ========
    import java.io.*;
    import java.util.Enumeration;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class RecvFileServlet extends HttpServlet {
    String s,str,str1,filename,path;
    public void init() throws ServletException {
    super.init();
    baseFile = new File(BASE_DIR);
    str="false";
    str1="false";
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException
    response.sendError(response.SC_NOT_ACCEPTABLE, "Must use POST method.");
    public void doPost(HttpServletRequest request,HttpServletResponse response)
    throws ServletException, IOException
    PrintStream pos = new PrintStream(response.getOutputStream());
    response.setContentType("text/plain");
    filename = request.getParameter("name");
    path = request.getParameter("path");
    File outfile = new File(filename);
    System.out.println("path value = " + ((path == null)?("null"):(path)));
    System.out.println("name value = " + ((filename == null)?("null"):(filename)));
    if (path != null && filename != null) {
    outfile = new File(path, filename);
    System.err.println("Final output file: " +
    outfile.getAbsolutePath());
    // create a DataInputStream to read from sender
    DataInputStream dis;
    dis = new DataInputStream(request.getInputStream());
    OutputStream os;
    // create file output stream to write the output file
    System.err.println("Using output file " + outfile);
    os = new BufferedOutputStream(new FileOutputStream(outfile));
    int cc;
    byte [] buf = new byte[1024];
    long tot = 0;
    // read from the input stream and write to the file
    try {
    for(cc = dis.read(buf, 0, 1024);cc > 0 ; cc = dis.read(buf, 0, 1024))
    os.write(buf, 0, cc);
    tot += cc;
    System.err.print("+" + cc + "(" + tot + ")");
    catch (IOException ie) {
    try { os.close(); } catch (Exception e2) { }
    pos.println("Problem : " + ie.getMessage());
    // done reading and writing, close the file output stream
    System.err.println("Write" + tot + " bytes.");
    os.close();
    // Send back a response message to the application
    pos.println("File" +" "+ filename+" "+"Upload Completed !");
    Regards
    Bikash

    OK, he must have just put that limit in because of some reports of looping, although when I tested it, it seemed to work.
    If you are happy with running javascripts, there is a java script to do the same thing in the Apple iTunes COM SDK which you can download from here:
    http://developer.apple.com/sdk/itunescomsdk.html
    I wouldn't bother unless you have some knowledge of how to run scripts from the cmd Window.
    EDIT added later, sorry I am going mad here, I was talking about another script. What you need to do is to delete your iTunes preference files which resets iTunes to the state it was in when you first installed it.
    May need to make hidden files visible
    My Documents>Tools>Folder Options>View
    Check Show hidden files and folders
    -- Quit iTunes
    -- Delete C:\Documents and Settings\<your username>\Application Data\Apple Computer\iTunes\iTunes.pref and/or iTunesPrefs.xml
    -- Delete C:\Documents and Settings\<your username>\Local Settings\Application Data\Apple Computer Inc\iTunes.pref and/or iTunesPrefs.xml
    For Vista the files are in:
    C:\Users\username\AppData\Local\Apple Computer\iTunes
    C:\Users\username\AppData\Roaming\Apple Computer\iTunes

  • Pass through scenario in SAP PI with no mapping for File to IDoc and Idoc to file scenarios

    Hi Experts,
    Can i have step by step process in SAP PI for pass through scenario with no mapping in case of file to Idoc and Idoc to file both cases please.
    What objects i can skip.
    My PI system is 7.3 dual stack.
    I have seen below blogs, still its confusing to me.
    When and how to create an scenario in SAP PI without mapping objects.
    Pass Through Scenario with no Mapping in PI 7.1
    Appreciate your help on this.
    Regards,
    Mohan.

    Hi Mohan
    In pass thru interface you don't need to create any ESR objects, only ID objects are required.
    Just Create a Receiver Determination and Receiver Agreement for your scenario (no need for Interface Det. and Sender Agreement).
    Specify the IDOC in the Sender Interface and namespace as urn:sap-com:document:sap:idoc:messages
    Or instead of creating objects manually, Run the wizard with Idoc name/namespace in sender/receiver interface
    Regards
    Osman

  • File- to -IDoc   scenario  EXPLINATION   in a  INTERVIEW

    Hi  ,
        What are the configurations done on XI, on R3, on XI's SLD, what is the protocol used for File, Content Conversion, Serialization , etc
    I know how to  do the step by step procedure... but plz let me know how can we explain  the same thing in an  interview..
    plz give a small explination about all  the above  steps..
    thanks
    Babu

    > Hi  ,

    hi babu,
    <i>> What are the configurations done on XI, on R3,</i>
    configuration on XI
    RFC destination to R3
    Loading metadata
    configuration on R3
    create a logical system
    RFC destination to XI
    create a Transaction Rfc pointing to XI RFC Destination
    <i>>>what is the protocol used for File</i>
    Here it depends on the where the file is located. If the file is in same Local network as XI is then NFS (Network File system is best suited)
    Otherwise FTP
    FTP protocol is used more frequently
    <i>>Content  Conversion</i>
    In case of File to IDoc and suppose if the file that need to be picked up is not in XML format then we will go for Sender File Content conversion, otherwise not
    <i>>>XI's SLD</i>
    You will create a technical system for
    R/3 system
    Third party system (file system)
    You need to create a business system for the R/3 Technical system
    regards
    Ramesh P

  • Is it possible to exclude .PDF file from Email Message body ?

    Hello Friends,
    I am sending e-mail from one program with attachment of EXCEL file.
    I am using following function SO_NEW_DOCUMENT_ATT_SEND_API1
    I am getting body of the message as a separate .PDF file.
    Even I want in real message body.
    <REMOVED BY MODERATOR>
    Regards,
    NVM
    Edited by: Alvaro Tejada Galindo on Dec 28, 2007 7:47 AM

    NB - the "data" that is returned by these classes is the data as defined in an adobe form - it doesn't return the content of non-form PDF documents.
    The PDF must be an interactive form ( although that doesn't restrict you to using the SAP process for creating the form is my understanding - but I could be wrong. )
    Edit - I was wrong! ONLY PDF documents that have been created by the ADS can have data extracted using these classes. So unless you are using Adobe interactive forms - then you will get no value from this functionality - and if you're using AIF then you're probably just use the standard UI element
    Edited by: Chris Paine on Oct 26, 2010 6:04 PM

  • Message Split -- File to Idoc Scenario  -  ( Without BPM )

    I have multiple records coming to XI in a File and I have to create Multiple Idocs to R/3.
    Due to Complexity of mapping I'm splitting Maaping step into 2 message Mappings.
    A-->B
    B-->C
    In the 2nd Mapping step  I'm doing message Split meaning for each Source record I'm creating multiple Idocs ( To be precise each record on the source becomes 4 idocs in the Target.
    2nd Mapping step is as follows
    Source 1..1
      Sourcerecord 0.. Unbounded
        field1  0..1
        field2  0..1
        filed3  0..1
    Target
    Message 1
        Idoc   1.. Unbounded
          Idoc Structure..
    Message 2
          Idoc   1.. Unbounded
    Message 3
          Idoc   1.. Unbounded
    Message 4
          Idoc   1.. Unbounded
    So based on some criteria each record of Source will be mapped to 4 Messages (  1 each under each Message )
    Is it possible to do this without BPM?. Iam sending all these Idocs to same R/3 System.
    Thanks for any help..RK

    Hi,
    See the blog
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change
    <i>Basicly we have 2 ways of handling such scenarios:
    - we can use a block step and send multiple IDOCs from our BPM
    - we can also do a little trick and send multiple IDOCs from the XI without a BPM
    The first approach is a standard XI approach. It involves the use of a BPM
    so the speed of this transfer many not be very good in case you'd like to send
    hundreds or thousands of IDOCs in just one call.
    The second approach uses a little trick that was mentioned several times
    on the XI Froum by a number of XI developers but is still not very clear to the XI newbies.
    It allows us to send multiple IDOCs without the use of a BPM. Most probably this will be your choice
    if you'd like to use such 1:N (IDOCs) scenarios effectively.</i>
    Please see the bwlow threads also..
    IDOC Splitting
    File To IDOC Thru XI
    Multi-Mappings in BPM (XI 3.0)
    Please let me know , your prob..is solcev or not..
    Regards
    Chilla..

  • FCC File-XI-IDOC: Pl confirm the validity of parameters I have specified

    Hi,
    I have the scenario File-XI-IDOC. I have almost completed the IR and ID config minus the FCC part.
    Need to do the FCC for reading the file which will enable me to map it to IDOC structure.
    I have the following TextFile structure ( Note: each field in the file is fixed length )
    Header( 1 record)
    Data_header  (1 record)
    |_ Data_Item (Multiple records)
    Trailer
    As expected each node has multiple fields in it like:
    Header = Source, Destination, Date
    Data_header = Company, Country
    Data_item = Office1 address, postcode1,
    Data_item = Office2 address, postcode2,
    Data_item = Office3 address, postcode3,
    Trailer = Checksum, Carriage_return_value
    I have keyed in the following values into the various FCC parameters.
    Appreciate if you could confirm if they are correct. (pl provide correct values, if needed)
    Recordset_name: (should I put any value heer???)
    Recordset Structure: Header,1,Data_header,1,Data_item,*,Trailer,1
    Key field: (should I put any value heer???)
    Header.fieldfixedlengths = 10,10,8
    Header.endseparator = 1310   ( Header record ends with a carriage return value 13 followed by line feed character 10)
    Header.fieldnames = Source, Destination, Date
    Header.Keyfieldvalue = 1  (Should I put anything here??)
    Header.keyfieldinstructure = u2018ignoreu2019
    Data_Header.fieldfixedlengths = 4,4
    Data_Header.endseparator = 1310   ( Data Header record ends with a carriage return value 13 followed by line feed character 10)
    Data_Header.fieldnames = Company, Country
    Data_Header.Keyfieldvalue = 2  (Should I put anything here??)
    Data_Header.keyfieldinstructure = u2018ignoreu2019
    Data_Item.fieldfixedlengths = 40,7
    Data_Item.endseparator = 1310   ( Data Item record ends with a carriage return value 13 followed by line feed character 10)
    Data_Item.fieldnames = Company address, postcode
    Data_Item.Keyfieldvalue = 3  (Should I put anything here??)
    Data_Item.keyfieldinstructure = u2018ignoreu2019
    Trailer.fieldfixedlengths = 2,2,1
    Trailer.endseparator = T   ( Trailer  record ends with a character T)
    Trailer.fieldnames = Checksum, Carriage_return_value, End_value
    Trailer.Keyfieldvalue = 4  (Should I put anything here??)
    Trailer.keyfieldinstructure = u2018ignoreu2019
    Appreciate if you could confirm if they are correct.
    Thanks and Regards
    Shirin

    Hi,
    I am still confused with what do I do with the CR/LF character pair in my incoming file.
    If possible could you let me know the value you would put in the fieldFixedlengths, endSeparator fields in all the recordsets.
    As you can see all my data lines end with a value 1310, so do I not need to put it in FCC to let it know that data line is ending.
    Appreciate your response.
    Regards
    Shirin
    Header Section
    Field                             Length          Notes
    Source                             [10]     
    Destination                    [10]     
    Message ID                  [10]     
    Created Timestamp      [8]     
    CR/LF character pair        [4]           (Carriage return character (13) followed be line feed character (10) )
    Data_Header Section
    Field                             Length          Notes
    Company                         [4]
    Country                           [4]
    CR/LF character pair         [4]           (Carriage return character (13) followed be line feed character (10) )
    Data_item Section     
    Field                             Length          Notes
    Address                          [40]
    Postcode                          [7]
    CR/LF character pair          [4]           (Carriage return character (13) followed be line feed character (10) )
    So my file's Header and Data_header and Data_item will look like
    STARSYSTEMSAP       1234567890200812121310
    GB03GB  1310
    101chamberlayne drive, Preston,UK,      E149PL 1310

  • I have been trying to import old family dads into iMovie. I receive the following message "None of the selected files or folders can be imported"

    I have been trying to import old family dvd's into iMovie. I receive the following message "None of the selected files or folders can be imported" Is there a problem with the format not being recognized by Imovie? Same home dvd's work on internal dvd player. Any Ideas?

    You need to convert the VOB files in the TS-Folder of the DVD back to DV which iMovie is designed to handle. For that you need mpegStreamclip:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    which is free, but you must also have the  Apple mpeg2 plugin :
    http://store.apple.com/us/product/D2187Z/A/quicktime-mpeg-2-playback-component-f or-mac-os-x
    (unless you are running Lion in which case see below))
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    For the benefit of others who may read this thread:
    Obviously the foregoing only applies to DVDs you have made yourself, or other home-made DVDs that have been given to you. It will NOT work on copy-protected commercial DVDs, which in any case would be illegal.
    And from the TOU of these forums:
    Keep within the Law
    No material may be submitted that is intended to promote or commit an illegal act.
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    If you are running Lion or later:
    From the MPEG Streamclip homepage
    The installer of the MPEG-2 Playback Component may refuse to install the component in Lion. Apple states the component is unnecessary in Lion onwards, however MPEG Streamclip still needs it. See this:
    http://support.apple.com/kb/HT3381
    To install the component in Lion, please download MPEG Streamclip 1.9.3b7 beta above; inside the disk image you will find the Utility MPEG2 Component Lion: use it to install the MPEG-2 Playback Component in Lion. The original installer's disk image (QuickTimeMPEG2.dmg) is required.
    The current versions of MPEG Streamclip cannot take advantage of the built-in MPEG-2 functionality of Lion. For MPEG-2 files you still need to install the QuickTime MPEG-2 Playback Component, which is not preinstalled in Lion. (The same applies to Mountain Lion even though that has it preinstalled.) You don't have to install QuickTime 7.

  • Ebook error message: "Fail to write destination file error"

    I am attempting to transfer ebooks (checked out via my library's ebook consortium) from Adobe Digital Editions to my Nook. I have done this in the past with no issues, but recently I have been getting the following error message: "Fail to write destination file error".
    I know the issue is NOT lack of space on my Nook (I cleared it of all info and still received the error message).

    I had this problem as well, and after doing some research via google (because I found NOTHING helpful in adobe forums), I found the problem....my Nook was full.  I had no idea this was even possible!  But, I borrow a lot of library books, and didn't realize that after they expire, they are still taking up space on my Nook.  Here's how to check: plug your Nook into your computer, go to file manager (right-click the start button in Windows), find the Nook drive and right click, choose properties.  This should show you a pie chart of used/free space on your Nook.  If this is the case, you need to remove some files from your Nook.  For me, I had to find the Digital Editions file and delete all the thumbnails and actual files for the library books.  If it's booked you've purchased, perhaps you need to archive some books.  Hope this helps!

  • HT203167 I get an error message "The iTunes Library.itl file is locked, on a locked disk, or you do not have write permission for this file."....

    Hi I have downloaded the latest iTune Software on Windows 7. I went to open the file and it won't execute, I small box keeps popping up with this message:-
    "The iTunes library.itl file is locked, on a locked disk, or you do not have write permission for this file".
    I have tried to change the permission but nothing happens. Can anyone please give help me or give me some advise how I can fix this problem.
    Please email me at [email protected]
    Thanking you kindly
    Marina Dunn

    I have tried both suggestions, unfortunately neither fixed this for me. Hoping there's another possible fix. Thanks in advance. 
    Empty/corrupt iTunes library after upgrade/crash and/or Repair security permissions for iTunes for Windows.

  • Message has error status at outbound side File To Idoc Scenario

    hi ,
    In my File to Idoc scenario , when i go to sxmb_moni , i found that its showing red flag at Outbound Status Tab and showing message "Message has error status at outbound side".
    When i go to IDX5 and and select my idoc and click on Transaction Id it shows "Password logon no longer possible - too many faile" .
    Please suggest what may be the problem ?
    Regards,
    Rohit

    1. First check the RFC destination name used in receiver Idoc adapter communication channel.
    2. As i said earlier, in sm59 transaction in XI gui, u can check same rfc destination under type 3. There check the logon credentials and the username.
    3. Now goto the R3 system GUI and check in su01 that same user is locked or not. If locked unlock it.
    4. And if u change the password of that user, then do the similar change in XI -> sm59 -> rfc destination logon credential
    Regards,
    Prateek

  • I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file

    I am running InDesign CS5.5 and trying to open an In Design File but getting an error message. " Cannot open the file "PDavidLCover.indd". Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file me be open in another application."Please help I really need to get this file open.

    Since you've shown us the folder contents it's a good bet it isn't in use (no lock file). And it doesn't look like the file is mis-named as there doesn't seem to be anything else there that would be the .indd file (but just in case, open it in TextEdit and paste the first few lines here so we can see what the file header says), so the most likely case is the file is damaged. Is that on a removable device of some sort?
    You can try the tool at Repair corrupt InDesign Adobe files on Mac OS X  or send me a link to the file by private message and I'll try the recovery tool I have for Windows.

  • BODI - Job Error " blank message,possibly due to insufficient memory

    Ending up with below error while executing a DI job. The job uses a file of size 37 MB as source. As the error looks something related to memory. I have tried splitting up the input file into and executed the job. The job completed successfully without any error.
    Could someone help me out to find any memory setting which needs to be investigated in the dataflow level to get a permanent solution for it.
    Expecting for help !!!
    (11.7) 03-04-11 08:18:06 (E) (21097:0001) RUN-050406: |Session SM_DM_ACCESS_LOG_DTL_F_JOB|Workflow SM_DM_ACCESS_LOG_DTL_F_WF|Dataflow SM_DM_ACCESS_LOG_DTL_F_DF
    Data flow <SM_DM_ACCESS_LOG_DTL_F_DF> received a bad system message. Message text from the child process is <blank message, possibly due to insufficient memory>. The process executing data flow <SM_DM_ACCESS_LOG_DTL_F_DF> has died abnormally. For NT,
    please check errorlog.txt. For HPUX, please check stack_trace.txt. Please notify Customer Support.
    (11.7) 03-04-11 08:18:06 (E) (21097:0001) RUN-050409: |Session SM_DM_ACCESS_LOG_DTL_F_JOB|Workflow SM_DM_ACCESS_LOG_DTL_F_WF
    The job process could not communicate with the data flow <SM_DM_ACCESS_LOG_DTL_F_DF> process. For details, see previously
    logged error <50406>.
    (11.7) 03-04-11 08:18:06 (E) (21097:0001) RUN-050409: |Session SM_DM_ACCESS_LOG_DTL_F_JOB|Workflow SM_DM_ACCESS_LOG_DTL_F_WF
    The job process could not communicate with the data flow <SM_DM_ACCESS_LOG_DTL_F_DF> process. For details, see previously
    logged error <50406>.

    Hi,
    loading a 37MB file shouldnt be a problem without splitting it. i´ve loaded GB size flatfiles without problems.
    Did you checked the error.txt as stated in the message? Whats in there.
    If you split the file and you can load it, you have enough space in your DB.
    Please check the memory utilization of your server during executing the job with one file. Maybe the Server is too busy...what would be strange with a 37MB file.
    Regards
    -Seb.

Maybe you are looking for

  • GPS problem - no location

    Hi! I have a problem with GPS on A1.  It doesn't find a location both in Google maps and in NavDroid, just search icon start blinking and can blinking for hours.  Reset didn't help. Clean sky, and sunny weather didn't help neither. Are familiar with

  • Select_list_from_query function null value

    How does one remove the null value when using the select_list_query function? So if I have the following: SELECT HTMLDB_ITEM.SELECT_LIST_FROM_QUERY(3,id,'SELECT id FROM emp') FROM emp It currently adds the extra null '%' value. Where would I plug in

  • Mouse flicker outside of browser

    Hello Whenever I hide the mouse pointer to replace it with custom made graphic, it causes curors to flicker rapdily outside of the browser window. When you type or move across URL bar, or try to scale the browser window by dragging its corner, the mo

  • Validate certificate using OCSP protocol.`

    Hi all, I'm doing an project using RSA SID 8000 that stores customer certificate, when customer using certificate stored in that Token for singing/encrypting... i must verify it whether it validated or not. I searching on Google and write my apps: My

  • Truncate

    I am using truncate to delete large amount of records.I have one parent table and two child table. When i use truncate first for child table works ok,but when i use for parent table it showing me error ORA-02266: unique/primary keys in table referenc