File Archive When file adaptor is Receiver

Hi,
  How to Archive the File when the File Adaptor is Receiver?
  My scenarios is IDOC TO FILE.
regards,
Ansar.

HI,
1.<i>you can try creating your own adapter module for
that and use it in the file adapter</i>
   --- How to write Adapter module and where to write?
2. <i>Add Timestamp, Add Counter , etc .,You can use any of these options? Is this what you are looking at?</i>
I am looking for to take a backup of the file which was generated by XI through idoc to file scenario.Bcoz this file is will be read and deleted by another application(:: I need to store the file in another folder).
3. <i>write a script or create a batch file</i> ...
  --- Can u plz give some more information...
4. <i>create anyother file adapter and place the archive folder path</i>
  ---  I created like that but not working (ie. Receiver determination I am unable to give 2 communication channels..)
thx,
Ansar.

Similar Messages

  • Why does FCP looses its source file reference when files are copied

    Why does FCP looses its source file reference when files are copied from another project??
    i have this happen all the time, I move all my media to another drive and files that originated in another project do not reconnect because they have lost there source?
    Any way to fix this mess? i am in the middle of reconnecting 400 files by hand one at a time!!!
    Thanks, mark

    Because you changed the file path. From one hard drive to another...the hard drive name is no doubt different, and then if you have the files in different folder structures then yeah, it will lose the connection to that media.
    Best thing to do is to clone your media drive, or name the other drive the same name, and keep the exact same file structure (folders in folders) as the original drive. Then you won't need to reconnect.
    Shane

  • File Name when file is opned in the browser

    Hi All,
    I am trying to open a file a pdf in the browser.The file is opening fine.
    But when i try to save the file, insted of the name i specifed in the response header, its displaying the download as the filename. Download is the name of the jsp file in which the pdf file will open
    Can I force the browser to save a downloaded file with a name I specify, rather than the name of the URL.
    Please help in solving this.
    Thanks in Advance,
    Madhu

    The only workaround I can think for this then is to specify the name of the file as part of the url for it.
    Similar to an approach documented here
    Basically, you make your url look like: http://myApplication/pdfDownload/myDocument.pdf
    You configure your web.xml file to map all /pdfDownload/* requests to your handling servlet/jsp for downloading pdfs.
    Then Acrobat reader can just pick up the filename from the url.
    Yes its a workaround for jumping through hoops, but it seems that Acrobat reader ignores the content-disposition header, and also (from that linked post) doesn't like parameters with the request string either.
    hope this helps,
    evnafets

  • File-XI-RFC, archiving file only when system ack ok. Is it possible?

    Hi !
    We have a File-XI-RFC scenario. We need the file adapter to archive the input file ONLY if the message was delivered ok to the RFC.
    Should this work, using a BPM with this steps ????
    1) Receive (file message type)
    2) Block
    2a) Send (ASYNC to the RFC, with transport Acknowledgement enabled)
    2b) deadline branch at N minutes
    The goal is that if the R/3 RFC receiving system is down, XI does not archives the input file and tries to process it later when R/3 is available. XI's File Adapter should find the file in the source directory because it was not archived when the process returned error the last time it was executed.
    Thanks,
    Matias.

    Hi Bhavesh !
    I'm thinking in other idea, based on yours...
    there should be 2 scenarios:
    Scenario 1: takes file from SOURCE folder,archives it in a VERIFICATION folder, tries to send via RFC.
    Scenario 2: takes file from VERIFICATION folder, checks via BAPI call if its content was succesfully inserted via the RFC of scenario 1, if this BAPI returns OK, send the data to a HISTORIC folder if the BAPI returns ERROR, send the data to the SOURCE folder. I could use the extended receiver determination feature here to select between the HISTORIC and SOURCE folders or BPM.
    Always using EOIO, and file construction mode = APPEND in the receiving file adapters  of scenario 2, to rebuild the input file based on the several splitted messages.
    What do you think ?
    Thanks !

  • How to recover the database when some of the archive log file get deleted.

    I am facing a problem with Oracle database, which is related to archivelogs.
    Our development database is running in archivelog mode, but we don't have backups scheduled and have no recovery catalog.
    When the database was in running condition, disk got full, so some archivelogs were deleted manually.
    After this they restarted the DB, and now DB is not coming up. Errors are as follows:
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1444383504 bytes
    Fixed Size 731920 bytes
    Variable Size 486539264 bytes
    Database Buffers 956301312 bytes
    Redo Buffers 811008 bytes
    Database mounted.
    ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1: '/export/home/oracle/dev/ADVFRW/ADVFRW.system'
    SQL> recover datafile '/export/home/oracle/dev/ADVFRW/ADVFRW.system'
    ORA-00283: recovery session canceled due to errors
    ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
    SQL> recover database using backup controlfile;
    ORA-00279: change 215548705 generated at 09/02/2008 17:06:10 needed for thread
    1
    ORA-00289: suggestion :
    /export/home/oracle/dev/ADVFRW/ADVFRW.archivelog1/LOG_ADVFRW_1107_1.ARC
    ORA-00280: change 215548705 for thread 1 is in sequence #1107
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    /export/home/oracle/dev/ADVFRW/ADVFRW.archivelog1/LOG_ADVFRW_1107_1.ARC
    ORA-00308: cannot open archived log
    '/export/home/oracle/dev/ADVFRW/ADVFRW.archivelog1/LOG_ADVFRW_1107_1.ARC'
    ORA-27037: unable to obtain file status
    SVR4 Error: 2: No such file or directory
    Additional information: 3
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    CANCEL
    Media recovery cancelled.
    SQL>
    1. How to recover the database and bring it online
    Any help will be highly appreciated.
    With Regards
    Hemant Joshi
    Edited by: hem_Kec on Sep 7, 2008 9:07 AM

    Hi,
    Archive log files are the copies of redolog files.As redo log files are circularly overwritten,oracle generates archive log file of the corresponding redo logfiles being overwritten.So if you have a backup that dates back to 10 am in the morning and if your database creashed at 3 pm,you cannot use the redo log files alone as they have incomplete information.To completely recover the database upto 3 pm,you need archive log files generated between 10 am to 3 pm. In your case since you are missing one archive log file,you cannot perform complete recovery and hence would suffer data loss.

  • I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content

    I have a word document that I have put hyperlinks in and turned into a pdf.  When I email and receiver opens in iPad the document is blank.  When I do a file save as pdf the document appears and the hyperlinks work but the document has much of the content turned into symbols.  What is going wrong?

    You select the printer properties and set the appropriate page size (I think there is a place to set it in PDF Maker too, but not sure). In the printer, this is equivalent to putting the proper paper in the printer.

  • File archive part is missing when trying to download PSE 11.

    I bought Adobe Photoshop Elements 11 last year & downloaded it on my PC. Bought laptop specifically for downloading PSE 11 to use (with correct specifications - windows 8.1) & when double click to run application keeps saying file archive part of PSE11 is missing & need all parts in same folder to extract & to download all parts. I have been downloading both parts (using Firefox) & put both parts in same folder. I have already looked on forum & seen people have had same problem & followed advice given to them (& links) but still going round in circles with this. Please can someone help as don't want to purchase again. Thankyou, Peb

    you need both the exe and 7z files (1 of 2 and 2 of 2):
    Downloads available:
    Suite:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    https://helpx.adobe.com/download-install.html
    Download and installation help for Adobe links
    https://helpx.adobe.com/download-install.htmlDownload and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Running Safari 6.0.3  When trying to print files using Adobe Reader 11.0.02, print preview screen is all black.  If files are attached to an email, receiver can't open it.  It does work OK in Firefox 19.0.2  Any ideas?

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • I have Adobe Photoshop Elements 5.0 and am trying to upgrade to 13 - getting error message that "file archive part" of Adobe 13 is missing. When I try to download installers for older products it only goes back to v7, not v5 what to do next?

    I have Adobe Photoshop Elements 5.0 and am trying to upgrade to 13 - getting error message that "file archive part" of Adobe 13 is missing. When I try to download installers for older products it only goes back to v7, not v5 what to do next?

    TDFields you will want to ensure the 7z and exe file are in the same folder/directory.  You can find more details at Find a download link on Adobe.com.

  • I downloader all the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    I downloadedall the Adobe Presenter, looks like everything downloaded but when I open the program I get the following message: The file archive part of Presenter is missing. You need all parts in the same folder

    HI There,
    It seems that Presenter is not fully downloaded. Please check you have downloaded .exe and .7z files successfully. In case you are still facing the issue then please click on the following link to chat with the support :  Chat
    with an Expert
    Regards,
    Mayank

  • When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    When I send out mail from MS Outlook enterprise account in the office to my Mac at home they are received as "winmail.dat" files.  Even if I perform a "save as" to the correct file name the file format is still not recognized.  Why is this happening!?

    http://www.joshjacob.com/mac-development/tnef.php

  • Receiver file archiving

    Hi,
    Iam using receiver file adapter as ftp as message protocol. My requirement is I have to archive the files on PI applicaation server and send the files to legacy system as well.
    Please suggest the solution?

    Hi Praveen,
    Suppose using FTP receiver you are writing the file in Folder A. and now you want to copy it to folder B and also client Folder C.
    Approach
    1. You can write a batch file (for windows extension will be .bat) and schedule it for every 1 minute. Now the work of this batch file will be to move the newly created file to Folder B. Make sure you have the .bat file in Folder A and added to the windows scheduler (need to do a google to find out how to write a btach file for this and how to scheduie it in windows).
    2. Now make a generic inerface which will pick files from Folder B and send back to Folder B in Client machine. So this is the second interface..
    Regards
    Suraj

  • I am trying to download Elements 12. I've downloaded the two parts on your web site but when I run the second part it comes up with a message saying 'The file archive part of Adobe Photoshp Elements 12 is missing...'. What shoudl I do?

    I am trying to download Elements 12. I've downloaded the two parts on your web site but when I run the second part it comes up with a message saying 'The file archive part of Adobe Photoshp Elements 12 is missing...'. What should I do?

    Hello
    I’ve managed to get it to work now but not as straightforward as I’d have liked and difficult to find out how to get help.
    Rory

  • When I try to install file 1 of 2 for premier elements 9 I get an error. The file archive archive part is missing.

    When I try to install file 1 of 2 for premier elements 9 I get an error. The file archive archive part is missing.
    Can anyone help?

    Sharky101
    From where are you downloading these Premiere Elements 9 installation files....Adobe direct or from another web site?
    Please start again. If you did not already, turn off the antivirus and firewall(s) before starting with File 1 and then File 2.
    File 1 should be the Adobe Application Manager or its counterpart (.exe file), and File 2 should be the program (.7z file).
    If you have not tried it already, consider the following link from which to obtain your installation files for 9.
    http://prodesigntools.com/photoshop-elements-9-premiere-elements-9-direct-download-links.h tml
    These are tryout files into which you insert your purchased serial number during installation in order to make the files your copy.
    Please remember - after the install of Premiere Elements 9, download and install the 9.0.1 Update
    for Windows
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4929
    for Mac
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4930
    Please let us know if you are OK with the above information.
    Thank you.
    ATR

  • When downloading Captivate 8 (64bit) - missing file archive part?

    When downloading Captivate 8 (64-bit), I am being told the file archive part is missing and I need all parts in the same folder.  I have not idea what the file archive part is or where to find it.

    Hi cas517,
    The download file consists of 2 parts - one with .7z extension and the other a .exe file.
    You need to click on the .exe file to begin the installation.
    Alternatively you can re-download the files from the direct download links available at : http://helpx.adobe.com/photoshop-elements/kb/photoshop-elements-10-11-downloads.html
    Regards,
    Rave

Maybe you are looking for

  • Creating a sample report using JAVA SDK

    Hi, I am trying to create a sample report using JAVA SDK. I slelect 4 "free cells" and pass 4 different strings to it. I even slelect the font colour and size. When i run the class and try to view the report in Infoview, I only seeblank blocks withou

  • OTC ssl.conf file does not have ssl wallet file location details

    Hi B2B Gurus, While doing the HTTPS configuration in OTC we observed that some of lines were missing in ssl.conf file located at <Oracle_Home>\Apache\Apache\conf. The below mentioned lines are missing in OTC’s ssl.conf but present in OracleB2B’s ssl.

  • Help!!! Itunes and Pc can't detect my Ipod Touch 4g

    I tried everything that Apple Support told me to do and still can't detect my ipod touch 4g. Still stuck at apple boot logo, tried DFU mode and Recovery, still can't be detected by PC or Itunes. What to do? I need Help Badly. When i connect my ipod,

  • Problem with file URI for external DTD

    Hi All, I am getting UnknownHostException when i am trying to parse an XML data as InputSource to parser. The exception is thrown while to trying resolve file uri set for inputsource to locate DTD. The code works fine in of the Solaris machine but it

  • Alternatives to using update to flag rows of data

    Hello I'm looking into finding ways of improving the speed of a process, primarily by avoiding the use of an update statement to flag a row in a table. The problem with flagging the row is that the table has millions of rows in it. The logic is a bit