Load flat files in batch without storing files on application server

Hi SDN-ers
We would like to load flatfiles into BW in batch but .... and this is the tricky part, without storing the file on the application server. We are able to call remote function modules from outside the system so maybe we can attach the file as an internal table with a remote function call and post it in PSA. Anyone ever tried this ?
Thanks,
Hans

Hi,
   I would suggest to upload the data in flat file in a Database table in BW and then
   create a generic extractor on top of it to load the data into Cube or ODS . In this
   way you will have a copy of the data in files.
Regards,
Prakash

Similar Messages

  • I want to start a new movie but iMovie is hung looking for an old file and says:"Without this file, the movie cannot play properly."

    Hello!
    I recently upgraded to Lion. Every time I start up iMovie, it asks if I want to go ahead and generate thumbnails. I say OK, then it alerts me that it cannot file the file IMG_0073.MOV. Then it says "Without this file, the movie cannot play properly." It gives me the option to either cancel or search for the movie.
    I don't have the old file it's looking for. I simply want to start a fresh movie with new material but cannot get past this hump. Based on the little research I have done, some people experienced this problem because the files were in aperture at some point, which was the case for me before when I used iMovie. I have since moved forward only with iPhoto but perhaps it's hung on an old file format?
    I tried taking another old movie and renamed it IMG_0073.mov to see if I could simply select it, give it what it wants and move on but it won't let me select the file for some reason. I also tried removing iMovie and downloading a fresh version but that didn't work either. My BF tried removing pfiles (I think that's what it's called? but again no luck)
    Please help! I must get this assignment done for a class!

    Hello!
    I recently upgraded to Lion. Every time I start up iMovie, it asks if I want to go ahead and generate thumbnails. I say OK, then it alerts me that it cannot file the file IMG_0073.MOV. Then it says "Without this file, the movie cannot play properly." It gives me the option to either cancel or search for the movie.
    I don't have the old file it's looking for. I simply want to start a fresh movie with new material but cannot get past this hump. Based on the little research I have done, some people experienced this problem because the files were in aperture at some point, which was the case for me before when I used iMovie. I have since moved forward only with iPhoto but perhaps it's hung on an old file format?
    I tried taking another old movie and renamed it IMG_0073.mov to see if I could simply select it, give it what it wants and move on but it won't let me select the file for some reason. I also tried removing iMovie and downloading a fresh version but that didn't work either. My BF tried removing pfiles (I think that's what it's called? but again no luck)
    Please help! I must get this assignment done for a class!

  • Using File Browse to update stored file

    Hi all,
    I have a form with a File Browse item on it which is (surprisingly!) used to upload a file and associate with a record. The filename is stored in a varchar column in the table. This works fine when I create (INSERT) the initial record and I can retrieve the stored file just fine. However the problem I have is when I want to update the uploaded file. It seems the normal mechanisms for update / save requests don't apply to uploaded files. My other attributes get updated fine but the new uploaded filename is not reflected in the table.
    I've put together a simple example of this on a when apex.oracle.com :
    http://apex.oracle.com/pls/otn/f?p=40740
    Which has two fields, a file name and an 'attribute'. Try as I might I can't update the file name although the attribute changes just fine.
    Any suggestions will be much appreciated. I realise I may be missing something fundamental here and am more than happy to be enlightened.
    FYI, the purpose for such functionality is to allow users of our system to store a photograph of themselves along with their details. This functionality is required to allow the photograph to be updated if required.
    Thanks,
    Steve

    If i am not mistaking, using a file browser item type will not set the uploaded file (blob) in this item, to be processed in the standard processing on you're page.
    In a recent project i wrote a stored procedure for handling with uploaded files. This procedure, which based on the filename ( Fnnnn/<filename> ) , select the uploaded content through apex_application_files, the location apex saves the files. and procedure outputted the file as a blob, which then can be used to insert/update in youre table
    Hope this example code will help you:
    procedure upload_bestand( p_file_name in varchar2
    , p_file out nocopy blob
    , p_filetype out nocopy varchar2 )
    is
    -- Cursor voor bepalen bestand uit apex_application+files
    cursor c_file ( b_file_name in varchar2)
    is
    select aaf.filename
    , aaf.mime_type
    , aaf.blob_content
    from apex_application_files aaf
    where aaf.name = b_file_name
    r_file c_file%rowtype;
    begin
    open c_file ( b_file_name => p_file_name );
    fetch c_file into r_file;
    if c_file%notfound
    then
    -- Upload van bestand niet geslaagd
    close c_file;
    raise e_file_err;
    end if;
    close c_file;
    -- Geupload bestand uit temp_upload tabel verwijdern
    delete from apex_application_files
    where name = p_file_name
    commit;
    p_file := r_file.blob_content;
    p_filetype := r_file.mime_type;
    end upload_bestand;

  • Find and sort all files in folder without invisible files

    Hi all,
    I am trying to check whether the newest file added to a folder is an HTML file. In theory the folder should be empty when a new file is added because the script will delete all files in the folder just before it finishes running.
    However, I am having a problem with .DS_Store files being created automatically in the folder. When Finder accesses the folder it creates a new .DS_Store file and thus the newest file added to the folder is never an HTML file.
    I believe that the command "without invisibles" could help me with this problem. However, I have not been able to implement this successfully. I would appreciate if someone could please point me in the right direction. Here is what I have so far.
    tell application "Finder"
              set sortedFiles to reverse of (sort (files of thisFolder) by modification date) as alias list
              set newestFile to item 1 of sortedFiles
    -- check if newestFile is an HTML file
    -- read file and send contents to another application
    end tell
    Thanks for your help!
    Message was edited by: dsbird

    Errr...  A quick reality check is called for. If you make files visible to the finder then they are no longer invisible files, so ignoring invisible files won't help you one bit. your best bet is to do a manual check for a file that starts with a "." (which would normally be invisible):
    tell application "Finder"
              set thisFolder to folder "Pictures" of home
              set sortedFiles to (sort (files of thisFolder) by modification date) as alias list
              set newestFile to last item of sortedFiles
              if name of newestFile starts with "." then
                        set newestFile to item -2 of sortedFiles
              end if
    end tell

  • Place file in central instance(AIX/UNIX) from Application server in Windows

    Hi guys,
    We have the central instance running in AIX and app servers in AIX/UNIX as well. now we want to replace the app server by windows server.
    so central instance remain as AIX/unix server and app server becomes Windows NT.
    then how can i place a file in my central instance while using this Windows based app server... because open dataset with forward slash (/usr/sap/) will be not be interpretated by windows,
    so i used logical file name.. and kept both windows and unix path..
    unix path as /usr/sap/tmp/<File_Name>
    and windows path as
    servername\usr\sap\tmp\ and even tried with
    usr\sap\tmp\
    nothing worked.. when i used open dataset fetching the path from logical path, it ways unable to open the file..

    Hi,
    you can't directly open file on central instance if you are not connected to it. You have access only to files which are on application server which you are connected to. If you want to have a folder which will be accessible from all application servers then you need to map folder on application server to folder on central instance.
    To solve the issue with different paths for different operating systems you can use transaction FILE. Here you can define a logical filename where you can configure different paths for different syntax groups such as UNIX or WINDOWS NT. You can use FM FILE_GET_NAME to get valid path for application server.
    Cheers

  • How to check whether file exist in a folder at the application server

    Hi to all experts.
    if suppose there is a file at the application server test.txt my requirement if the one more file is created of the same name before overwriting the file a warning message is to displayed to the user that the file already exist .
    how to do it

    HI Mohammed,
    use The FM DX_FILE_EXISTENCE_CHECK
    or static class CL_GUI_FRONTEND_SERVICES=>FILE_EXIST
    For more info
    search file in application server
    application server
    hope it helps you.
    Regards!

  • Euro symbol not displayed/stored correctly when Application Server on AIX

    Hi,
    Up till now we have an BC4J/ServiceFile/UIX application (generated with JHeadstart)running on Windows OS (Application Server and Database).
    The customer has decided to move the Application Server (10g) to an AIX machine.
    When testing the application we find:
    1) Euro symbol (€) is displayed en stored correctly when stored in varchar2 db-columns
    2) The Euro symbol is not stored correctly when stored within a CLOB db-column AND when the AS runs on an AIX.
    When the Application Server runs on a Windows-platform the euro symbol is displayed and stored correctly.
    Our first guess was some NLS_LANG configuration problems on the AIX-machine. We tried however to set the NLS-LANG to "DUTCH_THE NETHERLANDS.WE8MSWIN1252". This had no visible effect.
    Are there other (if any) NLS-settings which influence the way the CLOB-columns are dealt with?
    When connecting to the same database from a Windows-Application Server no problems occur, thus showing that the problem is AS/OS specific.....
    Our guess is that is related to BC4J and how BC4J communicates with the database.
    Is this problem a known bug/issue?
    Any ideas how to solve this problem?
    We are using JDeveloper 9.0.3.1 (build 1107), Business Components Version is 9.0.3.10.62
    Thanks,
    Anthonie

    Sorry, I'm having difficulty understanding what's happening here. Let me see if I get it.
    You have an application that stores the euro symbol in a CLOB. When the server that handles this application is on AIX, the euro is not properly displayed in the client. When the server is on Windows, it displays properly.
    Is that the issue? If so, it could be a number of things, but it's probably related to the character set differences between the two database servers.
    Have you been able to reproduce this without using Business Components?
    -SteveA

  • Downloading J2EE 1.4 without Sun's Java Application Server

    Can you download just the J2EE API without the Sun Java System Application Server?
    I

    Can you download just the J2EE API without the Sun
    Java System Application Server?
    II suppose not. But you can always download any app server adhering to J2EE 1.4 specs if you don't want the Sun's Application Server. Anyway, that app server is pretty fine IMO.

  • Checkout and editing of original files to a DIR stored in SAP content server

    Hi,
    is it possible with SAP Web Documents to checkout and edit original files from a document info record that are stored in a SAP Content Server and save the changes back to the SAP Content Server?
    Kind regards
    Florian Wiedemann

    Hi,
    unfortunately it's not that easy. Mobile Documents provides with NW ABAP 7.40 SP10 an API which, if you implement it, allows you to expose data from basically any ABAP system. Currently the API only provides read support, but we are already working on enabling write and versioning support also.
    If you are interested there is an Expert Session next week on Wednesday the 17th which explains how to get your Data to SAP Mobile Documents.
    Here are the details: SAP Mobile Documents - Webinars
    Best regards
    Alex

  • Tranfer file from one folder to other in application server

    Hi Champs,
       I want to tranfer files which are in error from one folder to another
    Source Dir: usr/feeders//interfaces/EP1/payrollact/Resourcelink
    Destination Dir: usr/feeders//interfaces/EP1/payrollact/Resourcelink/reprocess
    The coding needs to be written in my ABAP report.
    I have an idea that this can be done through SM69, by creating code in UNIX and then using FM SXPG_COMMAND_EXECUTE in our ABAP code.
    I went to TCode SM69 and have created a Command name but dont know where to put the file path of source and destination and also dont know how this can be used in FM SXPG_COMMAND_EXECUTE.
    Please can some one guide me with how to do.
    Regards,
    Nishant

    Hi Nishant,
                try this.
    PARAMETERS: Source_file TYPE SAPB-SAPPFAD
    default '\folder1\abc,pdf'.
    PARAMETERS: target_lfile TYPE SAPB-SAPPFAD
    default '\folder2\abc,pdf'.
    START-OF-SELECTION.
      CALL FUNCTION 'ARCHIVFILE_SERVER_TO_CLIENT'
        EXPORTING
          path                      = source_file
         TARGETPATH        = target_lfile
    EXCEPTIONS
       ERROR_FILE       = 1
       OTHERS           = 2
      IF sy-subrc  0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.

  • Temporary *.rpt file disappears from temporary directory on Websphere Application Server 6

    Hello,
    I'm having trouble after publishing to my WAS v6 environment.  The report will begin, creating the appropriate jrc_tmp_######.rpt file in my temporary directory. 
    For small reports (10 objects or less), the temporary report disappears, I am queried for my login and any parameters, then the report opens.  The temp file never comes back.  All subsequent requests for the report from *any computer* return with an I/O Error and this later in the log file:
    Caused by: java.util.zip.ZipException: ¤u2022'u2022-¦u2022@u0192-"-(tm)...¢¢u2030-u2022@"...£u02C6-
    Any reports with > 10 objects (any combination of data fields, text, images, formulas) the temporary report disappears and only the same I/O error appears.
    In my test env. on windows, using the Rational Application Developer v 7 WAS test server, the temporary report stays until the report times out...
    Has anyone else on WAS 6 had similar problems?  I've no idea how to proceed.
    Thanks!
    Terese

    Would you be able to do one test?
    Early builds of the IBM Java JRE 1.3 and 1.4 had issues with the JIT compiler that caused strange IOExceptions.
    Would you try, in the WebSphere admin console, turning off the JIT for the JRC application, to see if the problem goes away?
    If so, I recommend upgrading to the latest IBM Java JRE build for your version of the Java SDK.
    Ted Ueda

  • Without reload the JBoss application server after compile the java

    in Jboss app server.
    duing the developmenet i modify the .java files and compile it. when ever i compiled the .java file i have to restart the jboss service. then only the modification is done.
    so i would like to know where i have to set the configuration for without restart the jboss server

    Dear Vincent
    Its already set the Parameter rdisp/j2ee_start = 0. last week we are upgrade the kernel from 173 to 221. after that this problem was started.
    Regards
    Sriram

  • Displaying pdf files in Portal from application server.

    Hi,
    I have a requirement where i will give a link on the portal for Provident Fund related data. When the user clicks on the link, i have to retrieve his pdf file from the folder stored on the application server and display it in portal. Could you please tell me how to do it?
    Also can we use Knowledge Management for it? If yes, how to do it?

    Hi,
    This can be done by
    1. Store the pdfs in the server like userid.pdf. Or you can add the year also the the file name.  The files can be in the same appserver. No need for KM.
    2. Create a Webdynpro application where the WD automatically reads user ids of the person logged in (IUser).
    3. In the Webdynpro code create a LinkToURL element with the user id you got in step one. This will make sure that somebody cannot see others file.
    Regards
    Srini

  • Use XML files stored in directory of Application server as a input for XI ?

    I have a scenario that there is a xml file stored in sap application server for example /inf/ERQ/XML/XXX.xml which i want to use it as an input for XI. I know that there is an adapter in XI for getting xml file stored in normal path but in my situation it's in application server of SAP so i don't know how to do this.
    Any solution or example for this? Thank you in advance.
    Best regards

    Hi,
    We can read this file through FILE adapter with FTP protocol, before that i think need permission from basis for access.  Configure source(according to xml format) and target structure according to your requirement.  But one thing should remember in XI/PI sour/target XML formats should contain Message type name & namespace name else it can't work.
    Find below link for more information.
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2)

  • InfoSpoke fails with message "Could not open file on application server"

    BW Experts,
    I created an InfoSpoke that is configured to extract to a flat file. The name of the file is specified using a logical filename. During extraction, the infospoke reports the error message "Could not open file on application server" adnd  marks the extraction process as red(failed). I have tried to run the InfoSpoke in background mode and in dialog mode and the same error appears. After i run in dialog mode, i checked SU53 for authorization errors and did not find any. I also tried changing the Logical filename setup in transaction FILE to a more "friendly" directory in which i'm sure i have authorizations (e.g. my UNIX home directory) and im still getting errors.
    Can you please share your thoughts on this? Any help will greatly appreciated. I also promise to award points.

    Hi Nagesh,
    Thanks for helping out.
    If i configure the InfoSpoke to download to a file using "File Name" option and also check the "Application server" checkbox, the extract works correctly (extraction to the defualt SAP path and filename=infospoke name). If i configure the InfoSpoke to download to the local workstation, the InfoSpoke also works correctly. It's only when i configure it to download to the application server and use the "Logical filename" option, that i encounter a failed extract.
    Here are the messages is the Open Hub Monitor:
    (red icon) Request No.147515
    0 Data Records
    Runtime 1 sec.
    (red icon)Run No. 1
    0 Data Records
    Runtime 1 sec.
    Messages for Run
    Extraction is running RSBO 305
    Could not open file on application server RSBO 214
    Request 147515 was terminated before extraction RSBO 326
    Request 1475151: Error occured RSBO 322
    If i clink on the error message, no messages nor clues are displayed. Note, this is a new InfoSpoke that is currently in the dev system.
    Please help.

Maybe you are looking for

  • Adobe Acrobat 9 Pro on new MAC?

    I recently bought a new MAC but cannot get Adobe Acrobat 9 Pro working on it as I cannot seem to find a download option anywhere? I have a licence and have used it on my old MAC. I also have the istallation disk but no disk drive in the new MAC. How

  • Trying to set up BEFW11S4 as a "slave" router/access point

    I want to set up the BEFW11S4 as a router and access point in the opposite corner of the house from the main wireless router. My main router is address 192.168.1.1, and I configured the BEFW11S4 as 192.168.1.2, with a different WEP key and turned off

  • How to preserve your battery all day - MUST READ

    when roaming out in the boonies this past weekend, my phone died within ~6 hours without using it at all.  i was pretty annoyed. the second day, i did the following: 1) turned off GPS and Google location services 2) turned off data roaming 3) turned

  • Link to Web or Database

    What if any solutions would be suggested if I need to place links to data or images on the web in indesign?

  • Having trouble getting videos onto iPod

    I have several AVI and MPG's of various TV shows on my PC. They won't open using iTunes, but they play fine with Media Player. Is there an add in for iTunes to allow other formats? The support database claimes iTunes has a built in converter to chang