How to write data on to a location other than desktop or application server

Hi all,
        I already posted this question.But  i didn't get exact answer
Can anyone explain that how to write data on to a share drive located on other Nonsap server.Please I dont want to FTP the file.I dont want that solution.I need to write directly on to that Nonsap share drive..
Thanks,
Balaji

I guess the only way is sending the file using a XI connection to the non sap system server,generate RFC adapters, inbound, outbound interfaces, using xml or soap or IDOC to move the file to that system.

Similar Messages

  • How to move file from folder f1 to other folder f2 in application server.

    Hi all,
    I want to know if there is any function module which can help me in moving a file from one folder to other folder in application server. Application server operating systems is Unix.
    I want do this only by function module, please let me know what parameter i need to pass.
    Thanks in advnace.

    You need to create a unix (OS) command and execute the same
    SM69 is to create a comman &
    SM49 is to execute the same.
    You can use SXPG_COMMAND_EXECUTE fm to execute from the program.
    refer to this link
    How can I execute external application?
    Regds
    Manohar

  • How can you download Yosemite to a location other than Launchpad?

    I am trying to make a bootable USB drive of Yosemite. When I download Yosemite from the App Store it goes into Launchpad. I can't make a bootable backup from this application. How do I get the Yosemite installer to download to my Applications folder instead of Launchpad?
    Mac Pro Mid-2009
    Yosemite
    Thank you!

    It does not download to Launchpad. Launchpad isn't a location. It downloads to the Applications folder. Copy the installer to your Downloads folder. Follow these instructions for a bootable flash drive:
    How to Make an OS X Yosemite Boot Installer USB Drive
    Or:
    Open the Terminal in your Utilities folder. At the prompt copy and paste this entire command line:
    sudo /Applications/Install\ OS\ X\ Yosemite\ Developer\ Preview.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Yosemite\ Developer\ Preview.app --nointeraction
    You need to have the installer in your Applications folder or change the paths in the above command line. Be sure to label your USB flash drive as, Untitled.

  • How do I get Siri to recognize locations other than home work or other?

    Currently, Siri only recognizes locations in my contact that are named work, or home. When I add a custom label, like apartment, and Add a new address with that label, Siri will not recognize that label. Siri will not respond to the question remind me to check my email when I get to my apartment. However, Siri will respond to the question remind me to check my email when I get home. Does anyone know how to get Siri to recognize custom labels?
    Thank you.

    Please review this document:
    TWAIN not installed | Photoshop Elements 9 and later
    Kindly report back.

  • How to write data to an XML file present under application server

    frnds: can ne one tell me, how to write data in to a file, which is present under a application server
    Ex: i want to write a string data in to a file test.txt which is present under "http://localhost:8080/<some_webapp>/test.txt"
    Note:i have deploted a service<some_webapp> under Tomcat/webapps dir

    Very simple. A servlet can writes to that file if it has the good rights.
    In the servlet get (or post) method, use a code like this:
    import java.io.*;
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) {
    try {
    String filePath = this.getServletContext().getRealPath("/text.txt");//See http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
             PrintWriter writer = new PrintWriter (filePath);
            //or BufferedWriter out = new BufferedWriter(new FileWriter(filePath));
            writer .println("aString");
           writer.flush();
            writer .close();
        } catch (Exception e) {
           e.printStackTrace();
    }Hope That Helps

  • How to write date format in bdc

    how to write date format in bdc report

    Hi,
         First you have a data decleration i.e data l_format(10) type c.
    now if a variable say l_date which is of sy-datum type, you will have to  <b>write l_date to l_format</b>, this will transfer the date in which you(user) have set the date format in user settings. Never hard code the format such as dd.mm.yyyy. or mm/dd/yyyy because the may have different formats, and the BDC will fails. After you have used write to to new l_format, pass this new value to BDC recording.
    Reward if useful.
    Kiran

  • How to write data to text file using external tables

    can anybody tell how to write data to text file using external tables concept?

    Hi,
    Using external table u can load the data in your local table in database,
    then using your local db table and UTL_FILE pacakge u can wrrite data to text file
    external table
    ~~~~~~~~~~~
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_7002.htm#i2153251
    UTL_FILE
    ~~~~~~~~~
    http://download-east.oracle.com/docs/cd/B19306_01/appdev.102/b14258/u_file.htm#sthref14093
    Message was edited by:
    Nicloei W
    Message was edited by:
    Nicloei W

  • How to write data/result in excel or external data source in c#??

    Hello Team,
    I have automation framework in c#. So there are multiple testmethod and testclasses.....so i havt to write result of every testmethod ...in below format..in excel 
    [TestMethod]
    public void Demo()
    WriteIntoExcel("TestClassName","TestmethodName", Pass/Fail, Time);
    I can all info in every methods but i dont know how to write it in excel or any other external datasource after every method .....
    Actually i want c# code to which will write data/result in excel ...excel might be saved in shared drive...
    Thanks in advance

    Hi Mon,
    We also could use OleDbConnection to insert data into excel.
    using System.Data.OleDb;
    using Excel = Microsoft.Office.Interop.Excel;
    using Microsoft.Office.Interop;
    //in the method section use as :
    string datevariable = "02/02/2010";
    string namevariable = "Shyam";
    string strConnectionString ="";
    string cmd;
    string filepath = ""C:\\sample.xls";
    strConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+filePath+@";Extended Properties=""Excel 8.0;HDR=Yes;""" ;
    OleDbConnection conn =new OleDbConnection (strConnectionString);
    try
    conn.Open();
    catch(Exception e)
    Console.WriteLine(e);
    try
    // Insert into Sheetname
    cmd = "Insert into [Sheet1$] ( [Date], [Name]) values ('" +datevariable+ "','" +namevariable+ "');
    //Similarly you can update also
    OleDbCommand cmdUpd=new OleDbCommand(cmd);
    cmdUpd.Connection = conn;
    cmdUpd.ExecuteNonQuery();
    conn.Close();
    catch(Exception e)
    Console.WriteLine(e);
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to write data from query into Real time cube?

    Hi All,
    Can anyone explain me step by step how to write data into a real time cube from front end queries.
    Thanks in advance

    Hi
    You can do this using Integrated Planning
    You need to create a aggregation level on the Real Time infocube and can create Planning function/sequence, Variables if needed.
    Then you can create query on this aggregation level and you can make the keyfigures Input ready in property pane and you can change the data and save it into cube.
    Please find below help link which clearly explains step by step about Integrated Planning like creating input ready queries etc.,
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/0c033316cd2bc4e10000000a114cbd/frameset.htm
    Regards
    Ravi

  • How to copy data from one column to other column

    hi,
    can any one tell me how to copy data of  one column to other column for some specific data
    example
    productno  ocalyear        actualsales  prevplansales   currentplansales
    p001       2007                  100              120                   
    p002       2007                   90               100
    p003       2007                  120              130
    p004       2007                  140              120
    p005       2007                  150              150
    i want to copy data of p001 and p002 from prevplansales to current plansales
    productno  ocalyear        actualsales  prevplansales   currentplansales
    p001       2007                  100              120              120     
    p002       2007                   90               100              100
    p003       2007                  120              130
    p004       2007                  140              120
    p005       2007                  150              150
    is it possible to do?
    please suggest me.
    i will assign points

    Hi,
    I think the needed techniques are already described in the documentation, e.g. in
    http://help.sap.com/saphelp_nw70/helpdata/en/45/e641e4c61256dee10000000a114a6b/frameset.htm
    or
    http://help.sap.com/saphelp_nw70/helpdata/en/45/e641e4c61256dee10000000a114a6b/frameset.htm
    The main techiques used in the above example to bind the filter of the planning function to selected (marked) objects in the analysis item or to drop down boxes (or both). These techniques are used in the above examples.
    Regards,
    Gregor

  • Using External_Stage can we specify a location other than staging dir

    While using external stage mode for weblogic(I am trying for weblogic92)we must manually copy the deployment files(web app) to the staging directory of each target server before deployment.
    Is there a option to copy the deployment files to another location other than Server's staging directory? To be more specific can I specify a location which is outside the server?
    Secondly, with no-stage option of weblogic we can have a external location for the web application, but in case of the cluster,
    this location has to be either shared or
    the secondary node should have the same location(path to the web application) as that of the primary server.
    Here is my config.xml entry of the primary node.
    <app-deployment>
    <name>TestWebApp</name>
    <target>TestCluster</target>
    <module-type>war</module-type>
    <source-path>C:\TestWebApp\TestWebApp.war</source-path>
    <security-dd-model>DDOnly</security-dd-model>
    <staging-mode>nostage</staging-mode>
    </app-deployment>
    Here there is only one source path for the entire Cluster. So if both of the server nodes have a valid location(C:\TestWebApp\TestWebApp.war), then the deployment will be fine on a running server. But on the second server node, if the Web app does not exists on that location, deployment will fail.
    When we share the location the concept of cluster is lost. If go with the second option then the user is restricted to have the same path on second node also.
    Is there any way to specify differnt locations(of the same web app) for different servers in the Cluster?

    A few points of clarity:
    1) Session starts in consumer group LOGIN_GROUP. That does not have session queueing since queueing sessions at log on time results in the user experience of a hung session, which we cannot have. Whether service X is used to get it there or something besides services is fine; how is not a concern at this point.
    2) Session moves to consumer group MAIN_GROUP after about 5 CPU seconds in the LOGIN_GROUP. We want to do this because the MAIN_GROUP has session queuing, which we want for most sessions after they have the unqueued login experience per point #1.
    3) Session moves to consumer group SLOW_GROUP after about 60 CPU seconds in the MAIN_GROUP (or some number of seconds; exact numbers are not the main focus here). We want this because we want long-running queries to be downgraded. However, we don't want to leave the session there since the query is the thing that is running long, so we want the session to get back to MAIN_GROUP when it is done. However, if we use SWITCH_FOR_CALL when going to the SLOW_GROUP, it will switch back to the LOGIN_GROUP. Which is the trouble--LOGIN_GROUP is an unqueued group, so we don't get the desired session queueing.
    4) The solution must be fully automated without any DBA intervation or application code. We cannot use appliation code as this solution is intended for BI users working in tools that have direct data access. Thus prevents the use of DBMS_SESSION as you stated in your posts. How would we do that switching in an automated fashion without application code?
    5) We cannot put the DBMS_SESSION commands in a login trigger since that would switch groups to MAIN_GROUP and would again run the risk of queueing a session at login, which feels like a hung session to users and results in a bad user experience and help desk calls.
    Thanks!

  • How to install ovi suite to a drive other than C:?...

    how to install ovi suite to a drive other than c:??? my c: drive is almost full with other partitions perfectly free to install it, how do i do that? can i use previous versions of ovi suite to use with my e63? at this point, i'm unable to use ovi suite at all, because there's no room to install it on my c: drive.
    allllllllso there's one more thing, when i originally had tried installing ovi suite on my computer i had more than 1gb free. after installing it i on'ly had 500mb free. i had only intended for it to use a very small amount of space, and since i also use my c: drive for virtual memory i quickly uninstalled it, looking for an option i'd maybe skipped over while installing it the first time. no luck. anyways, when i looked in the add/remove programs control panel the installed size of ovi suite was only 40-50mb. even after uninstalling ovi suite the extra memory space that seemed to all of a sudden taken up by the installation stayed used.
    when looking at the file sizes of everything on my hard drive, (including system files and paging file) there is still a descreprency between the amount of memory used and the size of all files total on the drive. at this point im quite disgusted and disapointed in ovi suite as i'm mostly unable to use it to connect my phone to my computer and i'm also having problems with the CA101 cable as well. i guess i'll have to go check for another cable.
    nokia!!! wake up and fix yo **bleep**!!!!
    anyone have any solutions for the main problem? (installing to a drive other than c? is there support for this option in any of the new beta versions? can that be included in the newest betas? i'm suuuuuure i'm not the only one begging for this option!!!

    Hi ostrenga4, sorry to hear about your experiences.
    When installing Nokia Ovi Suite to PC, Windows makes "system restoration points", which are available to restore operating system to previous condition, if something goes wrong, for example in driver installation.
    You can change install location of Nokia Ovi Suite with following:
    - Download Nokia Ovi Suite install package from Nokia Ovi Suite pages
    - Start Windows Command prompt
    - From Command prompt, navigate to folder containing Nokia Ovi Suite install package, which you downloaded
    - Start Nokia Ovi Suite install package with command line "Nokia_Ovi_Suite_webinstaller.exe /TARGET="D:\TestDir\Test"
    - This results, that Nokia Ovi Suite installer creates folder D:\TestDir\Test (if that doesn't exist) and installs Nokia Ovi Suite there.
    - Unfortunately, Windows Installer still keeps installer cache files and system restoration points in C: drive (or whatever your system drive is)
    As you can see, this is possible, but it is very much recommend to have enough space for installing software into system drive.
    Cheers, Samuli

  • Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error, so you can load Firefox again.

    Whenever you try to save a PDF file to a location other than the default location ('My Documents'), Firefox freezes & you have to go to the 'Task Manager' to exit Firefox and stop the error. I have Windows XP (Media Center Edition) and all updates (Firefox, Adobe PDF, Microsoft, virus protection, etc) are installed. This has only been a problem since Firefox 4, and isn't a problem in Internet Explorer.

    Hi David,
    Thank you for your detailed question. It sounds like the real issue is pdf files. Are there any antivirus/firewalls that might be blocking this specific file type? or are there any preferences in your control panel that might be blocking this?
    Do you have any stored preferences for PDF files in Firefox?
    *[[Applications panel - Set how Firefox handles different types of files]]

  • How do i install reader to a drive other than the boot drive?

    how do i install reader to a drive other than the boot drive?

    Hi nicksdaddy,
    There is an offline version:
    http://get.adobe.com/reader/enterprise/
    Hope that helps!
    Stacy

  • How can i transfer songs from another itunes other than mine

    how can i transfer songs from another itunes other than mine

    Purchases made under 1 Apple ID are permanently associated with that Apple ID and CANNOT be transferred to another Apple ID.  So if you want to keep those songs, you'll need to always have access to your dad's account.
    B-rock

Maybe you are looking for

  • Font Spacing Inconsistent in pdf Print Out-How to Fix

    I have a hard copy of a pdf that was probably made from many different pdfs (and or cut and paste from) and Word docs.  On some of the pdf pages, the fonts have blank spaces between the letters of a word and sometimes two words without a space betwee

  • Upgrade BOE XI 3.0 to 3.1 SP2

    Hi there, I have to upgrade from BOE 3.0 to 3.1 SP2. Do I have to upgrade to 3.1 w/o first, then upgrading to SP1 and afterwards to SP2 and then to FP2.2? And that level by level for Enterprise, client tools, Live Office, CR and XC? Or ist there a sh

  • G/L account changes

    Hi, How can I see the G/L account changes which have been made in transactions FS00/FSS0? If I don't want a recalculation in foreign currency when posting to an account, do I need to flag the "Only balances in locl currency" box? Are there any other

  • Freehand keeps crashing in Snow Leopard

    Hi guys... Suddenly Freehand started crashing everytime I opened... Here is the log: Process:         FreeHand MX [640] Path:            /Applications/Macromedia FreeHand MXa/FreeHand MX.app/Contents/MacOS/FreeHand MX Identifier:      com.macromedia.

  • What the IP address does the Web Server get?

    Hi all, We have a scenario like this: Client——>Proxy(like squid)—........—>Web Server( 6.1 SP7)——>Application We know that the Web Server will get the remote IP address, and set as proxy-ip in HTTP Header. But, what the exact remote IP address does t