System exception while deleting the file from app server in background job

Hi All,
I have a issue while the deleting the file from application server.
I am using the statement DELETE DATASET in my program to delete the file from app server.
I am able to delete the file from the app server when i run the program from app server.
When i run the same report from background job i am getting the message called System exception.
Is there any secuirity which i need to get the issue.
Thank You,
Taragini

Hi All,
I get all the authorization sto delete the file from application serever.
Thing is i am able to run the program sucessfully in foreground but not in the background .
It i snot giving any short dump also just JOB is cancelled with the exception 'Job cancelled after system exception ERROR_MESSAGE'.
Can anybody please give me suggestion
Thanks,
Taragini

Similar Messages

  • Problem while dowloading the file from Application Server

    Dear Experts,
                 I am facing the Problem while downloading the file from Application server.
    We done the automatic function while saving the invoice, this will create an idoc, and this idoc is written in the Application Server.
    I am running the Transaction AL11 and select the record, and from menu --> List, i am downloading into TXT format.
    But for some segments, the length is long, and so the last 3 to 4 fields values are not appearing in the File. Even though i am unable to view the values in the file before downloading. But i can view in IDOC.
    Please help me to solve this issue.
    Thanks & Regards,
    Srini

    but our user will use the Txn. AL11 and they will download from there
    Educate the user On a serious note, tell him this is not how data from app server should be downloaded. You can ask him to talk to the basis team to provide him access to the app server folder where the file is being stored.
    I can set the Variant and put this in background, But always the file name will be change, Like we use Time stamp in the File name.
    You can't automate this process by scheduling in BG mode. This is because the in BG mode you can't dwld the file to presentation server.
    Hope i'm clear.
    BR,
    Suhas

  • Error while uploading the file from Allpcation server in LSMW-7th step

    Hi Experts,
    what should be the specific CODE PAGE should be maintained while uploading the file from application server in LSMW-7th Step
    Thanks in advance,
    KSR

    Hi
    I mean that there is any seperate CODE PAGE which comes at the bottom of screen while uploading the file from the application server in 7th step.
    Is there any specific CODE PAGE to be maintained...
    Thanks in advance
    Oarsk

  • Problem while reading the file from FTP server

    Hi Friends,
    I have a problem while fetching files from FTP server.
    I used FTP_Connect, FTP_COMMAND function modules. I can able to put the files into FTP server.
    but I cant able to pick the files from FTP server.
    anyone have faced similar issues kindly let me know.
    Thanks
    Gowrishankar

    Hi,
    try this way..
    for reading the file using FTP you need to use different unix command ..
    Prabhuda

  • Validate the file from app. server before uploading

    Hi All,
    I am trying to upload the data from application server into an internal table.
    My requirement is I need to validate the data before I upload the data into internal table.(i.e I open the file from application server using FM Open_Dataset.Now before I upload the data into an internal table,I need to first validate each record in the file).I have some 7-8 lakhs of records in the file.
    Any input for the above requirement would be of great help
    Regards,
    nsp.

    hi Nsp,
      I guess validation of data will be only possible after uploading the data in to an internal table ...
    Regards,
    Santosh

  • Not recognizing # while reading the file from application server

    Hi
    I am reading a file from application server. While reading into internal table with read statement the last field in each record is filling with hash symbol in the last digit. If I write any if condition with HASH symbol its not going inside the if condition, means its not recognizing as hash may be its internally treating as some other. I need to remove the hash from that field. How I can do that.
    Thanks,
    kishore

    I faced exact situation. Yes, internally its treated as some other special character. What i did was, becuase hash symbol was always coming at the end...i created a dummy field in my internal table so that it will not interfere with my actual data. When i see the data in my internal table, the hash always falls in the last field (dummy) which i will ignore. I could not get solution to remove this hash so i adopted this approach and it worked!!
    Hope it helps,
    SKJ

  • Delete a file from App Server

    Hi,
    Can some one tell me how to delete a specific file on the app server ?

    REPORT  zdlc_delete_files                       .
    DATA: wa_summary      TYPE yloadsummary.
    DATA: BEGIN OF tab1 OCCURS 500,
    line(600),
    END OF tab1.
    DATA: unixcom LIKE rlgrap-filename.
    DATA: lines TYPE i,
          p_patho1(60).
    SELECTION-SCREEN BEGIN OF BLOCK blk0 WITH FRAME TITLE text-u01.
    PARAMETERS: p_patho(60) LOWER CASE
                DEFAULT '/export/SAPtf/dlcinc/new/' OBLIGATORY,
                p_sfile LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK blk0.
    p_patho1 =  p_patho.
    CONCATENATE 'ls [D]  '' ' p_patho1 INTO p_patho1.
    unixcom = p_patho1.
    REFRESH tab1.
    CALL 'SYSTEM' ID 'COMMAND' FIELD unixcom
    ID 'TAB' FIELD tab1[].
    CASE p_sfile.
    *To delete all .Read files.
      WHEN '*.read'.
        LOOP AT tab1.
          SEARCH tab1-line FOR '.read'.
          IF sy-subrc = 0.
            CONCATENATE p_patho tab1-line INTO wa_summary-data_file.
            DELETE DATASET wa_summary-data_file.
            IF sy-subrc = 0.
              WRITE :/'File Successfully deleted :', wa_summary-data_file.
            ENDIF.
          ENDIF.
        ENDLOOP.
    *To delte all .conv files.
      WHEN '*.conv'.
        LOOP AT tab1.
          SEARCH tab1-line FOR '.conv'.
          IF sy-subrc = 0.
            CONCATENATE p_patho tab1-line INTO wa_summary-data_file.
            DELETE DATASET wa_summary-data_file.
            IF sy-subrc = 0.
              WRITE :/'File Successfully deleted :', wa_summary-data_file.
            ENDIF.
          ENDIF.
        ENDLOOP.
      WHEN OTHERS.
    *To delete a specified file.
        CONCATENATE p_patho p_sfile INTO wa_summary-data_file.
        DELETE DATASET wa_summary-data_file.
        IF sy-subrc = 0.
          WRITE :/ 'File Successfully deleted :', wa_summary-data_file.
        ELSE.
          WRITE :/ 'File does not exist: ', wa_summary-data_file.
        ENDIF.
    ENDCASE.
    CHECK THIS CODE

  • Problem in downloading file from app server using CG3Y in to .XLS fomat

    hi All,
    I have uploaded file in to application server through a program using open data set with the separater as "|" ( pipe ) . Now the user should be able to download the file from apps server to presenataion server in .XLS format using txn CG3Y. but when we download, the format appears wierd and the data is not consistent across columns in excel. i.e the data which is supposed to be in one column in the excel is in the other column. what precautaions should i take  before moving data to apps server so that it will be downloaded in a good format.
    Appreciate your help...
    Regards,
    Sreekanth.

    Separate each values with TAB space present in the application server .
    Currently u r using | pipe character. Instead of that use CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB as delimiter.
    Each value will displayed in separate cells in excel sheet when u download it frm app.server
    Regards,
    Lakshman.

  • Delete the file from AL11

    hi all,
    how to delete file from application server(al11)?
    apart from using EPS_DELETE_FILE
    and writing a code  any other go to acheive it
    regards
    venkat

    Hi,
    AL11 is a tool to view files that exist on the operating system of the SAP instance (which I think is Rainer's point). 
    The only way to delete this files is either programatically (with the function module you mention or other ways) or to log onto the operating system directly and delete the file.  In either case you are not deleting them from AL11, you are deleting them from the operating system.
    Regards,
    Nick

  • Delete the file from the external hard drive

    deleted adobe reader 10, delete the file from the external hard drive. how to restore

    What is your operating system & version?
    How did you "delete" Adobe Reader?
    What "file" did you delete?
    What do you want to restore?

  • While deleting the data from cube..getting the following erros...

    while deleting the data from cube the below error occured in develoment..any help
    i have 4 requets.....2 are deltedd but no records for those...
    2 are not deleted and they have some data..
    please give me u r inputts pelase
    Performing check and potential update for status control table
    Message no. RSM1490
    Diagnosis
    If data is loaded into an InfoCube, or existing data is edited (aggregated/compressed/deleted/got from a DataMart), then there is a change in  the potential reportability of the data , or the possibility of deleting data by request, or of aggregating or compressing.
    This status of each one of these Cubes is stored in a status table, that is updated when there is any change to the status of a request in the Cube.
    The system now analyzes the requests in the Cube and compares the calculated status with the status table.
    If deviations from the status table arise then you are given the option of adjusting the status table.
    System Response Procedure Procedure for System Administration

    Hi,
    Did you tried by right click on cube and delete data? are those requests are compressed or roll up?

  • How to delete the files from iPhone before selling?

    How do I delete the files from my old iPhone4 before selling?

    Hey adhot,
    Before selling your iPhone, you'll want to follow these directions:
    Before you sell or give away your iOS device, make sure that you have removed all of your personal information. Follow these steps to protect your data and get your device to its factory default state for the new owner:
    Back up your device.
    Go to Settings > General > Reset, then tap Erase All Content and Settings.
    This will completely erase your device and turn off iCloud, iMessage, FaceTime, Game Center, and other services.
    If you are using iOS 7 and have Find My iPhone turned on, your Apple ID and password will be required. After you provide your password, the device will be erased and removed from your account so that the next owner can activate it.
    Contact your carrier for guidance on transferring service to the new owner.
    When the device is turned on for the first time by the new owner, Setup Assistant will guide them through the setup process.
    Important: Do not manually delete contacts, calendars, reminders, documents, photo streams, or any other iCloud data while signed in to your iCloud account, or the content will also be deleted from the iCloud servers and all of your iCloud devices.
    via: What to do before selling or giving away your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/HT5661
    Have a great day,
    Delgadoh

  • In azure microsoft DEPLOYMENT FAILED while fetching the files from git

    Hello there,
    I am using windows azure service for deploying my website but it gets display error  "DEPLOYMENT FAILED"  while fetching the file from my git repository. Please suggest me.

    Hi David,
    Thank you for your response,
    I deployed it using git and now its completed but i have an anather question that is I have created the app in portal.azure.com and a mysql db, both the files and db are deployed but still I am getting error "You
    do not have permission to view this directory or page." 
    Please suggest.

  • I have installed itunes 11.0.2.26. When I delete a file or podcast I am not being prompted to delete the file from its folder at the same time.

    I have installed itunes 11.0.2.26. When I delete a file or podcast I am not being prompted to delete the file from its folder at the same time. How do I restore this facility? I am running a 64bit Windows 7 OS

    Is the media files in question in the iTunes library or elsewhere on the computer?

  • HT203200 Cannot delete the file from the itunes folder

    I cannont delete the file from the itunes folder because it tells me I need permission to do so.  I am the admin person for the laptop plus I have checked my permissions under the security tab in the files properties.  How do I delete this file to start again?  It downloaded 1.2GB of the file before the error message appeared, so its paid for and all but not looking like I'll get to watch it before the time runs out on the movie being available for me to watch. :-(

    Try deleting the file without iTunes running.
    When you next open iTunes it should then be marked as a missing file and you should be able to delete the entry from iTunes.
    Hope this works
    Regards,
    Colin R.

Maybe you are looking for

  • There is an issue with sql loader

    i have a "|" separated file the 1st column of which signifies an individual record type . The record types are variable length ie record type 1 has around 100 chars while 2 has around 50 etc... We plan to load this data in multiple tables using a loa

  • Varying black intensity in PDF/InDesign preview - any ideas if harmful?

    Hi guys, I am encountering the following oddity in displaying my book as PDF or even inside Indesign. The intensity of my Black color is varying on some spreads pretty randomly. Look at the picture below to see what I mean. Notice the difference betw

  • Wanted: A Few Study Buddies

    Hello, I'd like to take the SCJP 1.4 on January 13th. I've worked my way through most of the Sybex Complete Java 2 Certification Guide (Programmer's Exam), and this morning I purchased the WhizLabs 1.4 mock exam simulator. See: http://www.whizlabs.co

  • Problem with Ultrabeat Muti channel (URGENT)

    Hi all I am about to start a recording session and disaster has struck! I am trying to creat a mutichannel ultrabeat - I have an instance of SDtylus RMX working nicely on multi channel no probs. I have now created a multi channel instance of ultrabea

  • My ipad mini just stopped working and will not turn on again.

    I tried holding the home and power buttons, but one of two things happen; either the white apple comes up (and shuts off) or the screen goes to the "iTunes" screen (and shuts off).  What gives?  It's charged to approximately 90% and I am right in the