Change the attachment name while sending PO as mail..

Hi,
I’m able to send PO Form through mail using NACE, configuration for output type.
But my Attachment name is always showing as ‘Print Data‘.
My requirement is to change the attachment name as below.
Program: SAPFM06P
Script: Z_SD_PORDER
Please help on this issue.
Thanks in advance.
Regards,
Kumar

I didn't find any field with PACKING_LIST in program 'SAPFM06P'.
If we create the copy of 'SAPFM06P' kindly let me know where I need to change the same..
in form entry_neu using ent_retco ent_screen.
the below is the code.
*   INCLUDE FM06PE02                                                   *
form entry_neu using ent_retco ent_screen.
   data: l_druvo like t166k-druvo,
         l_nast  like nast,
         l_from_memory,
         l_doc   type meein_purchase_doc_print.
   clear ent_retco.
   if nast-aende eq space.
     l_druvo = '1'.
   else.
     l_druvo = '2'.
   endif.
   call function 'ME_READ_PO_FOR_PRINTING'
        exporting
             ix_nast        = nast
             ix_screen      = ent_screen
        importing
             ex_retco       = ent_retco
             ex_nast        = l_nast
             doc            = l_doc
        changing
             cx_druvo       = l_druvo
             cx_from_memory = l_from_memory.
   check ent_retco eq 0.
   call function 'ME_PRINT_PO'
        exporting
             ix_nast        = l_nast
             ix_druvo       = l_druvo
             doc            = l_doc
             ix_screen      = ent_screen
             ix_from_memory = l_from_memory
             ix_toa_dara    = toa_dara
             ix_arc_params  = arc_params
             ix_fonam       = tnapr-fonam          "HW 214570
        importing
             ex_retco       = ent_retco.
endform.
Kindly give the clear view.

Similar Messages

  • Changing the table name while drill down at the dashboard query

    I have a DAY fact table that has about 1B rows.
    The purpose of this table is to store on hand quantity for each item per day.
    On the presentation layer I have a dashboard that will display average on hand qty per year and then user can drill down to quarter/month/week and then by day level to see the actual value at evey level.
    Its hard to run aggregation on fly as all my 3 TEMP tablespace 32gb each filled and then I get error can not extent TEMP file.
    So I thought I will do the aggregation at the database level and store the aggregated data in another table. So at first dashborad will read this new aggregated table to display qty at yearly. As soon as user drill down to quarter the dashbord should query the actual DAY fact table by filtering for specific year and quarter.
    IS it possible? Can I change the table name while I drill down to lower level?
    Thanks in advance.

    Hi use,
    Yes. This is possible in OBIEE. You need to use Action Links to have navigation between reports. The main idea is to have 2 analysis. One with your aggregated data by year (using your aggregated table), and another one with the rest of the hierarchy and data (using normal fact table)
    You add an action link on this report, that can navigate to the second report. showing "the details" (in your case would be the rest of the time dimension).
    Please refer to http://www.rittmanmead.com/2010/07/obiee-11gr1-action-framework-and-conditions/ for actions links.
    Another way is to create 2 analysis, then go to the 2nd analysis, and filter the column year as "Is based on results of other analysis" and you select there the first analysis. In this case when you click on the year in the first analysis, this value will be passed to the second analysis so you can filter the rest of the hierarchy based on the year you clicked on the first analysis.
    If helpful, assign points.
    J.

  • To change the printer name while printing the invoice

    Hi,
    I have a requirement like if there is already an entry in NAST table with o/p type ZURD and printer name USJC-PM03,then an error message has to be displayed like 'This Output already printed in USJC-PM03,Change the printer name 'USJC-PM03' to 'LOCL' and then print' on the vf03 screen.
    But even if  I change the printer name from 'USJC-PM03'  to 'LOCL',it is showing the same error message.This message should not be shown.
    I have used the following code in the program.
    lf_formname = tnapr-sform.
    determine print data
      PERFORM set_print_data_to_read USING    lf_formname
                                     CHANGING ls_print_data_to_read
                                     cf_retcode.
      IF cf_retcode = 0.
    select print data
        PERFORM get_data USING    ls_print_data_to_read
                         CHANGING ls_addr_key
                                  ls_dlv-land
                                  ls_bil_invoice
                                  cf_retcode.
      ENDIF.
      IF sy-tcode = C_VF03.
        SELECT SINGLE * FROM tnapr WHERE kschl = 'ZURD'
                                       AND nacha = 1
                                       AND kappl = 'V3'.
        SELECT count(*)
        FROM NAST
        INTO lv_count
        WHERE objky = ls_bil_invoice-hd_gen-bil_number
        AND    kappl = c_v3
        AND    kschl = c_ZURD
        AND   ldest = c_PM03.
        IF LV_COUNT GE 1.
          Message e000(zup) with text-001 text-002 text-003.
        ELSE.
    determine smartform function module for invoice
            CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
                 EXPORTING  formname           = lf_formname
                    variant            = ' '
                    direct_call        = ' '
                 IMPORTING  fm_name            = lf_fm_name
                 EXCEPTIONS no_form            = 1
                            no_function_module = 2
                            OTHERS             = 3.
    call smartform invoice
              CALL FUNCTION lf_fm_name
                   EXPORTING
                              archive_index        = toa_dara
                              archive_parameters   = arc_params
                              control_parameters   = ls_control_param
                    mail_appl_obj        =
                              mail_recipient       = ls_recipient
                              mail_sender          = ls_sender
                              output_options       = ls_composer_param
                              user_settings        = space
                              is_bil_invoice       = ls_bil_invoice
                              is_nast              = nast
                              is_repeat            = repeat
         importing  document_output_info =
    *Uncomented the line to get the spool id or OTF formatted data -
    *NY047532
                   IMPORTING
                          job_output_info      = w_job
    NY047532
                    job_output_options   =
                   EXCEPTIONS formatting_error     = 1
                              internal_error       = 2
                              send_error           = 3
                              user_canceled        = 4
                              OTHERS               = 5.
          ENDIF.
        ENDIF.
    When should be done for the error message not to be shown when the printer name is 'LOCL'.

    Hi,
    Here my requirement is first the user has to check the nast table if there is any entry with o/p type ZURD and printer 'USJC-PM03' .If there is an entry then an error message 'This Output already printed in USJC-PM03,Change the printer name 'USJC-PM03' to 'LOCL' and then print' has to be displayed.
    Then if i close this popup window which is showing error message and change the printer name from 'USJC-PM03' to 'LOCL', and click on execute button,the printer name is not getting changed and still the error message is getting displayed.How to remove this error message?

  • Attachment name while sending mail

    i want to give attachenemt name as order.pdf while sending the mail with attachment ,i am using SO_DOCUMENT_SEND_API1 function module to send the mail with attacnment

    Kranti,
    Try the code in this link..
    Re: Email
    Instead of giving ipacking_list-doc_type as XLS, give it as PDF.
    ipacking_list-obj_descr : description
    ipacking_list-obj_name : name of the file
    Regards
    Indu

  • Change the Display Name of sender

    hi all,
    I am sending email from SAP to outlook
    I suppose the sender name is concatenated from the SAP account master(SU01) but it seems it is cache somewhere.
    For example, the original name of my account is "Steve Jordan". I add "[From SAP]" in front to make it "[From SAP] Steve Jordan" through SU01. Then I send out an email through my account and I can see the updated name both in SOST and outlook
    Later I change the "[From SAP]" to "[Don't reply]" in SU01. By doing this I am intended to make the sender name "[Don't reply] Steve Jordan". Then I send out new email. However, in SOST and outlook, what I see is still "[From SAP] Steve Jordan"
    Please advise
    Thanks

    HI,
    *"As far as I am aware this is not possible in Mac Mail and is a major shortcoming considering that other mail applications are able to do this."*
    You can provide feedback ..
    http://www.apple.com/feedback/macosx.html
    Carolyn

  • Change the attachment name in email via webservice

    Hey,
    is there any chance to change die filename of attacheted files (reports) using email scheduling? There is no option in the webinterface. We are using the webservice for scheduling - call the scheduleReport method.
    There is a tag reportDataFileName for the webservice, but shows no reaction. The file ist every time named attachment.XYZ, where XYZ is the template format. We are using an XML Template for creating XLS reports, but reaching an attachment.xml makes it impossible for direct opening out of the email.
    A second problem is the message for the email, attached as message.txt and not directly written in the email.
    thx for any ideas, Sebastian

    Hi Sebastian
    This article might help you, http://blogs.oracle.com/xmlpublisher/2009/12/dynamic_delivery_file_naming.html
    Tim

  • How to do coding to change the file name while loading

    Hi All,
    Recently we have upgraded to BI 7.0. I am currently loading flat file from Application server. Flat file name will change after a period of month ex. from 17 dec to 16 jan one file name and 17 jan to 16 feb another name.
    I have a table /bic/pzscenario where i have start date and end date and another field(zscenario) which stores name of the file.
    Directory created is /interface/gsf/ so file name should be /interface/gsf/"value of zscenario based on system date which falls between startdate and end date".csv.
    can anyone tell me how to do coding for this in infopackage?
    Thanks this is very urgent. I tried using select statement
    select single /bic/zscenario from /bic/pzscenario into tab_zsce
    where zstartdate LE sy-datum or
              zenddate LT sy-datum.
    if sy-subrc eq 0.
    concatenate "/interface/" "gsf/" "tab_zsce-/bic/zscenario" into p_filename.
    endif.
    this coding throws me error saying unexpected endif...
    pls correct my coding. If the coding is wrong pls let me know how to code.
    Thanks & Regards,
    Bhuvana.

    Hi Bhuvana,
    Your code returns more than one "zscenario"  value,  this might be the reason for error.
    It shud be like
    sy-datum GE zstartdate and sy-datum LE zenddate
    Anu.

  • HT4436 I want to Change the Full Name on my ICloud Mail Account, but I cannot Change it. Any Solution ?

    Dear All,
    I need to change the Full Name on my Icloud E-Mail Account, but I cannot change it, Any Solution ?
    Tanguy

    Go to icloud.com >> mail >> gear in the upper right >> preferences >> accounts.  You can change it there.  In my testing, I had to close and reopen my mail.app for it to take affect.

  • Changing the file name of a PDF you send via email

    Hello Support,
    I am trying to find out how to change the file name of the attachment I send via email when I click submit via email. I would like the file to be sent with the file name, not some other file name.
    How can I fix it? This is very urgent! I need HELP!
    Cheers
    Joel
    Message was edited by: J Braden

    Hi,
    you can't.
    Except you save the file under a different name before you send it.

  • Email attachment name in sender mail adapter to the receiver file adapter

    HI ,
    Ths is regarding email to file scenario. I am trying to create file (in rceiver file adapter) with the same name as the email attachment that i read from mail sender adapter. I want ro use adapter module for this. I could find from blogs that there is module - GetAttachmentName - available that i can use for this in sender mail adapter.
    Can you please let me know what whetehr i neeed to mention any module key and parameters for this.
    I assume , i need to do following steps :Please confirm.
    1. i can use this module - after payload swap module and before standard mail adapter module in sender mail adapter
    2. select ASMA option in advanced tab in sender mail adapter
    3. In receiver file adapter select ASMA option in advanced tab in sender mail adapter
    4. Also select file name option in ASMA in sender mail adapter
    Thanks,
    Vamsi

    Hi Vamsi,
    your scenario is also described here: Re: sender mail adapter - attachment name
    If you use the Module getAttachmentName, which is described here,
    http://wiki.sdn.sap.com/wiki/display/XI/AdapterModulePI7.0GetAttachmentName
    your scenario should work as you described it.
    You just need to make sure that the Attachment Name that you read in the first place, is mapped to the Filename Attribute of the
    Fileadapter (http://sap.com/xi/XI/System/File/FileName).
    regards,
    Daniel

  • To change the icon name displayed by default while an ALV is displayed.

    Hi Experts ,
    Need to change the icon name EXPORT displayed by default , while an ALV is displayed to Download to Excel.
    How can this be achieved?
    Regards.

    Hi,
    You can copy the Status 'Standard' of the program 'SAPLKKBL' and create a Z. Change the icon name in the Z pf-status as wished. Now in the event slis_ev_pf_status_set of 'REUSE_ALV_GRID_DISPLAY' set the PF-Status to the Z that u created.
    Regards,
    Nikhil

  • For my iCloud account, how do I change the "full name" that appears as the sender?

    On my iCloud IMAP email account, the account lists my "full name" as the sender.  How do I change this to a nickname?  Curently, that "full name" rectangle is grayed out so I don't know how to change what's there.  Thanks for your help!

    You need to change this on the iCloud website, http://icloud.com - go to the Mail page, click the cogwheel icon at top right and choose 'Preferences', then click 'Accounts' in the toolbar of the pane which opens.
    Select the main account and you can change the Full Name. If you have aliases you will have to change it separately for each of them.

  • Changing the File Name

    Hi
    i am designing a adobe form which will be send in mail when a button is clicked, i found that the attachment name to be "unknown.pdf". how can i change this ???
    i found out a method called getAcrobatApplicationName() in XML and when i changed application name in that its not getting reflected. So is there any other way to change the file name on "Button Click" event?
    Thanks
    Gopal

    Hi Gopal,
    See if it helps:
    In NW2004s we use the following. getPdf() returns a byte[], the filename is "document-<username>.pdf" and source is the attribute of an IFrame UI element.
    code
    private void initPdf() {
    IWDResource resource =
    WDResourceFactory.createResource(
    getPdf(),
    "document-"
    + WDClientUser.getLoggedInClientUser().getSAPUser().getUniqueName(),
    WDWebResourceType.PDF);
    String source =
    resource.getUrl(WDFileDownloadBehaviour.OPEN_INPLACE.ordinal());
    wdContext.currentContextElement().setSource(source);
    [/code]
    On NW2004 we use a FileDownload UI element (with target=_self) and we call initFileBinaryType method in the wdDoInit method. Of course you still need to set the binary PdfData context attribute with the actual content of the PDF file.
    code
    private void initFileBinaryType() {
    IWDModifiableBinaryType pdf =
    initFileBinaryType(IPrivateTestAppView.IContextElement.PDF_DATA);
    pdf.setFileName("document-"
    + WDClientUser.getLoggedInClientUser().getSAPUser().getUniqueName());
    pdf.setMimeType(WDWebResourceType.PDF);
    private IWDModifiableBinaryType initFileBinaryType(String attribute) {
    return (IWDModifiableBinaryType) wdContext
    .getNodeInfo()
    .getAttribute(attribute)
    .getModifiableSimpleType();
    [/code]
    Regards,
    Arafat

  • Probem after changing the system name of EP 6.0 SP9

    Hi,
    I have changed the system name of the EP 6.0 SP9 system and restarted it and after I again shifted back to the old system name and restarted the system.
    Now the j2ee engine is not coming up ...
    I am placing the developer trace.
    Pl. suggest what might have went wrong.
    Thanks & Regards
    Mrutyunjay
    trc file: "E:\usr\sap\D01\JC00\work\dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 5552
    system name : D01
    system nr.  : 00
    started at  : Mon Dec 19 11:14:46 2005
    arguments   :
        arg[00] : E:\usr\sap\D01\JC00\j2ee\os_libs\jcontrol.exe
        arg[01] : pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties;E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : portald
    -> ms port    : 3601
    -> OS libs    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> files [01] : E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : portald
    -> ms port    : 3601
    -> os libs    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID9391400  : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID9391450  : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID9391400            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [01] ID9391450            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2144] Mon Dec 19 11:14:46 2005
    [Thr 2144] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 2144] [Node: bootstrap] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : E:\usr\sap\D01\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0093914
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_bootstrap
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] Mon Dec 19 11:14:52 2005
    [Thr 2144] JControlExecuteBootstrap: read instance values after global bootstrap
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties;E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : portald
    -> ms port    : 3601
    -> OS libs    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    [Thr 2144] JControlExecuteBootstrap: enumerate the nodes after global bootstrap
    Used property files
    -> files [00] : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> files [01] : E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : portald
    -> ms port    : 3601
    -> os libs    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID9391400  : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID9391450  : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID9391400            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [01] ID9391450            : E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 2144] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID9391400]
    [Thr 2144] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2144] [Node: dispatcher bootstrap] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID9391400]
    -> node name       : dispatcher bootstrap
    -> node type       : bootstrap
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> root path       : E:\usr\sap\D01\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID009391400
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_bootstrap
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID9391400
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_bootstrap_ID9391400.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_bootstrap_ID9391400.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_bootstrap_ID9391400
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] Mon Dec 19 11:14:58 2005
    [Thr 2144] JControlExecuteBootstrap: execute bootstrap process [bootstrap_ID9391450]
    [Thr 2144] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2144] [Node: server0 bootstrap] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [bootstrap_ID9391450]
    -> node name       : server0 bootstrap
    -> node type       : bootstrap
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 1024M
    -> root path       : E:\usr\sap\D01\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.offline.OfflineToolStart
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID009391450
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_bootstrap
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap_ID9391450
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_bootstrap_ID9391450.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_bootstrap_ID9391450.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_bootstrap_ID9391450
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] Mon Dec 19 11:15:05 2005
    [Thr 2144] JControlIBuildProcessList: Maximum error count is set to 4
    [Thr 1424] JControlRequestFunc: Thread 1424 started as listener thread for np messages.
    [Thr 2144] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2144] [Node: dispatcher] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID9391400]
    -> node name       : dispatcher
    -> node type       : dispatcher
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Djco.jarm=1 -XX:NewSize=28m -XX:MaxNewSize=28m -XX:+DisableExplicitGC -Drdbms.driverLocation=D:/oracle/D01/920/jdbc/lib/classes12.jar -Dsys.global.dir=E:/usr/sap/D01/SYS/global/
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 170M
    -> root path       : E:\usr\sap\D01\JC00\j2ee\cluster\dispatcher
    -> class path      : .\bin\boot\boot.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2144] INFO: Invalid property value [JLaunchParameters/]
    [Thr 2144] *** WARNING => Maximum Java heap size specified twice (through maxHeapSize and in javaParameters) - using -Xmx512M [jstartxx.c   2282]
    [Thr 2144] [Node: server0] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [ID9391450]
    -> node name       : server0
    -> node type       : server
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters : -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy -Djco.jarm=1 -Dsun.io.useCanonCaches=false -Djava.awt.headless=true -XX:SoftRefLRUPolicyMSPerMB=1 -verbose:gc -XX:PrintGCDetails -XX:PrintGCTimeStamps -XX:UseParNewGC -XX:MaxNewSize=85M -XX:NewSize=85M -XX:DisableExplicitGC -XX:MaxPermSize=192M -XX:PermSize=192M -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Drdbms.driverLocation=D:/oracle/D01/920/jdbc/lib/classes12.jar -Dsys.global.dir=E:/usr/sap/D01/SYS/global/
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 512M
    -> init heap size  : 512M
    -> root path       : E:\usr\sap\D01\JC00\j2ee\cluster\server0
    -> class path      : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : com.sap.engine.boot.Start
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      :
    -> debuggable      : no
    -> debug mode      : no
    -> debug port      : 50021
    -> shutdown timeout: 120000
    [Thr 2144] [Node: SDM] java home is set by profile parameter
         Java Home: c:\j2sdk1.4.2_08
    JStartupIReadSection: read node properties [sdm]
    -> node name       : SDM
    -> node type       : sdm
    -> java path       : c:\j2sdk1.4.2_08
    -> java parameters :
    -> java vm version : 1.4.2_08-b03
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : E:\usr\sap\D01\JC00\SDM\program
    -> class path      : E:\usr\sap\D01\JC00\SDM\program\bin\SDM.jar
    -> OS libs path    : E:\usr\sap\D01\JC00\j2ee\os_libs
    -> main class      : SDMInternal
    -> framework class : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class  : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path  : E:\usr\sap\D01\JC00\j2ee\os_libs\jstartup.jar
    -> shutdown class  : com.sap.sdm.jstartup.shutdown.InternalShutDown
    -> parameters      : server sdmhome=E:\usr\sap/D01/JC00/SDM/program
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    [Thr 2144] JControlMSConnect: attached to message server (portald/3601)
    [Thr 892] JControlMSMessageFunc: Thread 892 started as listener thread for ms messages.
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_dispatcher
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID9391400
    -> arg[05] = -nodeId=0
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_dispatcher.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_dispatcher.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_dispatcher
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process dispatcher started (PID:1432)
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_server
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID9391450
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_server0.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_server0.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_server0
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process server0 started (PID:1436)
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_sdm
    -> arg[03] = -file=E:\usr\sap\D01\JC00\SDM\program\config\sdm_jstartup.properties
    -> arg[04] = -nodeName=sdm
    -> arg[05] = -nodeId=2
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_sdm.out
    -> arg[08] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_sdm.out
    -> arg[09] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_sdm
    -> arg[10] = -mode=JCONTROL
    -> arg[11] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process SDM started (PID:1452)
    [Thr 892] Mon Dec 19 11:15:35 2005
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 892] JControlMSMessageFunc: receive command:6, argument:1213679940 from Message Server
    [Thr 2144] Mon Dec 19 11:16:00 2005
    [Thr 2144] JControlICheckProcessList: process server0 (pid:1436) died (RUN-FLAG)
    [Thr 2144] JControlIResetProcess: reset process server0
    [Thr 2144] JControlIResetProcess: [server0] not running -> increase error count (1)
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_server
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID9391450
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process server0 started (PID:4092)
    [Thr 2144] Mon Dec 19 11:16:40 2005
    [Thr 2144] JControlICheckProcessList: process server0 (pid:4092) died (RUN-FLAG)
    [Thr 2144] JControlIResetProcess: reset process server0
    [Thr 2144] JControlIResetProcess: [server0] not running -> increase error count (2)
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_server
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID9391450
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process server0 started (PID:5456)
    [Thr 2144] Mon Dec 19 11:17:25 2005
    [Thr 2144] JControlICheckProcessList: process server0 (pid:5456) died (RUN-FLAG)
    [Thr 2144] JControlIResetProcess: reset process server0
    [Thr 2144] JControlIResetProcess: [server0] not running -> increase error count (3)
    JStartupStartJLaunch: program = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\D01\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> arg[02] = -DSAPINFO=D01_00_server
    -> arg[03] = -file=E:\usr\sap\D01\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=ID9391450
    -> arg[05] = -nodeId=1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_5552
    -> arg[07] = -jvmOutFile=E:\usr\sap\D01\JC00\work\jvm_server0.out
    -> arg[08] = -jvmOutMode=append
    -> arg[09] = -stdOutFile=E:\usr\sap\D01\JC00\work\std_server0.out
    -> arg[10] = -stdOutMode=append
    -> arg[11] = -traceMode=append
    -> arg[12] = -locOutFile=E:\usr\sap\D01\JC00\work\dev_server0
    -> arg[13] = -mode=JCONTROL
    -> arg[14] = pf=E:\usr\sap\D01\SYS\profile\D01_JC00_portald
    -> lib path = PATH=c:\j2sdk1.4.2_08\jre\bin\server;c:\j2sdk1.4.2_08\jre\bin;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    -> exe path = PATH=c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\JC00\j2ee\os_libs;D:\oracle\D01\920\jre\1.4.2\bin\client;D:\oracle\D01\920\jre\1.4.2\bin;D:\oracle\D01\920\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\j2sdk1.4.2_08\bin;E:\usr\sap\D01\SCS01\exe;E:\usr\sap\D01\JC00\exe;E:\usr\sap\D01\SYS\exe\run
    [Thr 2144] JControlICheckProcessList: process server0 started (PID:4948)
    [Thr 2144] Mon Dec 19 11:18:10 2005
    [Thr 2144] JControlICheckProcessList: process server0 (pid:4948) died (RUN-FLAG)
    [Thr 2144] JControlIResetProcess: reset process server0
    [Thr 2144] JControlIResetProcess: [server0] not running -> increase error count (4)

    Dear Ashutosh,
    Thanks for guiding us to correct location.
    What we identified is we connected portal to the LDAP
    of EP 5.0 while migrating the content.After migration we
    have formatted the 5.0 system.
    Now that portal is connected to that LDAP which is
    not existing the problem is coming.
    Is there any way through CONFIGURATION tool I can remove
    that connectivity to LDAP?
    I am trying to configure LDAP again on the same server
    but before to that if some one can hint me how to
    remove the LDAP configuration from the Portal I would
    be very much thankful..
    regards
    Mrutyunjay

  • How can I change the "Full Name" for my iCloud account?

    Hello,
    At some point in the past, iCloud started identifying me as someone else when I send emails. This incorrect name appears to be the "Full Name" setting of the email account, but when modifying the properties for the email account in Mail the field for modifying the "Full Name" setting is disabled, not allowing me to make any changes.
    Where is the correct place to change the "Full Name" setting for my iCloud account?
    Thanks,
    - Josh
    <Email Edited By Host>

    I believe it can be changed by going to https://appleid.apple.com/, click Manage your Apple ID, sign in with your iCloud ID, select "Name, ID and Email Addresses", then click "Edit" next to the name listed under "Your Name" and change it as desired.
    Also, if you are trying to change the sender name for your iCloud email account, you'll want to go to icloud.com, sign into your account, open Mail, click the gear shaped icon on the bottom left and choose Preferences, go to the Accounts tab and enter the name you want to use in the Full Name field and click Done.  Then quit Mail (Command-Q) on your Mac and re-open it.  Your new From name should now appear in the drop-down list when you compose a new email.
    (The image was removed in your post above because it showed your iCloud email address.)

Maybe you are looking for

  • Updated to ios7 this morning and about half my apps are no longer on my screen

    My apps will still open in the app store without downloading but are simply not shown in my screens. The compass is also gone and I use it for work. Any ideas on how to get these back where I can see them easily?

  • WCF-WebHttp Adapter issue?

    Hello guys I stumble on this problem while I was trying to develop a custom pipeline component that on runtime generates a GUID and affects it to the context and body of the message. That GUID is placed on Http Headers as a boundary (content type) an

  • Suddenly cannot place or receive calls

    I have a Blackberry Curve 9330, with Verizon as a carrier.  For the last couple of days, I have not been able to place any calls.  When I attempt to do so, either the call does not complete, (call was lost), or if it does go through, I get a very rap

  • Implications of changing the workflow administrator

    Hi, The workflow administrator left my company years ago so all the errored workflows have been going into a 'black hole'. If I was to change the administrator to myself what consequences will this have other than me receiving the errored emails. Is

  • Replying

    When I get a message from someone it seems i am getting their e-mail address and their name separately.. anyway every time i press reply to an e-mail it will put in the top box Joe Bloggs<[email protected]>. When i press send i am told that it is not