How to change the format in the application server

The following is the uploading file in the application server:
Directory:  /usr/sap/tmp
Name:       ZMIRACA_SD27_LIUNIN_20070109_111913.csv
,0,000,ZMAT_TERRY,,19.12.2006,test material by terry,
,0,000,ZMAT_TERRY,,19.12.2006,test material by terry,
I click the menu System->List->Save->Local file->Spreadsheet and give a name: a.csv, then I open "a.csv", I find ",0,000,ZMAT_TERRY,,19.12.2006,test material by terry,,,EXTERNAL P,1.000,000,EA,," in one cell,but I want to separate them in different cell according to comma. Do you have some idea?
Thanks in advance!
Nina

HI Nina
Have created a CSV file myself on application server using the following example code:
parameters: fname type filename obligatory lower case.
data: it_t001 type table of t001.
data: str type string.
field-symbols: <wa>, <fld>.
select * into table it_t001 from t001.
open dataset fname for output in text mode encoding default.
if sy-subrc ne 0.
   write:/ 'Unable to open file.'.
else.
   loop at it_t001 assigning <wa>.
        clear: str.
        do.
          assign component sy-index of structure <wa> to <fld>.
          if sy-subrc ne 0.
             transfer str to fname.
             exit.
          elseif sy-index = 1.
             move <fld> to str.
          else.
             concatenate str <fld> into str separated by ','.
          endif.
        enddo.
   endloop.
endif.
After executing the program, have checked the file using following methods and i dont have any problem:
1. FTP transfer to PC.
2. AL11 -> Display -> Menupath: System->List->Save->Local File->Spread Sheet
3. Transfer via transaction: CG3Y.
In all the cases, the values are in separate cells. Please verify.
Kind Regards
Eswar

Similar Messages

  • How to change the application server paramters in 9ias

    I want to change the change the heap size that JVM can use at runtime instead of changing it manually. The paramters are Command Line Options, for OC4j(Multiple VM configuration), the parameter is -Xmx in Java Options.
    So I wanted to know if it is possible to change these Command Line Options at run time through Java code inside the application.

    Hi,
    I think you didn't get what I intended to say. you said "what i find is :Problem:
    RZ21->Technical Infrastructure->Availability Monitoring->CCMSPING instance for XB1 -Under Monitored systems".
    Now, find your saplogon.ini file . It should have the correct information about your system with the application server. Try 'Load System' from your saplogon.ini file. You should be able to the correct information then.
    Hope it will help you.
    Rajeev

  • How to change the application icon in 10g

    Dear all,
    how to change the application icon in forms 10g. i mean the icon which is located on the window it self.
    Best Regards,
    ShoooSh

    Hello,
    <p>Maybe you could find a solution in this article</p>
    Francois

  • How to change the web server??

    How to change the web server in the details of the mobile application component in the MI webconsole??

    hello irene,
    had your tried checking on the "Use IP instead of host
    name" checkbox?
    to edit your registered application info, go to
    "Upload Mobile Component" tab and click on the Edit icon
    on the left part of the record list which corresponds to
    the application you had just uploaded.
    your application is uploaded to the same host as your
    web console application is running on. if you like to
    point it to a different server where you have your
    archive accessible, you have to change your mcd
    deployment attributes on your middleware. try the ff:
    1)run tcode: mi_mcd
    2)click on Create Mobile Component
    3)Enter Mobile Solution Name and Version
    4)Click on Display MCD
    5)Select Deployment Tab
    6)Click on Edit
    7)Change the values of WEBSERVER and WEBPATH location eg.
      if your archive is located at
      http://myotherserver:80/archive/myapplication.war
      your entry will be:
      WEBSERVER: http://myotherserver:80
      WEBPATH: /archive/myapplication.war
    where you myotherserver is the name of your http host
    server and myapplication.war is the name of your archive.
    the archive directory is just a virtual directory where
    your application archive is.
    you might need to change the port number depending on
    your http server port.
    regards
    jo

  • How to give the application server file path in the module pool programming

    Hi,
         Could somebody help me how to provide the application server file path in module pool programming once the logo is uploaded to sap system.
      For eg I have imported a logo name ‘owens’ into sap system by using transaction ‘se78’; now I need to call the path in the below url,
    if container2 is initial.
    CREATE OBJECT CONTAINER2
      EXPORTING
        CONTAINER_NAME              = 'PICTURE_CONTAINER2'.
    CREATE OBJECT PICTURE2
      EXPORTING
        PARENT = CONTAINER2.
    CALL METHOD PICTURE2->SET_DISPLAY_MODE
      EXPORTING
        DISPLAY_MODE = CL_GUI_PICTURE=>display_mode_fit_center
      EXCEPTIONS
        ERROR        = 1.
    CALL METHOD PICTURE2->LOAD_PICTURE_FROM_URL
      EXPORTING
        URL    = " ? "
      EXCEPTIONS
        ERROR  = 1
        Others = 2.
    endif.
    Thanks in advance
    Deepu

    hi Deepu,
    Use FM '/SAPDMC/LSM_F4_FRONTEND_FILE' for fetching the data from the application server path/presentation server path
    Regards,
    Santosh

  • How to change the application alias for a web project in NW7.2

    Hi,
    a simple question, but I could not manage to solve it: How do I change the application alias (the url) of a web project? I'm using Netweaver 7.2 and all the tutorials I found refer to earlier versions and do not work anymore.
    In particular, I would like to change e.g. "server.com/vendor~webbappname" (the standard url of the web project) to "server.com/mywebapp".
    Thanks in advance for your help!

    Hi,
    Try customizing the <context-root> element in the web.xml deployment descriptor, for example:
    <?xml version="1.0" encoding="ASCII"?>
    <application xmlns="http://java.sun.com/xml/ns/javaee"
               xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
               xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
              http://java.sun.com/xml/ns/javaee/application_5.xsd"
               version="5">
               <display-name>YourWebApp</display-name>
               <module>
                   <web>
                   <web-uri>YourWebApp.war</web-uri>
                   <context-root>mywebapp</context-root>
              </web>
         </module>
         <module>
              <ejb>YourWebAppEjb.jar</ejb>
         </module>
    </application>
    Afterwards, rebuild and redeploy your application.
    I hope that helps.
    Regards,
    Yordan

  • How to change the application title in apex while importing it ..

    Hi ,
    I have an issue here. As per the requirements I need to change the application title in Apex while
    importing it from One instance to another instance.
    Ex: My application title is WATERFALL PORTAL in iWATERFALL instance ,it must be changed to PUAT PORTAL if im Importing it to PUAT instance.
    This change has to be done Dynamically. Without Entering it Manually.
    Kindly help me out and Will be Great for your Assistance.
    Thanks,
    Vishal

    1001804 wrote:
    Hi ,Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your forum profile with a real handle instead of "1001804".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have an issue here. As per the requirements I need to change the application title in Apex while
    importing it from One instance to another instance.Please clarify what you mean by "application title". The Application Name in the application definition? The displayed Logo in the user interface properties?
    Ex: My application title is WATERFALL PORTAL in iWATERFALL instance ,it must be changed to PUAT PORTAL if im Importing it to PUAT instance.
    This change has to be done Dynamically. Without Entering it Manually.Also clarify what you mean by "instance". An "APEX instance" refers to the APEX installation in a database. The "APEX instance" does not have a specific name property, and would therefore usually be referred to using the database name. Or do you mean the APEX workspace containing the application?

  • How to change the Oracle Server Hostname

    Good Day every one,
    Am working on Oracle Application 12.1.3
    And Database 11.2.0.3
    And OS RedHat linux 6.1
    I want to change the Server host name how can I do this in simple steps ?
    Is there is any pad impact on my server or application ?
    Regards

    Please also see:
    How to change the hostname and/or port of the Database Tier using AutoConfig (Doc ID 338003.1)
    How to change the hostname of an Applications Tier using AutoConfig (Doc ID 341322.1)
    Or, use Rapid Clone.
    Rapid Clone Documentation Resources For Release 11i and 12 (Doc ID 799735.1)
    Cloning Oracle Applications Release 12 with Rapid Clone (Doc ID 406982.1)
    Thanks,
    Hussein

  • Where(How to change the SMTP- Server

    Hello,
    i'm using the OAS 10.1.2.0.2
    While installation OAS i entered the name of the actual working SMTP- Server.
    Sending mails worked fine until today.
    Now the name of the SMTP- Server has changed and i wanted to change it(the name) in the Application Server, but i didn't find one/all place(s) where i had to change the name(s) of the SMTP- Server.
    Is there anyone who can help me??
    Thanks a lot.
    Best regards.
    Florian

    Refer this:
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/reconfig.htm#sthref681
    Thanks
    Shail

  • How to change the Application flow in ISA 7.0

    Hi All,
    I am new to ISA 7.0 and working on B2B application.
    We have made changes in the branding of custom application and now we want some custom functionality to be included in the application flow of our B2B application.
    Suppose, I have p1,p2,p3,p4 pages(JSPs) in standard aplication flow, now I want to skip p2 and p3.
    In p1, once i select shopping cart icon, it should take me p4, which is a order entry page.
    I checked config.xml file and didnt understand much .... and also have a doubt, if in ISA 7.0, apart from config.xml file , is there any other file to be changed to get a custom flow.
    Someone, guide me to acheive this custom flow,please share your inputs on this.
    Thanks,
    Syed

    Change in java coding...in related JSP n action files

  • How to change the application status back to build and run

    hi ,
    i changed my applications status to run only .. and now system is not allowing me to change the status of my application back to "build and run"
    any help is appriciated..
    Thanks

    I found the solution for my problem as go on below track and change the setting.
    Home-->Application Builder-->Cross Application Reports-->Build Status and Application Status

  • How to change the application (MIDlet) input language at MIDlet run-time?

    Hi,
    I am working on a Messaging (SMS) J2ME MIDlet where it is required to change the input language for a TextField/Area at run-time.
    For example if default handset language is set to Chinese, during MIDlet execution time the textfield language (locale) should be changed to Arabic/Spanish/French. Here I understand that provided the required languages are supported on handset, one can change them from handset settings.
    Can anyone help me out with changing the microedition.locale to zh_CN from en_US?
    Thanks

    Dear Ted,
    I want to change DataSource, it means the report will be load and change connection at run time (using CRJ SDK) and i want to change the SCHEMA.Tablename in CommandTable in report.
    I also use the parameter to do it, but it can not be at run time, just correct when designing.
    Could you please help me on this. You can post the code if any.
    Thanks,
    Nha

  • How to change the applications that load on start up?

    I keep getting an error message that says no memory and to close programs on the start up disk. How do you do this?

    System Preferences - User & Groups - Login Items - highlight unwanted items and then click the - symbol.
    Also in Lion if you leave an application or application file running when you shutdown it will re-launch on startup. If you dont' like that, System Preferences - General - uncheck the box that says "Restore windows when quitting and re-opening apps."

  • How to populate the application server data on screen

    Hi..
    In my present requirement...
    I need to give the vehicle no field on my custom screen...then i will press the capture weight button....
    then it needs to fetch the weight from app server file (columns in file...1.date 2.time 3.weight...4.key.)and need to populate on my screen...
    Could anybody suggest me the solution for this...

    hi,
    Move the file data internal table. at runtime capture the required data from this internal table for the given vehicle reg.number and u can display the same data one the screen.
    regards,
    Raghu

  • How  to  change  NLS_LANG setting of Oracle Application Server 10g R3

    Hi
    I  understand  that NLS_LANG for  OAS 10g  can  be  set  in three  different  places
      in the Windows  registry  \\HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME  ( there is no  this key in my Windows 2003   server)
    – in the file opmn.xml   the  OC4J  configuration ( <environment><variable id=”NLS_LANG” value=”″></environment>),  there is no entry  like  this  in the opmn,xml ( probably is  using the  default  value)  
    – in Oracle  HTTP  server  configuration  (  which  file....?)
    Could  any  one   answer  the  below  question  for me please:
    1. What is  the  default  value of  NLS_LANG for an   OC4J container  (OAS 10g R3).
    2. What  is the  default  value of  NLS_LANG  for  Oracle http server  (OAS 10g R3).
    3.  How  can I  set  a  New  value  for   NLS_LANG  in  both Oracle HTTP  server  and OC4J in OAS 10g R3.
    Thanks  so  much  for  your promptly  reply. 

    Hi,
    Make sure the value of the NLS_LANG environment variable is compatible with the default locale setting of the operating system.
    Check the below links :
    http://docs.oracle.com/cd/B14099_19/core.1012/b14004/iasconfig.htm#BHCJHBBB
    Postinstallation Tasks
    Thanks,
    Sharmela

  • How to change the name of HFM EPMA Application while migrating from dev to

    We have HFM EPMA application in Dev env on 11.1.2.2. We want to migrate aplication to production environment with different name. We are using Life cycle management to migrate the application. I know life cycle management but do not know how to change the application name during migration.
    As we have EPMA application so copy utility will not work. Please helop.

    Hi ,
    You could use the Copy app utility to migrate the application from Dev to Prod.You could have your desired app name while setting up the copy process.
    The EPMA application from Dev will be converted to an Classic application in Prod after the copy.
    Then you might need to use the "Transform Classic to EPM Architect" and convert it to an EPMA application.
    So your Application with the data from Dev will be moved to Prod.
    To Navigate ,
    Launch Workspace
    Navigate ->Administer->Transform Classic to EPM Architect
    Thanks and regards,
    Gunasekaran rayar
    Edited by: Gunasekaran Rayar on Nov 28, 2012 5:04 AM

Maybe you are looking for

  • Can't expand Scrolling Credits to more than 3.3 seconds

    I'm adding a scrolling credit at the end of my movie; not over a video clip, but as a stand-alone credit with one of the standard backgrounds. When I first put it in the project, it defaults to a 2-second length. I need about 15 seconds, but it will

  • Song as Alarm Clock Tone Stopped Repeating with iOS 8

    This is a statement of fact rather than a question since the Feedback page doesn't allow me to submit anything. Since the update to iOS 8, my selected MP3 as my Alarm Clock tone no longer repeats. It used to repeat in iOS 7 until you manually turned

  • 3D issue Acrobat XI Pro

    I have been using Acrobat Pro 9 to add 3D images (mostly .WRL/VRML and .dae files) to lecture notes that I use to teach.  I just upgraded to Acrobat XI Pro and was surprised to find that the 3D capability was gone.  Is the only option to spend anothe

  • Safari and Google Chrome running slow on my MacBook

    Hi there! Over the last couple of weeks Safari (and Google Chrome) have started running very, very slow on my MacBook(I own a MacBook white, OS X version 10.6.8). I didn't install anything new over the last few months, so I don't think that is the pr

  • Deploy Powershell 3 to Win7 Via SCCM 2012R2

    Is it possible to deploy Powershell 3 to Windows 7 clients using SCCM 2012R2? Or WSUS?  I have read a few blogs describing different methods such as dism to repackage the cab file or using a scripted deployment type (Windows6.1-KBxxxxxxxx64.msu /quie