BCA 6.5 error message: Label id=215064

Hello,
We are using BCA 6.5 and recently we kept receiving error message "Label id=215064".
I couldn't find an answer.
Could any one can give me some advises ?
Thank You
Carole

Hi ,
Could youp lease try the following steps and amend the server parameters in the Administration Console following the recommendations below:
BOMANAGER:
Max Busy Processes = should be 5x amount of processors
Max Loaded Processes = should be 2x Max Busy Processes
Min Loaded = generally 1 per processor
Timeout for Batch Actions = 1 hour past longest running job
Auto-Shutdown BOmanager = same as the Timeout for Batch Actions
Delete Inactive Process = 2 (Helps in preventing corrupted processes by setting this low)
Keep Exclusive Process = 120 (this is more for performance than anything. Found it has worked well with many customers)
SCHEDULER:
Max BO Jobs = Add all these parameters up from all the Schedulers and this should be less than all the Max Busy Processes in the BOManager.
SESSION MANAGER:
Session Timeout = increase it if necessary to 5400
You need also to look at the following:
1. Run the Scan, Repair and Compact of the repository from Supervisor module
2. Clear the Temp folder
3. Increase the Heap size from the registry
4. check DCOM configuration parameters and settings in Local Security Policy
Hopw this helps. Plesae revert in case of any further clarifications.
Regards,
Deepti Bajpai

Similar Messages

  • BCA error message:  Label id=215180

    To whom it may concern:
       We are using BCA 6.5 and recently we kept receiving error message "Label id=215180" for part of the jobs. I checked all documents and related recourse and couldn't find an answer. Could any one can give me some advises? Thank you!
    Antonio

    Hi ,
    Could youp lease try the following steps and amend the server parameters in the Administration Console following the recommendations below:
    BOMANAGER:
    Max Busy Processes = should be 5x amount of processors
    Max Loaded Processes = should be 2x Max Busy Processes
    Min Loaded = generally 1 per processor
    Timeout for Batch Actions = 1 hour past longest running job
    Auto-Shutdown BOmanager = same as the Timeout for Batch Actions
    Delete Inactive Process = 2 (Helps in preventing corrupted processes by setting this low)
    Keep Exclusive Process = 120 (this is more for performance than anything. Found it has worked well with many customers)
    SCHEDULER:
    Max BO Jobs = Add all these parameters up from all the Schedulers and this should be less than all the Max Busy Processes in the BOManager.
    SESSION MANAGER:
    Session Timeout = increase it if necessary to 5400
    You need also to look at the following:
    1. Run the Scan, Repair and Compact of the repository from Supervisor module
    2. Clear the Temp folder
    3. Increase the Heap size from the registry
    4. check DCOM configuration parameters and settings in Local Security Policy
    Hopw this helps. Plesae revert in case of any further clarifications.
    Regards,
    Deepti Bajpai

  • Fireworks error message *HELP!

    hello, I have just installed fireworks for the 3rd time and i
    keep on getting the same message every time I try to open the
    programe.
    the error message label is:
    "Licencing for this product has stopped working"
    and the message reads:
    "you cannot use this product at this time. You must repair
    this problem by ununstalling and re-unstalling this product or
    contacting IT adminstrator.
    i re-unstalled it 4 times and got the same error, i also
    instaled flash cs2 and i get thesame error.
    please help

    land-mine wrote:
    > hello, I have just installed fireworks for the 3rd time
    and i keep on getting
    > the same message every time I try to open the programe.
    > the error message label is:
    > "Licencing for this product has stopped working"
    > and the message reads:
    > "you cannot use this product at this time. You must
    repair this problem by
    > ununstalling and re-unstalling this product or
    contacting IT adminstrator.
    >
    >
    > i re-unstalled it 4 times and got the same error, i also
    instaled flash cs2
    > and i get thesame error.
    >
    > please help
    >
    Did you have any trial or beta software installed
    previously?
    Jim Babbage - .:Community MX:. & .:Adobe Community
    Expert:.
    Extending Knowledge, Daily
    http://www.communityMX.com/
    CommunityMX - Free Resources:
    http://www.communitymx.com/free.cfm
    .:Adobe Community Expert for Fireworks:.
    news://forums.macromedia.com/macromedia.fireworks
    news://forums.macromedia.com/macromedia.dreamweaver

  • Strange error message when compiling an IPA ("multiple L$start$ labels found at same address in...")

    I get this message when compiling an IPA with AIR 3.6:
    ld: warning: multiple L$start$ labels found at same address in __ZN9NetStream12DispatchProcEP10NativeInfo at offset 0x06C0
    Googling a bit, it seems it's an error message from this C++ class:
    http://opensource.apple.com/source/ld64/ld64-133.3/src/ld/LinkEdit.hpp
    So I suppose it's a bug in the AIR for iOS compiler. Any clues about why am I getting that warning message?

    I've been getting this message for quite a while, but I think a fix will soon be needed. I got the following message from Apple:
    ==============
    Dear developer,
    We have discovered one or more issues with your recent delivery for "Quazar". Your delivery was successful, but you may wish to correct the following issues in your next delivery:
    Non-PIE Binary - The executable 'Quazar.app' is not a Position Independent Executable. Please ensure that your build settings are configured to create PIE executables.
    ===============================================

  • Error message for required inputText components with no label

    I'm using JDev/ADF 10.1.3 (but I suppose that an answer for 11g would still be the right answer.)
    I'm creating a panelForm (or in 11g it would be a panelFormLayout) with a line for City, State, Zip, all required fields. Here is the code:
    <af:panelLabelAndMessage label="#{res.cityStateZip_label}">
       <af:panelGroup layout="horizontal">
          <af:inputText value="#{backing_facilityUpdate.city}"
                              columns="30" maximumLength="30"
                              required="true"
                               requiredMessageDetail="#{res.requiredMessage}"
                               tip="#{res.city_label}"/>
          <af:inputText value="#{backing_facilityUpdate.state}"
                              columns="2" maximumLength="2" required="true"
                              requiredMessageDetail="#{res.requiredMessage}"
                              tip="#{res.state_label}"/>
          <af:inputText value="#{backing_facilityUpdate.zip}"
                               columns="10" maximumLength="10" required="true"
                               requiredMessageDetail="#{res.requiredMessage}"
                               tip="#{res.zipCode_label}">
              <af:validateRegExp pattern="^\d{5}(-\d{4})?$"
                                         noMatchMessageDetail="#{res.zip_invalidMessage}"/>
           </af:inputText>
       </af:panelGroup>
    </af:panelLabelAndMessage>This gives me the appearance I want. But because there is no "label" attribute on the three inputText components, when a user doesn't fill them in, the error message shows the requiredMessage from the resource bundle, with just a dash - no identification of the field. I tried setting "shortDesc" - doesn't help. The "tip" doesn't do it.
    Is there a way to identify which field was not filled in without setting the "label" attribute, or a way to set the label attribute, but not display the label except in the message?

    Thanks - adding the labels with simple=true works in 10g as in 11g. This makes it ignore my "tip" attributes, but I can live with that. I added some spacing so I think people can tell which fields get City, State, and Zip even without the tips. I suppose I could add a line of outputText components under the line, but getting them spaced properly might be a problem. No, I'll live with what I've got.
    Thanks.
    Edited by: jflack on Nov 5, 2012 10:32 AM

  • Error reading label stock data ; Messag No: CBGL00103

    Dear Experts,
    I have created the Label Size and Label Stock SIze in 108 client and moved to 105 via SCC1 in same server DEV.
    Customizaiton is appering in 105 now.
    While creating the Label stock,  getting following error
    Error reading label stock data; see long text
    Messag No: CBGL00103
    Dignosis: An iternal error occured reading the previously created data record or label stock header data
    Main Program: SAPLCBGL_LS04, SAPLCBGL_LS00
    Function Module: CBGL_LB10_LSHDIOT_READ
    Return Code: 1
    Procedure
    Notify your system Adminstrator.
    Can anybody help to resove this issue.
    Regards
    Amol

    Hello Michael,
    Thanks for identifying exact solution.
    Appriciating your SAP EHS Expertise...

  • Add "*" infront of the label  in the error message popup window

    Dear all,
    I am new in ADF, I would like to add an "*" infront of the Salutation label in the error message popup,
    does anybody know how to do it? pls help me out in this...thanks
    PS: The Salutation is a af:selectOneChoice component with required validation,
    and if I modified the Salutation to af:inputText with required validation the "*" is shown automatically.
    http://dl.dropbox.com/u/11032207/screen%202012-12-18.jpg
    Edited by: user5638657 on Dec 18, 2012 6:04 PM

    Here is the jsf, thanks
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:f="http://java.sun.com/jsf/core">
    <af:panelBorderLayout id="pbl1">
    <f:facet name="start"/>
    <f:facet name="bottom">
    <af:panelGroupLayout id="pgl3">
    <af:popup id="p1">
    <af:noteWindow id="nw1">
    <af:outputText value="#{particularsBundle['TEXT.GENERAL.NOTE.SURNAME']}"
    id="ot13"/>
    </af:noteWindow>
    </af:popup>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="end"/>
    <f:facet name="top">
    <af:group id="g1">
    <af:outputText value="#{particularsBundle['TEXT.PARTICULARS.PAGE']}"
    id="ot2" inlineStyle="color:Black; font-size:large;"/>
    <af:spacer width="10" height="10" id="s3"/>
    </af:group>
    </f:facet>
    <af:panelGroupLayout id="pgl4" layout="vertical">
    <af:outputText value="#{particularsBundle['TEXT.GENERAL.REQUIRED']}"
    id="ot5"/>
    <af:spacer width="10" height="10" id="s5"/>
    <af:panelFormLayout id="pfl1" labelAlignment="start">
    <af:panelLabelAndMessage label="#{bindings.UserId.hints.label}"
    id="plam1" inlineStyle="color:Black;">
    <af:outputText value="#{bindings.UserId.inputValue}" id="ot1"/>
    </af:panelLabelAndMessage>
    <af:selectOneChoice value="#{bindings.UserSalutation.inputValue}"
    label="#{bindings.UserSalutation.label}"
    required="true"
    shortDesc="#{bindings.UserSalutation.hints.tooltip}"
    id="soc1">
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MR']}"
    id="si1" value="Mr."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MRS']}"
    id="si2" value="Mrs."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.MISS']}"
    id="si3" value="Miss"/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.DR']}"
    id="si4" value="Dr."/>
    <af:selectItem label="#{particularsBundle['SELECT.SALUTATION.PROFESSOR']}"
    id="si5" value="Professor"/>
    </af:selectOneChoice>
    <af:inputText value="#{bindings.UserSurname.inputValue}"
    label="#{bindings.UserSurname.hints.label}"
    required="#{bindings.UserSurname.hints.mandatory}"
    columns="#{bindings.UserSurname.hints.displayWidth}"
    maximumLength="#{bindings.UserSurname.hints.precision}"
    shortDesc="#{bindings.UserSurname.hints.tooltip}"
    id="it6">
    <f:validator binding="#{bindings.UserSurname.validator}"/>
    </af:inputText>
    <f:facet name="footer">
    <af:spacer width="10" height="10" id="s4"/>
    </f:facet>
    </af:panelFormLayout>
    <af:spacer width="20" height="10" id="s11"/>
    <af:panelGroupLayout id="pgl0" layout="horizontal">
    <af:commandButton text="#{particularsBundle['BUTTON.CONTINUE']}"
    id="cb1"
    action="#{updateProfileBackingBean.actionContinue}">
    <af:setActionListener from="#{bindings.UserEmail.inputValue}"
    to="#{bindings.email.inputValue}"/>
    </af:commandButton>
    <af:spacer width="20" height="10" id="s2"/>
    <!--af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1"
    inlineStyle="height:19.0px;"/-->
    <af:resetButton text="#{particularsBundle['BUTTON.RESET']}" id="rb1" inlineStyle="background-position:center top;
    background-repeat:repeat-x;
    margin:0;
    padding-bottom:3px;
    padding-top:1px;
    text-decoration:none;
    white-space:nowrap;"/>
    </af:panelGroupLayout>
    </af:panelGroupLayout>
    <af:spacer width="20" height="10" id="s1"/>
    </af:panelBorderLayout>
    </jsp:root>

  • How to modify display label in error message raised from capi?

    How to modify display label in error message raised from capi?
    qms_transaction_mgt.process_rule_violation
    ( p_br_name => 'BR_PBR_DEL006'
    , p_msg_code => 'PMS-00417'
    , p_display_label => display_label
    , p_table_name => 'pan_project_members'
    , p_table_rowid => get_rowid
    regards,
    marcel

    When you mean which columns are displayed, this is actually quite easy.
    Display_label will display by default the unique key columns, or if no unique key exists, the primary key. To overrule this behaviour, you have to specify the columns you want to display by assigning them a 'descriptor sequence'.
    For example, to display the ename on EMP warnings, assign descriptor sequence 10 to the EMP.ENAME column and regenerate the CAPI package.
    Jeroen van Veldhuizen

  • ERROR MESSAGE when installing DB INSTANCE on WINDOWS/ORACLE

    Hi Friends,
    We are installing our SAP systems (currently SOLMAN 4.0) in a distributed mode. The Central Service Instance is successfully installed. But when we install the DB Instance, we have the following error message at the "Execute Service" step : "CAUGHT ESAPinstExecution in Modulecall"
    How to solve this problem.
    Tkx for your help.
    MMA

    Hi Sergo I ve restart the install. Here is the logfile:
    INFO 2008-12-07 14:51:08.031
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSx.
    INFO 2008-12-07 14:51:08.031
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSx.
    INFO 2008-12-07 14:51:11.734
    Creating file C:Program Filessapinst_instdirx.
    INFO 2008-12-07 14:51:11.734
    Removing file C:Program Filessapinst_instdirx.
    INFO 2008-12-07 14:51:13.656
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.3.xml'.
    INFO 2008-12-07 14:51:14.000
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.4.xml'.
    WARNING 2008-12-07 14:51:16.906
    Unable to get information about path
    LABEL.ASC using GetVolumeInformation. Operating system error message: Syntaxe du nom de fichier, de répertoire ou de volume incorrecte.
    INFO 2008-12-07 14:51:19.343
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.2.xml'.
    INFO 2008-12-07 14:51:19.359
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/inifile.3.xml'.
    INFO 2008-12-07 14:51:19.484
    Execute step
    Component  W2K_ServicePack_Check|ind|ind|ind|ind
    Preprocess  of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_First_Steps|ind|ind|ind|ind|0|0|W2K_ServicePack_Check|ind|ind|ind|ind|2|0
    INFO 2008-12-07 14:51:22.781
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/keydb.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/keydb.2.xml'.
    INFO 2008-12-07 14:51:22.828
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.xml' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/statistic.5.xml'.
    INFO 2008-12-07 14:51:22.843
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_SCS_Instance|ind|ind|ind|ind|8|0
    INFO 2008-12-07 14:51:22.937
    Execute step getCD of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO[E] 2008-12-07 14:51:23.218
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 14:51:23.265
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 14:51:23.281
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2008-12-07 14:51:23.343
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO 2008-12-07 14:52:16.078
    Copying directory D:/KU_WINDOWS_I386_AUPG to: G:/.
    INFO 2008-12-07 14:52:16.078
    Creating directory G:ADA.
    INFO 2008-12-07 14:52:16.078
    Copying directory D:/KU_WINDOWS_I386_AUPG/ADA to: G:/ADA.
    INFO 2008-12-07 14:52:17.625
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ADA/SAPEXEDB.SAR' to 'G:/ADA'.
    INFO 2008-12-07 14:52:17.625
    Creating directory G:DB2.
    INFO 2008-12-07 14:52:17.625
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB2 to: G:/DB2.
    INFO 2008-12-07 14:52:18.984
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB2/SAPEXEDB.SAR' to 'G:/DB2'.
    INFO 2008-12-07 14:52:18.984
    Creating directory G:DB4.
    INFO 2008-12-07 14:52:18.984
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB4 to: G:/DB4.
    INFO 2008-12-07 14:52:19.781
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB4/SAPEXEDB.SAR' to 'G:/DB4'.
    INFO 2008-12-07 14:52:19.796
    Creating directory G:DB6.
    INFO 2008-12-07 14:52:19.796
    Copying directory D:/KU_WINDOWS_I386_AUPG/DB6 to: G:/DB6.
    INFO 2008-12-07 14:52:21.125
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DB6/SAPEXEDB.SAR' to 'G:/DB6'.
    INFO 2008-12-07 14:52:21.125
    Creating directory G:DBINDEP.
    INFO 2008-12-07 14:52:21.125
    Copying directory D:/KU_WINDOWS_I386_AUPG/DBINDEP to: G:/DBINDEP.
    INFO 2008-12-07 14:52:22.687
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/IGSEXE.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:22.703
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/IGSHELPER.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:22.718
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/KERNEL.TOC' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:23.671
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPCAR.EXE' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:47.218
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPEXE.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.328
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/SAPMMC.SAR' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.343
    Copied file 'D:/KU_WINDOWS_I386_AUPG/DBINDEP/UNINSTSAP.EXE' to 'G:/DBINDEP'.
    INFO 2008-12-07 14:52:48.343
    Copied file 'D:/KU_WINDOWS_I386_AUPG/LABEL.ASC' to 'G:/'.
    INFO 2008-12-07 14:52:48.359
    Creating directory G:MSS.
    INFO 2008-12-07 14:52:48.359
    Copying directory D:/KU_WINDOWS_I386_AUPG/MSS to: G:/MSS.
    INFO 2008-12-07 14:52:48.468
    Copied file 'D:/KU_WINDOWS_I386_AUPG/MSS/INSTCOLL.EXE' to 'G:/MSS'.
    INFO 2008-12-07 14:52:49.718
    Copied file 'D:/KU_WINDOWS_I386_AUPG/MSS/SAPEXEDB.SAR' to 'G:/MSS'.
    INFO 2008-12-07 14:52:49.718
    Creating directory G:ORA.
    INFO 2008-12-07 14:52:49.718
    Copying directory D:/KU_WINDOWS_I386_AUPG/ORA to: G:/ORA.
    INFO 2008-12-07 14:52:50.531
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ORA/DBATOOLS.SAR' to 'G:/ORA'.
    INFO 2008-12-07 14:52:52.328
    Copied file 'D:/KU_WINDOWS_I386_AUPG/ORA/SAPEXEDB.SAR' to 'G:/ORA'.
    INFO 2008-12-07 14:52:52.390
    Copied file 'D:/KU_WINDOWS_I386_AUPG/TOC.XML' to 'G:/'.
    INFO 2008-12-07 14:52:52.484
    Execute step fillUnpackTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO[E] 2008-12-07 14:52:52.765
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO 2008-12-07 14:52:52.843
    Execute step askUnpack of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO 2008-12-07 14:52:53.109
    Execute step askSAPCrypto of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_Unpack|ind|ind|ind|ind|7|0
    INFO 2008-12-07 14:52:53.312
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSsummary.html.
    INFO 2008-12-07 14:54:24.765
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.437
    Execute step setDefaults of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.484
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.515
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:00.546
    Execute step getSID of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO[E] 2008-12-07 16:23:05.156
    FSL-02077  File system export (share) saploc does not exist.
    INFO[E] 2008-12-07 16:23:05.421
    FSL-02077  File system export (share) sapmnt does not exist.
    INFO[E] 2008-12-07 16:23:14.718
    FSL-01027  Account group="serveurbmsSAP_LocalAdmin" does not exist.
    INFO[E] 2008-12-07 16:23:19.250
    FSL-01027  Account group="serveurbmsSAP_BMS_LocalAdmin" does not exist.
    INFO 2008-12-07 16:23:22.109
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.203
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.281
    Execute step setDefaults of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:22.312
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:50.906
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:53.703
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:23:53.812
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:23:53.937
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:23:54.62
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:24:59.359
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.437
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.515
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:24:59.781
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.156
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:25:00.171
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:25:00.203
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.546
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.625
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:00.968
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.46
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.140
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.484
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.562
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:01.656
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:25:03.875
    Removed environment variable SAPPARAM700 from current process environment.
    WARNING 2008-12-07 16:25:08.390
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:25:08.390
    FSL-01000  Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:25:08.390
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:25:08.468
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.1.html'.
    INFO 2008-12-07 16:25:08.468
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:25:08.468
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    WARNING 2008-12-07 16:25:35.906
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:25:35.906
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:25:35.906
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:25:36.000
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.2.html'.
    INFO 2008-12-07 16:25:36.000
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:25:36.000
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:11.093
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.2.XML'.
    INFO 2008-12-07 16:30:11.125
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.5.XML'.
    INFO 2008-12-07 16:30:11.156
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.6.XML'.
    INFO 2008-12-07 16:30:11.234
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.7.XML'.
    INFO 2008-12-07 16:30:11.265
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.8.XML'.
    INFO 2008-12-07 16:30:11.312
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.9.XML'.
    INFO 2008-12-07 16:30:11.359
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.421
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.500
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.546
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.593
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.687
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.734
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.812
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.859
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:11.906
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.140
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.187
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:12.281
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:12.328
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:12.375
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:12.500
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:12.562
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:15.734
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:15.859
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:16.0
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:16.125
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:16.265
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.343
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.437
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.671
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:16.734
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:30:16.750
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:30:16.781
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.140
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.234
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.843
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:17.937
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.15
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.812
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.890
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:18.984
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:30:24.687
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:30:24.687
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:30:24.687
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:30:24.781
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.3.html'.
    INFO 2008-12-07 16:30:24.781
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:24.781
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:30:34.796
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.3.XML'.
    INFO 2008-12-07 16:30:34.828
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.10.XML'.
    INFO 2008-12-07 16:30:34.859
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.11.XML'.
    INFO 2008-12-07 16:30:34.906
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.12.XML'.
    INFO 2008-12-07 16:30:34.937
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.13.XML'.
    INFO 2008-12-07 16:30:35.0
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.62
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.140
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.187
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.234
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.328
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.375
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.468
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.531
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.578
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.812
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.859
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:30:35.953
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:36.0
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:30:36.46
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:36.187
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:30:36.234
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:38.578
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:30:44.546
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING[E] 2008-12-07 16:31:52.484
    FSL-04036 Logon failed. DIAGNOSIS: The system could not log on user BMSAFRICA msadm because the user has not been granted the right to log on interactively to this computer. SOLUTION: Check the user rights assignment (Local Security Policy). Make sure that the user has been assigned the right "Log on locally", has not been assigned the right "Deny logon locally", the rights are effective and there is no domain policy that overrides these right assignments. You can try whether the user has the necessary rights using the runas command (runas /profile /user:BMSAFRICA msadm).
    WARNING[E] 2008-12-07 16:31:52.484
    FSL-00001 System call failed. Error 1385 (Échec d'ouverture de session : l'utilisateur ne bénéficie pas du type d'ouverture de session demandé sur cet ordinateur.
    ) in execution of system call 'LogonUser' with parameter (bmsadm, BMSAFRICA, *******, LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,&hUserToken), line (1014) in file (synxccuren.cpp).
    INFO 2008-12-07 16:32:08.906
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:32:19.796
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING 2008-12-07 16:32:24.406
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:32:31.156
    FSL-01027 Account user="SERVEURSAP msadm" does not exist.
    WARNING 2008-12-07 16:32:35.687
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:32:35.687
    FSL-01027 Account user="SERVEURSAPSAPServiceBMS" does not exist.
    WARNING 2008-12-07 16:36:27.843
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:36:34.593
    FSL-01027 Account user="SERVEURSAP msadm" does not exist.
    WARNING 2008-12-07 16:36:39.187
    Unable to get the name of a domain controller for domain SERVEURSAP.
    INFO[E] 2008-12-07 16:36:39.187
    FSL-01001 Unable to check existence of account SERVEURSAPSAPServiceBMS. Erreur non spécifiée
    INFO 2008-12-07 16:36:39.375
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:36:39.515
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:36:39.640
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:36:39.781
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:36:39.921
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.0
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.93
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.328
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.390
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:36:40.406
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:36:40.453
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.812
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:40.906
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.375
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.468
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:42.546
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.218
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.296
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:36:43.390
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:36:51.468
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:36:51.468
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:36:51.468
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:36:51.562
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.4.html'.
    INFO 2008-12-07 16:36:51.562
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:36:51.562
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    WARNING 2008-12-07 16:38:55.828
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:38:55.828
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:38:55.828
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:38:55.906
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.5.html'.
    INFO 2008-12-07 16:38:55.921
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:38:55.921
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:47:31.500
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.4.XML'.
    INFO 2008-12-07 16:47:31.546
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.14.XML'.
    INFO 2008-12-07 16:47:31.609
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.15.XML'.
    INFO 2008-12-07 16:47:31.656
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.16.XML'.
    INFO 2008-12-07 16:47:31.718
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.17.XML'.
    INFO 2008-12-07 16:47:31.750
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.18.XML'.
    INFO 2008-12-07 16:47:31.812
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:31.875
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:31.953
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.15
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.62
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.140
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.187
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.281
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.328
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.375
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.640
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.687
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:47:32.781
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:47:32.812
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:47:32.875
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:33.0
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:47:33.62
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:34.875
    Execute step askDomain of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:47:51.875
    Execute step askPasswords of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetUserParameter|ind|ind|ind|ind|1|0|NW_GetUserParameterWindows|ind|ind|ind|ind|1|0
    WARNING[E] 2008-12-07 16:48:59.015
    FSL-04036 Logon failed. DIAGNOSIS: The system could not log on user BMSAFRICA msadm because the user has not been granted the right to log on interactively to this computer. SOLUTION: Check the user rights assignment (Local Security Policy). Make sure that the user has been assigned the right "Log on locally", has not been assigned the right "Deny logon locally", the rights are effective and there is no domain policy that overrides these right assignments. You can try whether the user has the necessary rights using the runas command (runas /profile /user:BMSAFRICA msadm).
    WARNING[E] 2008-12-07 16:48:59.015
    FSL-00001 System call failed. Error 1385 (Échec d'ouverture de session : l'utilisateur ne bénéficie pas du type d'ouverture de session demandé sur cet ordinateur.
    ) in execution of system call 'LogonUser' with parameter (bmsadm, BMSAFRICA, *******, LOGON32_LOGON_INTERACTIVE,LOGON32_PROVIDER_DEFAULT,&hUserToken), line (1014) in file (synxccuren.cpp).
    INFO 2008-12-07 16:51:48.703
    Execute step fillContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0|NW_GetDBUserParameter|ind|ind|ind|ind|3|0
    INFO 2008-12-07 16:51:48.828
    Execute step sanityCheckAccounts of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|NW_GetSidNoProfiles|ind|ind|ind|ind|1|0
    INFO 2008-12-07 16:51:48.984
    Execute step fillContext2 of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:51:49.125
    Execute step fillPRCContext of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0
    INFO 2008-12-07 16:51:49.265
    Execute step setDefaultDataPath of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.343
    Execute step getPreliminaryShipmentInfo of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.437
    Execute step showDataFileDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.671
    Execute step getDataFile of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:49.750
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PREREQUISITE_CHECK_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PREREQUISITE_CHECK_DATA.XML'.
    INFO 2008-12-07 16:51:49.765
    Copied file 'D:/IM_WINDOWS_I386/COMMON/INSTALL/PRC_SHIPMENT_DATA.XML' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/PRC_SHIPMENT_DATA.XML'.
    INFO 2008-12-07 16:51:49.796
    Execute step prepareServicesTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:50.156
    Execute step showServiceDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:50.250
    Execute step prepareDBInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.0
    Execute step showDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.78
    Execute step postProcessDBInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:52.171
    Execute step prepareSapInfoTable of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.718
    Execute step showSapInfoOverviewDialog of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.812
    Execute step prepareChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    INFO 2008-12-07 16:51:53.906
    Execute step runChecks of component |NW_Doublestack_SCS|ind|ind|ind|ind|0|0|PrerequisiteCheckerDialogs|ind|ind|ind|ind|2|0
    WARNING 2008-12-07 16:52:01.421
    Error 1332 (Le mappage entre les noms de compte et les ID de sécurité n'a pas été effectué.
    ) in execution of a 'LookupAccountSid()' function, line (739), with parameter ().
    INFO[E] 2008-12-07 16:52:01.421
    FSL-01000 Unable to convert "group name=""" to "ADs path" using function SyADsPath::getFullPath(iastring).
    WARNING 2008-12-07 16:52:01.437
    Internal error. DIAGNOSIS: Prerequisite Checker caught an unknown exception while executing client code. Technical exception description: (new TypeError("accountMgt.getGroup(parameters) has no properties", "NW_Doublestack_SCS|ind|ind|ind|ind", 69546)). SOLUTION: Contact your local support center.
    INFO 2008-12-07 16:52:01.750
    Copied file 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.html' to 'C:/Program Files/sapinst_instdir/SOLMAN/LM/COPY/ORA/SYSTEM/DISTRIBUTED/AS/SCS/prerequisite_checker_results.6.html'.
    INFO 2008-12-07 16:52:01.750
    Removing file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.
    INFO 2008-12-07 16:52:01.750
    Creating file C:Program Filessapinst_instdirSOLMANLMCOPYORASYSTEMDISTRIBUTEDASSCSprerequisite_checker_results.html.

  • Validation error message is not displayed for an attribute as an Input List Of Value

    Hi everyone,
    I use jdev 11.1.1.7.0
    In my application I've created an Entity Obj and a View Obj base Employees table.
    for the JobId attribute I've taken actions as listed below:
    1. in Employees EO I've created a validation for this attribute and in some cases an error message returns (the error message is "the salary is not high"):
         * Validation method for JobId.
        public boolean validateJobId(String jobid) {
            if (...) {
                return false;
            if (...) {
                return false;
            if (...) {
                return false;
            return true;
    2. in Employees VO  I've created a LOV for this attribute (the view accessor is JobsViewObj ) and I display the attribute as an Input Text with List Of Values.
    in jspx page I drag& drop this attribute as below:
              <af:inputListOfValues id="jobIdId"
                                    popupTitle="Search and Select: #{bindings.JobId.hints.label}"
                                    value="#{bindings.JobId.inputValue}"
                                    label="#{bindings.JobId.hints.label}"
                                    model="#{bindings.JobId.listOfValuesModel}"
                                    required="#{bindings.JobId.hints.mandatory}"
                                    columns="#{bindings.JobId.hints.displayWidth}"
                                    shortDesc="#{bindings.JobId.hints.tooltip}"
                                    autoSubmit="true">
                <f:validator binding="#{bindings.JobId.validator}"/>
              </af:inputListOfValues>
    I open the Popup and I select a row from the Popup list and then I click Ok. After that if the validation method(validateJobId) returns false, the error message("the salary is not high") must be show to the user. but the error message doesn't display. I don't understand why this happens.
    Can anybody guide me about this problem?
    Regards
    Habib

    yes, you're right, I've tested it in 12.1.3 and error message was displayed.
    it seems it's a bug(bad bug ) in both 11.1.1.7 and 12.1.2. and now what can I do? is there any way to display the the error message?
    Regards
    Habib

  • Help with an error message: This edit cannot be done...

    "This edit cannot be done because a transition would be cut or an item to one side of a transition would become too short."
    Can someone please help me understand this one? I have a project with self made lower thirds from a .tif graphic on V2 and a text track on V3. Each track has a 15 frame Edge Wipe on both ends. Within the sequence I have no problem either drag copying both tracks together or even copy/pasting them further down the sequence.
    The error pops up when I try to copy/paste to a different sequence. Regardless of whether I try to paste it above my video on V1 or past the video's end I still get that error message.
    If I delete the transitions, I can copy/paste just fine and re-add them, but it's so frustrating. I really just want to understand what's going on here. Could someone explain this in layman's terms?
    Edit: I should also add that if I Option-Click the Toggle Auto Select for track two, I can paste just fine. Which might lead me to believe that it's trying to paste to track V1 where video is already laid down, except that even if I try to paste after the video it still won't work. If I'm copying track V2 and V3, shouldn't paste automatically past to V2 and V3?
    Message was edited by: The Bundok

    I had this problem before. I like to disable extra services to speed up my computer and I disabled the Apple Mobile Device service and had to re-enable this.
    You can do that by going Control Panel>Administrative Tools>Services. Once you have gone to the services window, look for Apple Mobile Device and right-click. Select "Properties". There should be some information about the service as well as the label "Startup Type" with a drop-down menu beside it. If it says "disabled", that is your problem; Change the selection to anything except disabled (Automatic is easier and ensures that you can sync as soon as itunes opens).
    If this doesn't work, I would look into your anti-virus' settings. Good Luck!

  • Getting Error Message - mount.ocfs2: No such device while mounting

    I am trying to mount an ocfs2 file system. The file system seems to have been created fine but I get an error message when I try to mount it. Here's what I get :
    [root@mdcpsdb1 init.d]# ./o2cb status
    Module "configfs": Loaded
    Filesystem "configfs": Mounted
    Module "ocfs2_nodemanager": Loaded
    Module "ocfs2_dlm": Loaded
    Module "ocfs2_dlmfs": Loaded
    Filesystem "ocfs2_dlmfs": Mounted
    Checking cluster ocfs2: Online
    Checking heartbeat: Active
    [root@mdcpsdb1 init.d]# fsck.ocfs2 /dev/sdc1
    Checking OCFS2 filesystem in /dev/sdc1:
    label: oracle_hr
    uuid: f6 23 5e 3b ad bb 49 87 81 a3 cb f0 b7 2a d0 ad
    number of blocks: 24416784
    bytes per block: 4096
    number of clusters: 6104196
    bytes per cluster: 16384
    max slots: 4
    /dev/sdc1 is clean. It will be checked after 20 additional mounts.
    [root@mdcpsdb1 init.d]# mount -t ocfs2 /dev/sdc1 /hr_data
    mount.ocfs2: No such device while mounting /dev/sdc1 on /hr_data
    The same thing happens going through the ocfs2console.
    Thanks,
    David

    Did you get anwer for this error? I got same error. Thanks in advance.

  • Project suddenly won't open, error message displayed

    Can anyone shed any light on the following error message?
    [\Monk\main\common\PremiereShell\Src\PlayerFactory.cpp-379]
    I'm half way through a project; all was well when I shut down yesterday, but today the project won't open. The error message offers me a "continue" option, but doing so only opens a "working" dialogue which sits at 0% and does nothing. Audition is otherwise happy, all other projects opening fine, just not the one I need!
    Any thoughts anyone?
    Thanks
    Aidan

    "so If I save a back up of my project under the same name...and then the original gets corrupted...then the backup will ALSO not work unless it's been labeled under a different name??"
    Well if someone saves a backup under the same name in the same location then clearly it is actually overwritting the original and yes as they are now the same session then if one is corrupt the 'backup' is corrupt.
    Clearly this isn't a backup.
    But in your situation you are making a backup to a different drive/etc so if the original session file (.ses) gets corrupted no your backup will not be corrupted.
    You can try this utility http://www.mediasweeper.com.au/sesbackup.htm its pretty handy for hunting down & backing up all or selected session files.
    You can also use this utility http://www.mediasweeper.com.au/ to examine your session files and see the exact path of the files referenced within your session file.
    But note that if you make a copy of your session & media (ie the whole folder - lets say on H: drive) and put it on another drive (say E:) if you open the session on the E: drive then (as MediaSweeper will show you) AA will open the session on E: and reference the files on the H: drive but if those files are no longer on the H: drive (ie the original location) then AA will look in the current folder that the session is in.
    Its handy to know that otherwise you may think you are working on a backup but you are actually working on the original.
    Remember as with all software - Save early and save often!

  • Error message when I try to open the "help" files.

    When I try to open the help files in Elements Photoshop 10, I get the following error message in a pop up box.  At the top, the box is labeled "Adobe AIR"  The message:  "Application descriptor could not be found for this application.  Try re-installing or contacting the publisher for assistance."
    I have completely uninstalled and reinstalled both my Elements programs as well as adobe air, and have updated everything that I can think of and a few more things, and still get the same message.  Since I am one who often uses help files, I'd appreciate any help with this.
    Thank you.
    TwoCollieTom

    You can directly download the help files from this location http://helpx.adobe.com/photoshop-elements/archive.html

  • Error Message 2122 on itunes 6.0.2.23

    I don't know if anyone else is having this issue or has had this issue, but why is it that I can import songs off my Music CD's into itunes (the lastest version), but none of my playlists or songs will burn onto a blank CD that I insert?
    It used to burn CD's before this update of itunes but now I can't. Why is that? Why can't I burn anything with itunes? I can burn data CD's with Roxio..I did that as a test to see if the Driver was corrupted and that's why I can't burn..but it turns out I can burn a CD just not with itunes anymore. What is this unknown error message 2122 that itunes keeps popping up whenever I try to burn any songs onto a blank CD with the software?
    Please do tell me..because I have over 300 songs in itunes, some of which I bought at the music store and now I can't burn those songs on a CD...what is the point of itunes if the Burner is failing to Burn a CD???? If anyone has any idea about this, please share.
    Thank You
    I ran the CD Diagnostics and this is what I got:
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Dell Computer Corporation Inspiron 8500
    iTunes 6.0.2.23
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: PxHelp20 (2.0.0.0), iomdisk (5.0.1636.1), Pfc (2.5.0.201), Cdr4_xp (5.3.4.21),
    UpperFilters: pwd_2k (5.3.4.59), Cdralw2k (5.3.4.21), GEARAspiWDM (2.0.4.3),
    Video Driver: NVIDIA GeForce4 4200 Go (Dell Mobile)\GeForce4 4200 Go
    IDE\DiskIC25N080ATMR04-0______________________MO4OAD0A, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomPHILIPSDVD+RW_SDVD6004_________________1.03___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    D: PHILIPS DVD+RW SDVD6004, Rev 1.03
    Audio CD in drive.
    Found 15 songs on CD, playing time 73:11 on Audio CD.
    Track 1, start time 00:02:30
    Track 2, start time 01:38:44
    Track 3, start time 05:40:35
    Track 4, start time 11:32:26
    Track 5, start time 15:48:22
    Track 6, start time 20:33:74
    Track 7, start time 26:05:01
    Track 8, start time 31:29:24
    Track 9, start time 36:44:21
    Track 10, start time 41:30:70
    Track 11, start time 50:16:13
    Track 12, start time 54:50:52
    Track 13, start time 60:33:42
    Track 14, start time 63:38:00
    Track 15, start time 68:58:37
    Audio CD reading succeeded.
    Get drive speed succeeded.
    The drive CDR speeds are: 16.
    The drive CDRW speeds are: 16.
    The drive DVDR speeds are: 16.
    The drive DVDRW speeds are: 16.
    The last failed audio CD burn had error code 2122(0x0000084a). It happened on drive D: PHILIPS DVD+RW SDVD6004 on CDR media at speed 0X.

    Savita,
    Let's start with the support site for your computer. Go there and click on the "Show All" link.
    Download and install the updates labeled "Intel Mobile Chipset", "Philips SDVD6004 2X Slim DVD+RW", and "nVidia GeForce4 4200 Go".
    If that doesn't fix the problem, come back and we'll try something else.
    Error 2122 is a "bad write speed for media" error. You might also try deliberately setting your burn speed in the iTunes preferences to 16x and see if that helps. But iTunes should already be doing that if you have it set to maximum possible speed.

Maybe you are looking for

  • SQL SERVER AGENT JOB ERROR - SSIS PACKAGE

    Hi ,  I have a SQL server agent job which runs SSIS package as the daily job. The SSIS package contains multiple child package. Its a master package which calls other SSIS package. The master package calls 23 SSIS packages, few of the packages runs i

  • How to right align a read only numeric field in a panel form layout

    Hi, does anyone know how to right align a read only numeric field in a panel form layout? I am using: Style Class = AFFieldNumberMarker, but it only seems to work if the field is disabled. Disabling the field gives it a difference appearance that doe

  • Web template with HTML framset not working after transport

    Hi, I've built a frameset which consists of two web-templates (role-menu and content area) those two are combined together using plain HTML which does not acontain any web items (uploaded via WAD). This works fine in development. After transporting t

  • DVD- RW Problem

    i am having problem burning a dvd in my HP pavilion dv6 2001au laptop. it used to burn dvds before but now there is an error message saying "burning failed" it  strats to burn the dvd but when it reaches say 80- 90% nothing happens and ": burning fai

  • How portal finds the vale for the sap-language parameter for iView

    In the portal one of the ABAP WebDynpro iView is getting displayed in German. The reason for that is the sap-language parameter is being passed as DE. All other iViews in the system are passing the sap-language parameter is as en. In our system the L