Esb file to file problem

Hello
I have a problem I want to transform a CSV file to another file with extension .dat and separated by |, I made an adaptor for reading the original file, a routing service for processing the and an adaptor to write the output file, when running the proccess, the output file only brings a record when the original file is 10, someone can help me, thanks.
My original file is like this
aaaaaa,xxxxxxxx,ssssssssss,20/02/2008
bbbb,xxxxxxxx,ssssssssss,12/12/2008
v,xxxxxxxx,ssssssssss,12/12/2008
aeeeeeaaaaa,xxxxxxxx,ssssssssss,12/12/2008
ssssss,xxxxxxxx,ssssssssss,12/12/2008
My output file have this format
20/02/2008,aaaaaaa,sssssssss,xxxxxxxxx
It's a simple transformation, in fact the transformation works fine but only write the first record,
Thank you

Hi
I did the two actions you recommend me, but still have the problem, in the read adapter file change records delimited by end of file, and transfer the 2 register but only one with the new format, the transformation looks like this
aaaaaa|xxxxxxxx|ssssssssss|20/02/2008
vvvvvvv,xxxxxxxx,ssssssssss,20/02/2008
Thank you

Similar Messages

  • ESB file to file scenerio

    hi,
    I have made a small sample project file 2 file(read-->RS-->write) using file adapters which read and write simple text file,problem is that if the outbound service(write service)is down instead of rollback the file it deleted the file from source(read folder) can anybody tell me why is it so?
    regards,
    Alok

    Hello Eric,
    Hmm, I will try out the scenario, but here is something I would like to share.
    Here is scenario I have played with:
    AQ -> ESB(read) --> ROUTING RULE (SYNC) --> SOAP CALL(2)
    It makes entire thing synchronous as well, but if out-bound soap call fails, thing doesn't get rolled back to AQ, but ESB put that message in Rejected messages after trying 3 (or configuraable) times.
    - Now, I agree that we can change ESB somehow AQ transactional and do sync read and then message hopefully should be rolled back to AQ,
    - but if it is FILE adater, then there it doesn't participate in transaction, and ESB will behave the default way.
    I will try this scenario, and let you know if it matches with what I said.
    Regards,
    Chintan

  • File data copying problem

    Hi,
    Im trying to copy the contents fron one file(say abc.txt) to another file(say def.txt)....Whats wrong in the below code...
    package com.home.practise.streams;
    import java.io.BufferedReader;
    import java.io.BufferedWriter;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.FileWriter;
    import java.io.IOException;
    public class CopyOneFileToAnotherFile {
         CopyOneFileToAnotherFile() throws IOException {
              File file = new File("C:\\Documents and Settings\\Harishwar\\Desktop\\abc.txt");
              try {
                   BufferedReader br = new BufferedReader(new FileReader(file));
                   FileWriter fw = new FileWriter(new File("C:\\Documents and Settings\\Harishwar\\Desktop\\def.txt"));
                   BufferedWriter bw = new BufferedWriter(fw);
                   int ch;
                   while((ch = br.read()) != -1){
                        bw.write((char)ch);
                        System.out.print((char)ch);
              } catch (FileNotFoundException e) {
                   // TODO Auto-generated catch block
                   e.printStackTrace();
         public static void main(String[] args) throws IOException {
              new CopyOneFileToAnotherFile();
    }Im not getting the output inside the file "def.txt"...why so?? what might be the problem in the above code??

    Thanks for your reply, dudes...Now I got the output..But i had one small doubt..Why these java soft people didnt write flush() method in predefined streams or readers or writers( say BufferedWriter or some other output stream).Because they're buffered. If they were auto-flushed they wouldn't be buffered.
    Why they gave us a choice to write this flush() expilictly....?So that you can control when the buffer is flushed. For performance and transactional reasons.
    Why wouldn't they have written in these predefined classes(say BufferedWriter) itself?? Because then they wouldn't be buffered. So there wouldn't be any point in them existing, or at least in having those names.
    And another small doubt, when we write explicitly bw.close(), does this mean we are saying GC to collect this variable?No, it means flush and close the stream and release the associated file handle.
    Can't GC collect this variable after complete execution of this program?Of course, but it's a file writer with a local buffer, so you should close it yourself, explicitly, when you have finished writing to it, so that you know that you've flushed and closed it, so that your application doesn't proceed on a false assumption, for example so you don't print any misleading messages saying that you've written all the data when you haven't.
    If you don't want local buffering, don't use it. But then your tactic of reading and writing one character at a time is suddenly going to run several orders of magnitude more slowly. And it's still correct discipline to dispose of external resources immediately you've finished with them.

  • File Ext Openning problem!

    I have searched all over my mac high and low and can not figure out out to make the default file ext. open in the correct program example .doc, .eps, .psd, .pdf, .indd I can only right click and have it open in program if I double click all files open in preview. This problem occurred after I installed snow leopard, please help me

    Select a file, choose File -> Get Info, set the app you want in the Open With pop-up and click the Change All button.

  • File (Directory) object problem?

    Hi there. My problem is as follows. The method below is supposed to access an pre-existing directory with five previously saved test files, read in those files as account objects, add the objects to an ArrayList, then return the ArrayList. It seems to be able to create a file object representing the directory alright but it then insists that there are no files in the directory! Have I fouled up or is there some subtlety that I'm unware of? I was wondering if the fact that the account files have a .bac extenstion had something to do with it.
    Here's the method, with the two lines of code where I think the problem might lie in bold print:
    public ArrayList retrieveAccounts()throws IOException{
    ArrayList accounts = new ArrayList();
    File accDir = new File("C:" + File.separator + "accounts"); //creates a directory object
    //The following S.o.p statements are for test and maintenance purposes rather than user feedback
    System.out.println("Directory " + accDir.getCanonicalPath() + " opened");
    System.out.println("Confirm Accounts directory exists: " + accDir.exists());
    System.out.println("Directory: " + accDir.isDirectory());
    String [] accFiles = accDir.list(); //gets a list of files in the directory and saves it as a String array
    System.out.println("Number of files in directory: " + accDir.length());
    while(i < accDir.length()){
    filename = accFiles;
    try{
    //open layered input Streams to access the next account file in line
    ObjectInputStream in = new ObjectInputStream(new FileInputStream("C:"+ File.separator + "accounts" + File.separator + filename));
    account = (Account)in.readObject();
    accounts.add(account);
    in.close(); //closes Streams for that particular file
    }catch(IOException e){System.out.println("Filing error as follows: " + e);
                }catch(ClassNotFoundException e){System.out.println("Class not Found. Details: " + e); }
    filename = null; //frees up reference for next file
    i++;//counter increments by one
    return accounts;

    This is what I was trying to do minus the comments and maintence and test code:
    public ArrayList retrieveAccounts()throws IOException{
    ArrayList accounts = new ArrayList();
    File accDir = new File("C:" + File.separator + "accounts");
    String [] accFiles = accDir.list();
    while(i < accDir.length()){
    filename = accFiles;
    try{
    ObjectInputStream in = new ObjectInputStream(new FileInputStream("C:"+ File.separator + "accounts" + File.separator + filename));
    account = (Account)in.readObject();
    accounts.add(account);
    in.close();
    }catch(IOException e){System.out.println("Filing error as follows: " + e);
    }catch(ClassNotFoundException e){System.out.println("Class not Found. Details: " + e); }
    filename = null;
    i++;
    return accounts;
    By the way, your the first Java programmer that I've met that doesn't like comments! :)
    NOTE: Think I may have spotted where I went wrong in my code.
    filename = accFiles;
    Forgot to point it at the specific element of the array, like so:
    filename = accFiles[i];
    Thanks for your help!

  • Time machine: An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.

    Time machine backups are failing. I've followed the instructions I found on the Time Machine troubleshooting page (http://pondini.org/TM/Troubleshooting.html) but have gotten to where I don't know what to do next.
    Sequence of events:
    The main error message is always:
    An error occurred while copying files. The problem could be temporary. If the problem persists, use Disk Utility to repair your backup disk.
    Yesterday, I opened Disk Utility and verified the disk. Got this error:
    Error: This disk needs to be repaired using the Recovery HD. Restart your computer, holding down the Command key and the R key until you see the Apple logo. When the OS X Utilities window appears, choose Disk Utility.
    I ran Disk Utility and repaired the hard drive. Then I manually started the backup before going to bed, figuring it was going to take a long time to run. When I got up this morning, the backup had failed with the same "could be temporary" error. I checked the log, which says:
    Starting manual backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:17
    Error: (5) setxattr for key:com.apple.backupd.SnapshotState path:/Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/ABB10CF2-F041-4DE5-B6AE-3C228B59ADCC size:2
    Deep event scan at path:/ reason:must scan subdirs|new event db|
    Finished scan
    Found 145601 files (11.88 GB) needing backup
    16.1 GB required (including padding), 620.77 GB available
    Copied Zero KB of 11.88 GB, 0 of 145601 items
    Copied 0 files (Zero KB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    Ejected Time Machine disk image: /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle
    Ejected Time Machine network volume.
    Starting automatic backup
    Attempting to mount network destination URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Mounted network destination at mount point: /Volumes/Tery Griffin's Time Capsule using URL: afp://Tery%20Griffin;[email protected]/Tery%20Griffin's%20Time%20Ca psule
    Disk image /Volumes/Tery Griffin's Time Capsule/Tery Griffin’s Computer (44).sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    Event store UUIDs don't match for volume: Macintosh HD
    Error: (-36) Applying backup protections to /Volumes/Time Machine Backups/Backups.backupdb/Tery Griffin’s Computer (44)/2014-03-05-201742.inProgress/9F8E7957-9C50-49C3-8314-880E5203E3D9
    Error: (5) setxattr for key:com.apple.backupd.SnapshotStartDate path:/Volumes/Time Machine Backups/
    Does anyone know what the problem is here and what I should do?
    Thanks,
    Tery

    You have repaired your boot drive (which is good) but have you repaired your time machine drive?  I don't own a Time Capsule so I don't know if disk utility can operate on it.  If it can, you should repair it as well.  You may need to erase it and start a new backup.  That happens to time machine volumes from time to time and is why people who are serious about their data never rely on a single source of backup.

  • A problem while implementing a file to file senario

    hi all :
         There is some problem while implement a file to file senario. the file couldn't be sent or recieved.
          and as I try to check Check the Sender File Adapter Status  via
         Runtime Workbench -> Component Monitoring -> Communication Channel Monitoring ,
         It is found that Adapter Engine has error status with red light.  Is it why the file couldn't be sent?
        Could you please tell me how to make Adapter Engine  available?
        Thank you very much!!!

    Hi Sony
    Error getting JPR configuration from SLD. Exception: No entity of class SAP_BusinessSystem for EC1.SystemHome.cnbjw3501 found
    No access to get JPR configuration
    Along with what experts suggested
    What is the type of Business system is this. Standalone Java?
    JPR can have problem if you have a business system thats not ABAP/Java type if this system is not having a SAP TS in landscape then create Java type.
    Thanks
    Gaurav

  • File to File scenario using Transport Protocol FTP  Problem

    Hi,
    my scenario is a file to file scenario using Transport Protocol FTP
    there are 3 systems involved
    a. computer 1 ( My system-source)
    b. computer 2 (XI server)
    c. computer 3 (Target system)
    I want XI to pick file from computer 1 and post it to computer 3
    I am logging on to XI server from computer 1(thro SAP GUI),
    <u><b>Sender communication  channel :</b></u>
    Transport protocol:FTP
    Messsage protocol: file
    <u><b>In FTP connection Parameters:</b></u>
    Server: computer 1 IP address
    port:21
    User name and PW---> I have given computer 1 Username and password.
    Connection mode: permanently
    Transfer mode: Binary
    Folder: C:\ftproot\output
    filename : given
    <u><b>In Receiver Communication Channel</b></u>
    Transport protocol:FTP
    Message protocol: file
    <u><b>In FTP connection Parameters:</b></u>
    Server: computer 3 IP address
    port:21
    User name and PW---> I have given computer 3 Username and password.
    Connection mode: permanently
    Transfer mode: Binary
    Put File: Use Temporary File
    Folder:
    eccserver\saploc\tmp
    filename scheme: given
    When I activate the scenario file is not getting picked from the source
    In Adapter Framework: Message says up and running No message processing now
    How to check FTP server is up and running on computer 1 (source system)and Computer 2 (XI server)?
    What could be the problem ?
    Thanks
    dushanth

    Hi
    Consider that I dont have FTP installed on my computer. According to this blog
    /people/shabarish.vijayakumar/blog/2006/08/01/along-came-a-file-adapter-mr-ftp-and-rest-of-the-gang
    I have configured.
    In sender comm channel I have given Ipaddress of computer 1 (which has a file to be picked)
    In Receiver Comm channel I have given IP address of computer 3 (in which file to be posted)
    and computer 2 is the XI server
    Computer 1 has FTP installed
    1. XI server should have FTP installed or not ? IF yes is it FTP client  or FTP server   or Guild FTP (according to the blog is enough)
    2. Computer 3 should have FTP installed or not ?
    Please help me I am really confused.
    Thanks
    dushanth

  • FILE-XI-FILE problem

    Dear friends,
    Hope I can solve my problem through one of you.
    I am new to XI. 
    As suggested by many experts, I started FILE-XI-FILE.
    I am able to complete total steps given by blog
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    . But I am not able to see the output file. Not able to forward single step in debugging this problem. Is there any way to start trouble shoot this problem? This is my first try after fresh installation. Is it because of any installation error ? OR do I need to do any settings after installation
    Looking forward for your help.
    Thanks
    John K

    Hi,
    btw, are you using File Content Conversion ? If so problem may be in content conversion, This you can analyse step 2 mentioned here.
    1. Check out the Adapter Monitoring-: i,e Runtime Workbench (RWB)-->Adapter Monitoring->Communication Channel Monitoring.. Look for the Receiver File Channel. If it is green and status shows message processed then ,if you did not get the output file, then there may be a problem with channel configuration or access permission etc. For this you can check Visual Admin..error logs.
    2. If there is no error in step1 , then go to RWB>Message Monitoring>Message Display Tool and check for the message..It will help you to analyse the errors.
    3. Also check the status of SXMB_MONI .
    Rgds,
    Moorthy

  • Problems opening files via 'File - Open/cmd-O' in Photoshop CC 2014 after Yosemite installation

    I upgraded to Yosemite on Friday and shortly after, I noticed that when attempting to open multiple files, after I've opened a few files (it's not a set amount, sometimes happens on the 3rd file, sometimes on the 6th etc) I get the error message 'could not complete your request because of a program error' - the only way out of this is to quit Photoshop and restart which is obviously very frustrating and time consuming!
    I spent some time on live chat to Adobe yesterday and we deleted settings, preferences, uninstalled, reinstalled, moved Colour settings folder to desktop but nothing worked. I have a call scheduled with Adobe to go through lots more tests at the end of the week as I've been advised this isn't a global issue but I thought I'd post on here in the meantime to see if anybody had any thoughts as to what could be causing this. After speaking to Adobe, I have since realised that even after getting this error message, I can still drag files to the PS icon and open them that way - I have just opened 20 files this way with no error message, it's just when I used the File-open/cmd O method (my usual way of working) to open files that is happens.
    It was all fine before installing Yosemite and I am on the very latest CC 2014 version (this problem does not happen in the CC version incidentally, only the 2014 version - so I'm using that as a workaround for now).
    I also had issues opening files in Illustrator on Friday, I was unable to open files using file - open/cmd O (nothing happened after I clicked it, but I got no error message), again, I had to drag the file to the AI icon in the dock to open it but that seems to be ok now even though I haven't changed anything with the Illustrator application - just thought I'd mention it incase it was related!
    If anybody can help, I would really appreciate it. Thanks in advance!

    Glad it's not just me!
    Interestingly, when I spoke with Apple, I tried it in a new user account and the problem went away. Apple said to speak to Adobe which I have done and after deleting settings/prefs again the problem remained. Adobe say as it's fine in a new account then it's an Apple issue not Adobe.
    I did find a workaround for now though, when using file - open, set it to list view instead of column view - this fixed my problem but sadly I'm used to working in column view so it's not ideal!
    I also got the same error message when trying to replace a set of brushes yesterday too. I need to go back to Apple now but just need to schedule some time to sit and troubleshoot!

  • Can anyone help me?Time Machine couldn't complete the backup to...  An error occurred while copying files. The problem may be temporary. If the problem persists, use Disk Utility to repair your backup disk.  What is the problem?  I've made no changes.

    I recently starting receiving the error message "Time Machine couldn't complete the backup to... An erro occurred while copying files.  The problem may be temporary.  If the problem persists, use Disk Utility to repair your backup disk.  I have had no problems backing up my MacBook Pro 2011 to my Western Digital My Book Live through a Linksys EA4500 router until recently.  I've made no major changes.  I've ran a diagnosis on my back up drive with no problems.  The Time Machine back up starts, but about after about 5 to 10 minutes I get the error message.  I can see the shared drive in Finder.  The light on the drive blinks while it starts the back up.  I can see the shared folders on the networked drive.  The backup process starts but for some reason it just stops.  Can anyone help?

    You can't repair a network volume in Disk Utility.
    Backing up to a third-party NAS with Time Machine is risky, and unacceptably risky if it's your only backup. I know this isn't the answer you want, and I also know that the manufacturer says the device will work with Time Machine, and that it usually seems to work. Except when you try to restore, and find that you can't.
    If you want network backup with Time Machine, use as the destination either an Apple Time Capsule or an external hard drive connected to another Mac or to an 802.11ac AirPort base station. Only the 802.11ac base stations support Time Machine, not any older model.
    If you're determined to keep using the NAS for backup, your only recourse for any problems that result is to the manufacturer (which will blame Apple.)

  • I just got a new Mac Mini, and now when I try to import photos into Lightroom, iPhoto try to load them first, then Lightroom can't find the files.  Big problem.  What to do?

    I just got a new Mac Mini, and now when I try to import photos into Lightroom, iPhoto ties to load them first, then Lightroom can't find the files.  Big problem.  What to do?

    Simple:
    File -> Export to get your photos out of the iPhoto Library. In the Export dialogue you can set the kind to Original and you'll get back exactly what you put in.
    Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.
    Once exported, you can then trash the iPhoto Library - just drag it from the Pictures Folder to the trash and empty it.
    After that, if you're entirely neurotic about it, just put the iPhoto app in the trash and empty it.
    Regards
    TD

  • Facing a problem in File to File (Passthrough Interface)

    Hi All
    I have File to File Scenario which is a pass through (ie No mapping involved)
    I need to pick a PGP file and need to place it in the PGP server.
    When  I place the pgp file directly in the PGP server ... pgp server is able to decrypt the file.
    However when ever SAPPI places the file ... it is unable to decrypt the file.
    I made sure that the transfer mode is Binary and i am still facing the problem.
    Can anyone please help me on  this.
    Thanks,
    Siva

    Please use the "Use Temporary File" option for the "Put File" parameter on the receiver communication channel. Please check if the PGP will decrypt it correctly after that, since the file will be first written, then moved (allowing the PGP to pick the file).
    For more information, please refer to the help page below.
    http://help.sap.com/saphelp_nwpi711/helpdata/en/44/69d7cfa4b633eae10000000a1553f6/frameset.htm

  • How to debug file content conversion problems?

    Hi,
    I'm trying to debug a file content conversion problem.  I'm mapping a few nodes in an IDOC to a file of fixed length fields.  I'm using the "<Node A>.fieldFixedLengths", "<Node B>.fieldFixedLengths", "<Node C>.fieldFixedLengths", etc. parameters to specify the fixed length records.
    However, a certain node (for e.g. Node B) is causing a problem and if it is present in the IDOC, the output file does not get created.  Upon checking the XI monitor, I notice that the file gets mapped correctly and thus the problem lies when the file adapter does the file content conversion.  How do I debug this because there is no descriptive error in the XI log?  If this node is not present, the file gets generated fine.
    Thanks,
    Basant Gupta

    Hi,
    If your SXMB_MONI shows, success status, then go to RWB->Message Monitoring->Message display tool and then check Audit log for the analysis,
    So it wil help you debug the situation.
    If there is no error, then check RWB->Component Monitoring->Adapter Monitoring for you file communciation channel..
    /people/michal.krawczyk2/blog/2005/01/02/simple-adapter-and-message-monitoring
    Regards,
    Moorthy

  • File Adapter - Sender Problem

    Hi,
    While implementing a file to file interface I am facing problem in Integration Engine. Data is not passing to Integration engine, so it is not able to reach receiver.
    Receiver file adapter is working fine for other scenarion like IDoc to File.
    File Adapter status is Green in RWB.
    I am not able to see message in SXMB_MONI
    The error details in Adapter Engine is bellow
    Audit Log for Message: 410424a0-c496-11da-aa48-00111120e6db
    Time Stamp Status Description
    2006-04-05 16:51:37 Success Channel file2file_in_channel: Send binary file  "D:\usr\sap\QN7\DVEBMGS00\work\XiPattern2\testfile2in.xml". Size 209 with QoS EO
    2006-04-05 16:51:37 Success Application attempting to send an XI message asynchronously using connection AFW.
    2006-04-05 16:51:37 Success Trying to put the message into the send queue.
    2006-04-05 16:51:37 Success Message successfully put into the queue.
    2006-04-05 16:51:37 Success The application sent the message asynchronously using connection AFW. Returning to application.
    2006-04-05 16:51:37 Success The message was successfully retrieved from the send queue.
    2006-04-05 16:51:37 Success File "D:\usr\sap\QN7\DVEBMGS00\work\XiPattern2\testfile2in.xml" deleted after processing
    2006-04-05 16:51:37 Success The message status set to DLNG.
    2006-04-05 16:51:37 Error Transmitting the message to endpoint http://sapep:50000/sap/xi/engine?type=entry using connection AFW failed, due to: Received HTTP response code 404 : Not Found.
    2006-04-05 16:51:37 Success The asynchronous message was successfully scheduled to be delivered at Wed Apr 05 16:56:37 GMT+05:30 2006.
    2006-04-05 17:01:37 Success The message status set to WAIT.
    2006-04-05 17:06:37 Success Retrying to send message. Retry: 3
    2006-04-05 17:06:37 Success The message was successfully retrieved from the send queue.
    2006-04-05 17:06:37 Success The message status set to DLNG.
    2006-04-05 17:06:37 Error Transmitting the message to endpoint http://sapep:50000/sap/xi/engine?type=entry using connection AFW failed, due to: Received HTTP response code 404 : Not Found.
    2006-04-05 17:06:37 Error The message status set to NDLV.
    Please suggest the solution.
    Is there any place where I can find the exact error log?
    Thanks,
    Smita.

    Hi,
    I found there was a problem with HTTP port in the URL. After fixing this, I am able to see the message in SXMB_MONI. But it is with an error. The error details is as bellow.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">AE_DETAILS_GET_ERROR</SAP:Code>
      <SAP:P1>af.qn7.sapep</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>no_messaging_url_found: Unable to find URL for Adapter Engine af.qn7.sapep</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error when reading the access data (URL, user, password) for the Adapter Engine af.qn7.sapep</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    In RWB->Adapter engine there is a success message, But in the RWB->Integration Engine there is an error with Error Code : AE_DETAILS_GET_ERROR.
    Please suggest how to fix this. I am able to logon to XI system with user XIAFUSER.
    Thanks,
    Smita

  • Problem with file to file scenario........

    Hi
    I have done file to file scenario.... I have created all data types,message types and message interfaces in Integration Repository..... and i have created reciever determitaion,interface determination, sender aggrement and reciever aggrement....and comunication channels....
    In Source CC i have given
    10.7.1.201\soruce
    In Target CC i have give
    10.7.1.201\target
    I have created one source directry for source file and target directory for destination file....
    Finally i have created source xml file and placed in source directory but its not going to target directory.... pls help me....
    Best Regards
    Ravi Shankar B
    Message was edited by:
            RaviShankar B

    You may need to extendthe trace file in the Java Adminsitration console to find the exact problem.
    Log on J2EE Admin Console
    Select Cluster
    Select <SID>
    Select Server
    Select Services
    Select Log Configurator
    Select Locations tab
    In Log Controller:
    Root Location > Com > SAP > aii > Adapter > File
    Change severity to Debug
    Click Save and "Apply to all server nodes"
    Run the interface again
    Check in \usr\sap\<SID>\DVEBMGS00\j2ee\cluster\server0\log
    for full trace file.
    Best viewed in Log Viewer:
    \usr\sap\<SID>\DVEBMGS00\j2ee\admin\logviewer-standalone\logviewer.bat (.sh)

Maybe you are looking for

  • Deploying html files.

              Hello,           I have a war file which has jsp and servlets . When I deploy this war file on           the server I can reference the jsp and servlets without any problem thru the url           mapping i configured in web.xml, but i am no

  • Problem while sending the *.txt as attachment  with mail

    Hi All, I am Using  function module (SO_NEW_DOCUMENT_ATT_SEND_API1) to send Mail with attachment in *.TXT format. But This function module is allowing only 255 char for a row. But the length of my Internal table is 700 char. Is there any another way

  • Attempt to Obfuscate password failed 10G on MAC

    Hi, I am trying to install oracle 10g on MAC OS 10.4.8. I am getting usual linker errors for which there is some information in this forum But I am not able to get solution for Attempt to obfuscate password failed error. I am consistantly getting thi

  • Safari won't open home page

    when I open safari my bookmark top sites open. How do I fix it

  • DCM, Cross Database Comparison shows no results

    Hi Solman Gurus, I am trying to setup a Cross Database comparison instance to compare entries between CRM and ECC systems. While I can perform the setup, the results show empty when the instance runs. I have attached screen shots to walk through all