File was not deleteing  in my file adapter

Hi,
   in my File adapter (<b>sender side</b>) is not working fine..  if i put  the processing mode is  '<b>DELETE'</b>   my adapter is not working.. if i put the processing mode is  'TEST'  then  my file is polling and  outfile was generating.. why this was happending..
       if  keep processing mode is 'delete'  then  the file is polling but it was not deleting so, output also it was not generating... ..  for what reason it was happening..
Thanks
babu

Hi Babu,
You must be using some user for accessing the file system for picking up tht file...
Check if the user has Delete access to the folder.
(You can set this property in the FTP Server UI)
Regards,
Sushil.

Similar Messages

  • Project was not deleted error

    Hi,
    We are using MII 12.0 version. I imported one project into it and after some modifications in query templates, when i tried to delete it from System Management -> Projects page , it is showing alert as "Project was not deleted".
    I am able to delete other projects. I tried to delete from work bench there it is showing error as "Error On Delete: org.xml.sax.SAXParseException: Content is not allowed in prolog".
    What is the problem and how to delete that project.
    Regards,
    Senthil
    Edited by: senthil kumar on Nov 16, 2010 1:00 PM

    Hi,
    We found the problem and deleted the project.
    We tried it by deleting folder by folder. While deleting In one folder it showed same prolog error and it is coming when one particular transaction is being deleted. When we analysed, we found that this transaction is not loaded successfully as it contains error data as letters like @#$@$@*$@&&!#$ as continously. we replaced this transaction with new empty transaction with same name and we tried again to delete and it is deleted. after that we were able to delete the project from Project page.
    Thanks.
    Regards,
    Senthil

  • CRM Complaint DSO Request was not deleting

    While I'm trying to delate a request in COMPLAINT DSO.It was not deleted then I checked error it showing as Rollback error.
    What I did: I'm tried to do repair full request and so click on start btn in infopackage(after checking everything I click on start btn) then I got a message like "Due to many selections, a cancellation can occur" by click on continue btn then I got a message like "Do you want to check the conditions again?" then I click on "No" btn then by thinking I'm doing wrong I click on Stop transaction button then onwards I got this problem .Please excuse me .
    Please help me.

    Hi
    The problem is due to inconsistent entries in table RSODSACTREQ,
    check for the request in the table RSODSACTREQ and if there is an etry with
    OPERATION         U
    STATUS                 2
    This entry has to be deleted. Please use Note 868391 (solution step 2)
    to delete the request from the ods. You can then reload and activate the
    request again.
    Please try these notes.
    1008276  You cannot delete request from DataStore object
    1007717  Deleting from DataStore object: Termination w/o log entries

  • Calendar in iCloud. It was not deleted. Any one knows how to retrieve it?

    I have four calendars hosted in iCloud. One of them just disapeared. It was not deleted. Any one knows how to retrieve it? I had years of information there.

    Double tap with THREE fingers to turn zoom off. Then go into Settings>General>Accessibility and turn it off for good.

  • TS3999 one of our calendars is missing which was not deleted how do you restore it or find it.

    Our Vacation calender is gone.  It was not deleted by us.  How do you restore it?

    You can access iCloud.com on a computer to turn it off.
    http://support.apple.com/kb/PH2702

  • Sold my iPhone 4, personal info was not deleted, can't use iCloud because another device is logged into it. What do I do?

    Sold my iPhone 4, personal info was not deleted, can't use iCloud because another device is logged into it. What do I do?

    Buy a retail Snow Leopard DVD. After installing that, you can upgrade to Lion if you wish.

  • Allocated memory pool was not deleted! 1 GB memory leak is too much for me!

    Dear Sirs. I found that DB environment, that was configured to use 1 GB cache size, won't free it when closed! Why? First I tried to open and close environment and got the following:
    Detected memory leaks!
    Dumping objects ->
    {596} normal block at 0x01970040, 1048596 bytes long.
    Data: < > 14 00 10 00 DB DB DB DB 0B 00 10 00 01 00 00 00
    {578} normal block at 0x00397978, 464 bytes long.
    Data: < > D0 01 00 00 DB DB DB DB C7 01 00 00 01 00 00 00
    Object dump complete.
    I have and idea that BDB will reuse the memory, rite? OK, let's try to create the same environment and open it. After environment was opened, closed, opened again and again closed, I got the following:
    Detected memory leaks!
    Dumping objects ->
    {3663} normal block at 0x01B80040, 1048596 bytes long.
    Data: < > 14 00 10 00 DB DB DB DB 0B 00 10 00 01 00 00 00
    {3645} normal block at 0x00396E60, 464 bytes long.
    Data: < > D0 01 00 00 DB DB DB DB C7 01 00 00 01 00 00 00
    {596} normal block at 0x01970040, 1048596 bytes long.
    Data: < > 14 00 10 00 DB DB DB DB 0B 00 10 00 01 00 00 00
    {578} normal block at 0x00397978, 464 bytes long.
    Data: < > D0 01 00 00 DB DB DB DB C7 01 00 00 01 00 00 00
    Object dump complete.
    So memory was not reused, nor deallocated.
    By the way, you may be interested in other leak I found, but fixed, see
    Replication manager memory leak when setting local site information.
    This leak is more serious, I am not sure I will fix it quickly. Maybe I'm doing something wrong? Could you please suggest something?
    Thanks in advance!
    With regards,
    Vladislav.

    OK, the problem solved by fixing code in file 'log.c', method '__log_dbenv_refresh'.
    Just added the code that deallocates memory of bulk buffer.
    if (IS_ENV_REPLICATED(dbenv))
    if (lp->bulk_buf != INVALID_ROFF)
    __db_shalloc_free(&dblp->reginfo, lp->bulk_buf);
    lp->bulk_buf = INVALID_ROFF;
    lp->bulk_len = 0;
    lp->bulk_off = 0;
    It was allocated in the '__log_open' function, by the following code:
              lp->ready_lsn = lp->lsn;
              if (IS_ENV_REPLICATED(dbenv)) {
                   if ((ret = __db_shalloc(&dblp->reginfo, MEGABYTE, 0,
                   &bulk)) != 0)
                        goto err;
                   lp->bulk_buf = R_OFFSET(&dblp->reginfo, bulk);
                   lp->bulk_len = MEGABYTE;
                   lp->bulk_off = 0;
              } else {
                   lp->bulk_buf = INVALID_ROFF;
                   lp->bulk_len = 0;
                   lp->bulk_off = 0;
    Sorry for time taken to read my posts, I was really needy in quick help, but solved problems myself.

  • If different albums have the same song and I delete the duplicates what happen with the albums that should have that song, does it refrence back to the the song that was not deleted.

    If several albums have the same song and I delete the duplicates what happen then.  Does it remove the song from the albums and just keep 1 song in 1 of the albums?
    Thx got my answer not possible, it will delete th esong from the other albums

    Indeed, a song can only appear in one album.
    To check your library for duplicates use Shift > View > Show Exact Duplicates as this is normally a more useful selection. Keep holding down shift until you have clicked on the text Show Exact Duplicates or it may still use the loser definition.
    If you find that you have true duplicates you need to manually select all but one of each group to remove, or use my DeDuper script if you don't want to do it by hand. The script attempts to take account of different types of duplicates which need to be handled differently, merges playcounts and preserves playlist membership. Please take note of the warning to backup your library before deduping. See this thread for background.
    tt2

  • HT1277 how do I retrieve my old mail that was not deleted?

    My mail from yesterday just disappeared, does anyone know how I can retrieve it?

    That's the main problem. There is no option to "restore from backup " for me because my phone broke during the process of restoring. I'm concerned about the fact that itunes has history of my back up but no way of recovering anything I backed up.

  • HRP-Tables not delete

    Hello, everybody!
    I need your advice.
    I made copy of one org.unit for example 50000100 with evaluation path O-O-S-P from my sender system.
    After execution I saw my data in reciever system.
    All data from PA-tables was deleted and inserted only transfered records.
    But data in HRP-tables was not deleted.
    Is it correct?

    Yes. This setting's is ok.

  • Why overdued pr is not deleted during DRP planning run in APO?

    the PR information still contain external PR created in DRP planning mode and it was not deleted.
    I am doubt about that the planning run in ROP planning mode cannot delete old PR before recalculating PR.

    I found the root cause of this symptom and have a plan to fix them.
    The root cause of it is that DRP planning run has not performed successfully.
    1. Details.
    For material: P174552
    This material’s BOD hierarchy is
    4860  (Reorder point based)
    └ 6000 (Reorder point based)
    └ 6080 (Period based)
    For both 4860, 6000   Reorder point based  planning mode, but for 6080 Period Based planning mode.
    This 6080’s Period based is incorrect because this material’s ABC grade is ‘N’; it should be Reorder point based.
    As you see it in below screen-shot, there is error log  in DRP planning for this material.
    I found that about 5% of materials has incorrect planning mode.
    2. Fixing Plan:
    This weekend I will recalculate all material’s planning mode again and
    will Run DRP planning process chain in monthly job again.

  • I was copying files to my time capsule when it crashed when it was almost finished. Now I am stuck with a light grey folder I can not delete. I would´t care if it wasn´t for the fact the folder is 1 TB size and takes up too much space. I ha

    I was copying files to my time capsule when it crashed when it was almost finished. Now I am stuck with a light grey folder I can not delete. I would´t care if it wasn´t for the fact the folder is 1 TB size and takes up too much space. I have tried turning on and of Hiding Files in Finder and what not with no success. So, how do I delete this folder. Remember, I am not extremely familiar with technical terms.

    I recommend you erase the TC.. it is the easiest and fastest solution.
    In Airport utility open the disk tab and select erase.. choose quick erase.. it will take less than 1min.
    Start again but copy files in small amounts.

  • 107 MB File - was not able to process thru File Adapter

    Hi All,
    I tried to send one 107 MB file using file adapter.
    But was getting error as "not able to write on the integration server".It seemed like XI was not able to process file with that much size...as when we did split up the file into smaller ones ..those were processed....
    I want to know what is the file size limit of File adapter......is there any way to send files with that much size from file adapter?
    Can we do any file sizing exercise on XI servers?
    Thanks.

    Hi Henrique
    Even the Zip Module doesnt help.
    We had a similar case, when Xi was acting as a FTP. We thought we would use the Zip Module, etc but what we realise was even if you plan to use the Zip Module, the Entire File first needs to be loaded into the memory before the module can be called and the chances are that the j2EE stack goes down even before the module can be called.
    We also explored the option of using the Jar command in the command line processing before message processing, even this has the same issue that , the Data is loaded into the memory of the j2ee stack and only then the command is executed and so even though the content was zipped, the actual content used by the file adapter was not the zipped content.
    Regards
    Bhavesh

  • Sender File adapter not deleting the source file after reading

    Hi everyone,
    In the sender Communication channel i have choosen the "Delete" option after reading the source file. But it is reading the file, but it is not deleting the file. I have checked the file status. it is with full persmission.
    can anyone give solution to this.
    Thanx
    Bala

    Hi,
    1. set the mode to delete
    2. make sure the file is "deletable"
    3. check xiserver:port/MessagingSystem/monitor log to see what happens with the file
    (chec both audit and log in that link)
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • File Adapter: File Deletion Failure

    Hi everyone.
    My File Adapter is having trouble deleting a file that I placed on a server through FTP. Even after executing chmodd 777 on that file. But, my File Adapter will delete a file that was created by another File Adapter on that same server.
    Any suggestion as to why the File Adapter is able to delete a file created by another File Adapter but not able to delete a file uploaded through FTP?

    984188 wrote:
    It is relevant in this case. As my original post stated, my SynchRead File Adapter will delete a file that is create by my Write File Adapter.The way you write the file is irrelevant... The user that is writing the file is the key... It works FileAdapter to FileAdapter because in that case the user that creates is the same that deletes... Anyway, the solution for your problem is to chmod directory where the files are...
    I reckon your directory is sticky so one user can not delete files from the other user...
    Read this...
    http://linuxgazette.net/issue39/tag/5.html
    Cheers,
    Vlad

Maybe you are looking for

  • IMessage on multiple devices with 1 Apple ID

    Hi all, I previously had my iPhone 3GS and iPad 2 set up with 1x email under the 1 Apple ID. I was able to test this by sending an iMessage to myself and it would then message to both my devices. My wife now has my old 3GS as I have since upgraded to

  • RDP not working after installing Windows 2008 R2 Service Pack 1

    Hi, We have Windows 2008 R2 Data center editions with Service Pack 1 which we recently implemented. Now when i create new virtual machine in Hyper-V with Windows 2008 R2 Standard edition without Service Pack then i can able to take RDP of virtual ser

  • MAIL - certain emails won't open, 10.6.4

    Using Macbook, some emails won't open in mail (on 10.6.4). i can open several emails from the same person but particular ones won't open. it's happened several times in the last week. to clarify, it's not the PROGRAM mail that won't open...it's just

  • Attempting to work on a pdf, after exporting to.docx and attempting to download, document has very l

    Attempting to work on a pdf, after exporting to.docx and attempting to download, document has very long file name that will not save. I need to work on this document!

  • XFCE4 shutdown stopped working after update

    Hello Archers, I use XFCE, and when I try to shut down using the panel button, my X session ends, and I'm left on the console, with the following error message: ** (xfce4-session:2398): WARNING **: xfsm-shutdown-helper .c:176: Failed to contact HAL: