Parameter in title

Hi Everyone,
I have a parameter called: Parm_AcademicPeriod
I typed in the title: &Parm_AcademicPeriod
Parameter can accept multiple values such as: '200910', '200920' (for academic terms)
Title is showing:      
Parm_AcademicPeriod: 200910, 200920                          
Is there away for the Parmeter name NOT to show in title, and use my own language instead, like this          
For Academic Period(s): 200910, 200920      
pls advise, tx, Sandra

Hi,
Unfortunately, you cannot use a different name for the parameter in the title. However, you can simply rename the parameter to "For Academic Period(s)" and it will work fine.
Rod West

Similar Messages

  • Calling a JSP Report From HTML parameter form

    Hi,
    I m trying to run a JSP Report from a HTML parameter Form. The JSP reports requires a parameter named userid in the URL with a valid value for database connection.
    eg. URL "http://win2kdb.oracle9iis.com:7778/repdemo/examples/Tools/fm_crdinf.jsp?userid=sysapps/system@trt1". We have created a variable on the server named "parmformjsp" with a value "sysapps/system@trt1". Now i use this variable in the URL as follows, eg. "http://win2kdb.oracle9iis.com:7778/repdemo/examples/Tools/fm_crdinf.jsp?parmformjsp".
    When i use this URL to call another JSP report from a JSP report it works fine, but the same does not work when calling a JSP report from a HTML form.
    the code for HTML parameter form calling a report is as follows,
    <html>
    <head>
    <meta http-equiv="Content-Language" content="en-us">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>Parameter Form</title>
    </head>
    <body>
    <p>Parameter Form</p>
    <form name="form1" method="GET"
    action="http://win2kdb.oracle9iis.com:7778/repdemo/examples/Tools/fm_custrns.jsp?parmformjsp">
    <p>From Date<input type="text" name="p_fmdate" size="20"></p>
    <p>To Date<input type="text" name="p_todate" size="20"></p>
    <p> </p>
    <p><input type="submit" ><input type="reset" value="Reset" name="B2"></p>
    </form>
    <p> </p>
    </body>
    </html>
    If i create an input parameter named "userid" with a valid database connection value, remove the ?parmformjsp part from the action URL then it works fine. How can i call the JSP report using the parmformjsp variable name instead of using the "userid" clause in the URL.Can anyone suggest any workaround....
    Thanks & Best Regards,
    Unmesh

    do it like this...
    DECLARE
    pl_id ParamList := Get_Parameter_List('tmpdata');
    BEGIN
    IF NOT Id_Null(pl_id) THEN
      Destroy_Parameter_List( pl_id );
    END IF;
    pl_id := Create_Parameter_List('tmpdata');
    Add_Parameter(pl_id, 'ROUTE_CARD_CONTROL', TEXT_PARAMETER, :ROUTE_CARD.ROUTE_CARD_CONTROL);
    Add_Parameter(pl_id, 'PARAMFORM', TEXT_PARAMETER, 'NO');
    Run_Product(REPORTS, 'D:\STL_FINAL\CHPREPORTS_FINAL\ROUTE_CARD.REP', SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id, NULL);
    END; what exactly happens when you call the report. if its showing the blank page... may be you are not passing the right parameter name. cross-check that your parameter name in the report is 'ROUTE_CARD_CONTROL'.

  • REP-3131: Parameter form boilerplate text cannot fit on the page

    Dear members,
    I am getting the following error while running the report :
    REP-3131: Parameter form boilerplate text cannot fit on the page
    can any body tell me how to correct it. I need to add a extra field in the standard oracle report "RECEIPT TRAVELER". when i was trying to run it in report builder 6i i got the above mentioned error. please give ur quick replies.
    thanks
    regards
    sandeep

    When you add your new field into the parameter mask, please check, if the value is too
    long for your parameter mask site. Make a double click on the master attributes of your
    report in the object navigator and look at the size of the parameter mask window.
    Make it bigger, if you want (vertically und horizontally size).
    Check the length of the text of your parameter mask title, too.

  • Unable to detect any parameter in html (webresource) when value is passed from onload method of form

    Unable to detect any parameter in html (webresource) when value is passed from onload method of form
    I am trying out some stuff. For which I created a simple Entity. In the form of the entity I have added a simple web resource (html). And for the onload of the form I am calling the following function
    function HelpDeskActivityOnLoadhandler()
     var customParameters = encodeURIComponent("first=First Value&second=Second Value&third=Third Value");
        Xrm.Utility.openWebResource("tsi_scriptzz",customParameters);
    Here is the code for the  tsi_scriptzz.html
    <html>
     <body>
      <script type="text/javascript">
        var vals = new Array();
        if (location.search != "") {
         vals = location.search.substr(1).split("&");
         for (var i in vals) {
          vals[i] = vals[i].replace(/\+/g, " ").split("=");
      </script>
     </body>
    </html>
    MY PROBLEM IS -> location.search is always coming back with empty string. So, it not getting the parametrs I am passing from the load method of the form.
    Could someone kindly help me.
    Thanks,
    Hasib

    Hello, I tried it myself. I got a new_test.htm file and a new_test.js file. The loadWebResource function is called on the OnLoad event of an Entity.
    function loadWebResource()
    var params = encodeURIComponent('param1=value one&param2=value two&param3=value three');
    Xrm.Utility.openWebResource('new_test.htm', params);
    <html>
    <head>
    <title>Web Resource Parameter Example</title>
    <!-- Use ../ClientGlobalContext.js.aspx if your webresource is in a deeper folder on CRM -->
    <script src="ClientGlobalContext.js.aspx" type="text/javascript"></script>
    <script type="text/javascript">
    document.onreadystatechange = function () {
    if (document.readyState == 'complete') {
    var params = getParams();
    for(var i=0; i<params.length; i++)
    log(params[i].name + ' ' + params[i].value);
    // this functions puts the params in a 'dictionary format'
    // f.e params[0].name = param1 & params[0].value = 'value one'
    // You could customize this function or find some on the internet to retrieve a param fe by name...
    // This is just an example how to get the name and values
    function getParams(){
    var params = [];
    var querystring = Xrm.Page.context.getQueryStringParameters().Data;
    var querystringparts = querystring.split('&');
    for(var i=0; i<querystringparts.length;i++)
    var split = querystringparts[i].split('=');
    params.push({
    name: split[0],
    value: split[1]
    </script>
    </head>
    <body>
    </body>
    </html>
    Hope it helps now. Kind Regards

  • Custom Compile time parameter

    hi
    i try to add the svn version to my flex gui. so i have to add this information during compiling.
    question 1) can i a custom parameter during compile time. if yes how can i access this value in my flex app?
    question 2) i could use the compile parameter "metadata.title". how can i access this value inside my flex app?
    thanks for your help.
    cheers joe

    http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_21.html

  • How to pass a list of parameters to a query?

    Hi,
    I use OracleXE 10 Database with JDeveloper 11g.
    In my project I use a Toplink mapping to get access to the database (Toplink Object Map file). This mapping xml file is called crmMap.xml.
    In the crmMap.xml file I define a mapping to a "User table" which has the four columns id (number), title (varchar2), firstName (varchar2) and lastName (varchar2). A title can have the four values Bachelor, Master, Doctor and Professor.
    I do define a query in crmMap.xml which has to find all the users that have a special title. I do give the query one parameter called "title" which has the type "java.util.ArrayList". The parameter "title" is a list that has for example the two values "Bachelor" and "Doctor", if I want to find all the users that are Bachelor or Doctor. The query looks like this ...
    Select * from User where title in(?title)I do use an EJB Session Bean to call the query. The code looks like this ...
    public List<User> findUserByStatus() {
        Session session = getSessionFactory().acquireSession();
        Vector params = new Vector(1);
        List stati = new ArrayList();
        stati.add("Doctor");
        stati.add("Bachelor");
        params.add(stati);
        List<User> result = (List<User>)session.executeQuery("findUserByStatus", User.class, params);
        session.release();
        return result;
    }Doing this I get an error, in the line
    List<User> result = (List<User>)session.executeQuery("findUserByStatus", User.class, params);while the app is trying to execute the query.
    Part of my log
    WARNING: ADFc: Invalid column type
    java.sql.SQLException: Invalid column type
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:116)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:177)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:233)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:407)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7931)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7511)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:8168)
         at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:8149)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:229)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.setPrimitiveParameterValue(DatabasePlatform.java:1694)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.setParameterValueInDatabaseCall(DatabasePlatform.java:1684)
         at oracle.toplink.platform.database.oracle.Oracle9Platform.setParameterValueInDatabaseCall(Oracle9Platform.java:339)
         at oracle.toplink.internal.databaseaccess.DatabasePlatform.setParameterValuesInDatabaseCall(DatabasePlatform.java:1669)
         at oracle.toplink.internal.databaseaccess.DatabaseCall.prepareStatement(DatabaseCall.java:649)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.basicExecuteCall(DatabaseAccessor.java:517)
         at oracle.toplink.internal.databaseaccess.DatabaseAccessor.executeCall(DatabaseAccessor.java:467)
         at oracle.toplink.threetier.ServerSession.executeCall(ServerSession.java:447)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:193)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeCall(DatasourceCallQueryMechanism.java:179)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.executeSelectCall(DatasourceCallQueryMechanism.java:250)
         at oracle.toplink.internal.queryframework.DatasourceCallQueryMechanism.selectAllRows(DatasourceCallQueryMechanism.java:583)
         at oracle.toplink.queryframework.ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:467)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:874)
         at oracle.toplink.queryframework.DatabaseQuery.execute(DatabaseQuery.java:674)
         at oracle.toplink.queryframework.ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:835)
         at oracle.toplink.queryframework.ReadAllQuery.execute(ReadAllQuery.java:445)
         at oracle.toplink.internal.sessions.AbstractSession.internalExecuteQuery(AbstractSession.java:2260)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1074)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1058)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:1032)
         at oracle.toplink.internal.sessions.AbstractSession.executeQuery(AbstractSession.java:945)
         at de.virtual7.crmTL.model.crmFacadeBean.findUserByStatus(crmFacadeBean.java:720)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:281)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:187)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:154)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:15)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:30)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:126)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:114)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:176)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:210)
         at $Proxy90.findUserByStatus(Unknown Source)
         at de.virtual7.crmTL.model.crmFacade_etlagg_crmFacadeLocalImpl.findUserByStatus(crmFacade_etlagg_crmFacadeLocalImpl.java:838)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.model.binding.DCInvokeMethod.invokeMethod(DCInvokeMethod.java:563)
         at oracle.adf.model.binding.DCDataControl.invokeMethod(DCDataControl.java:2119)
         at oracle.adf.model.bc4j.DCJboDataControl.invokeMethod(DCJboDataControl.java:2929)
         at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:396)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:258)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1441)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2126)
         at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:414)
         at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:311)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:697)
         at oracle.adf.model.binding.DCInvokeAction.refreshInternal(DCInvokeAction.java:46)
         at oracle.adf.model.binding.DCInvokeAction.refresh(DCInvokeAction.java:32)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2970)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2639)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:110)
         at oracle.adf.controller.faces.lifecycle.FacesPageLifecycle.prepareModel(FacesPageLifecycle.java:77)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$2.execute(Lifecycle.java:135)
         at oracle.adfinternal.controller.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:190)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java:19)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$PhaseInvokerImpl.startPageLifecycle(ADFPhaseListener.java:229)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$1.after(ADFPhaseListener.java:265)
         at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:69)
         at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:51)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:354)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:175)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:181)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.security.jps.wls.JpsWlsFilter$1.run(JpsWlsFilter.java:85)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:257)
         at oracle.security.jps.wls.JpsWlsSubjectResolver.runJaasMode(JpsWlsSubjectResolver.java:250)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:100)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    07.09.2009 11:50:16 oracle.adf.controller.faces.lifecycle.FacesPageLifecycle addMessage
    WARNUNG: ADFc: EJB Exception: : Lokaler Exception Stack:
    Exception [TOPLINK-4002] (Oracle TopLink - 11g (11.1.1.0.1) (Build 081030)): oracle.toplink.exceptions.DatabaseException
    Interne Exception: java.sql.SQLException: Ungültiger Spaltentyp
    Fehlercode:17004
    Aufruf:Select * from User where title in(?title)
         bind => [[Doctor,Bachelor]]Does anyone know a way how to pass a list of parameters
    Thanks Bodhy

    Hi,
    One alternative way is to create String with , sepearted as pass the string to in clause.For example ,create a string ('Bachelor','Doctor') and pass this string to in clause.
    Session session = getSessionFactory().acquireSession();
    String params=( 'Bachelor','Doctor);
    List<User> result = (List<User>)session.executeQuery("findUserByStatus", User.class, params);
    session.release();
    This is an alternative way and workaround which can work for Strings .
    Or you can use EXpression to build the query to pass the collection as example given below.
    Expression addressExpression;
    ReadObjectQuery query = new ReadObjectQuery(Employee.class);
    ExpressionBuilder emp = query.getExpressionBuilder();
    addressExpression =
    emp.get("address").get("city").equal(
    emp.getParameter("employee").get("address").get("city"));
    query.setName("findByCity");
    query.setSelectionCriteria(addressExpression);
    query.addArgument("employee");
    Vector v = new Vector();
    v.addElement(employee);
    Employee e = (Employee) session.executeQuery(query, v);
    Hope this helps.
    Regards,
    Vinay Kumar

  • Closing Report Preview window closes all parent windows

    I have a form 6.0 calling a report 6.0 with several user parameters using run_report_object in preview mode. After the finishing previewing, the user closes the report preview window. Then the preview window closes all the parent windows.
    Need help!
    1) The parameters are char, date and number types.
    2) I don't have a parameter form. I take out the high-light of the parameters on the parameter form and the parameter form title.
    3) I have several user parameters and without the parameter form i'm still able to pass the parameters from the Form.
    Thanks
    null

    report_other parameter can only take 255? characters.
    I use create parameter list and add_parameter instead.

  • Error while installing NW 7.4 SR2 in High availability

    Hello Guys,
    We are installing NW 7.4 SR2 Enterprise Portal with sybase database on windows 2012 R2 server under high availability i.e Microsoft Cluster.
    JEP is the system ID of the server, SAPJEP is the virtual host and X.X.X.36 is the virtual I.P for Central Instance node.
    Physical I.P of First node is X.X.X.21
    We have started the installation as first cluster node and get stuck at phase 3.
    The error in sapinst.log is below:-
    FCO-00011 The step assignNetworknameToClusterGroup with step key
    |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_GetSidFromCluster|ind|ind|ind|ind|getSid|0|assignNetworknameToClusterGroup
    was executed with status ERROR ( Last error reported by the step: Could
    not set properties on ClusterResource 'SAP JEP IP'.).
    The error log of sapinst_dev.log is is below:-
    TRACE      2015-03-18 11:30:29.193
    NWInstance.getStartProfilePath(true)
    TRACE      2015-03-18 11:30:29.194
    NWInstance.getStartProfileName()
    TRACE      2015-03-18 11:30:29.194
    NWInstance.getStartProfileName() done: JEP_ERS10_SAPJEP
    TRACE      2015-03-18 11:30:29.194
    NWERSInstance.getDirProfile()
    TRACE      2015-03-18 11:30:29.194
    NW.getDirProfile(false)
    TRACE      2015-03-18 11:30:29.195
    NW.getDirProfile() done: \\SAPJEP/sapmnt/JEP/SYS/profile
    TRACE      2015-03-18 11:30:29.204 [synxcpath.cpp:925]
              CSyPath::getOSNodeType(bool) lib=syslib module=syslib
    Path \\SAPJEP/sapmnt/JEP/SYS/profile is on a non-existing share.
    TRACE      2015-03-18 11:30:29.204
    NWERSInstance.getDirProfile() done: \\SAPJEP/sapmnt/JEP/SYS/profile
    TRACE      2015-03-18 11:30:29.205
    NWInstance.getStartProfilePath() done: \\SAPJEP/sapmnt/JEP/SYS/profile/JEP_ERS10_SAPJEP
    TRACE      2015-03-18 11:30:29.206
    NWInstance.getProfilePath() done: \\SAPJEP/sapmnt/JEP/SYS/profile/JEP_ERS10_SAPJEP
    TRACE      2015-03-18 11:30:29.206
    NWProfiles(JEP.ERS10.SAPJEP).getPersistentDefaultProfile()
    TRACE      2015-03-18 11:30:29.207
    NW.getPersistentDefaultProfile()
    TRACE      2015-03-18 11:30:29.207
    NW.isUnicode(true)
    TRACE      2015-03-18 11:30:29.208
    NW.isUnicode() done: true
    TRACE      2015-03-18 11:30:29.208
    NW.getPersistentDefaultProfile() done
    TRACE      2015-03-18 11:30:29.208
    NWProfiles(JEP.ERS10.SAPJEP).getPersistentDefaultProfile() done
    TRACE      2015-03-18 11:30:29.208
    NWProfiles(JEP.ERS10.SAPJEP)._getPersistentProfile(INSTANCE) done
    TRACE      2015-03-18 11:30:29.209
    NWProfiles(JEP.ERS10.SAPJEP).getPersistentProfile() done
    TRACE      2015-03-18 11:30:29.209
    PersistentR3Profile.commit()
    TRACE      2015-03-18 11:30:29.209
    PersistentR3Profile.commit() done
    TRACE      2015-03-18 11:30:29.209
    NWProfiles(JEP.ERS10.SAPJEP).getPersistentDefaultProfile()
    TRACE      2015-03-18 11:30:29.210
    NW.getPersistentDefaultProfile()
    TRACE      2015-03-18 11:30:29.210
    NW.isUnicode(true)
    TRACE      2015-03-18 11:30:29.211
    NW.isUnicode() done: true
    TRACE      2015-03-18 11:30:29.211
    NW.getPersistentDefaultProfile() done
    TRACE      2015-03-18 11:30:29.211
    NWProfiles(JEP.ERS10.SAPJEP).getPersistentDefaultProfile() done
    TRACE      2015-03-18 11:30:29.211
    PersistentR3Profile.commit()
    TRACE      2015-03-18 11:30:29.211
    PersistentR3Profile.commit() done
    TRACE      2015-03-18 11:30:29.212
    NWProfiles(JEP.ERS10.SAPJEP).commit() done
    TRACE      2015-03-18 11:30:29.212
    NWInstanceInstall.addSAPCryptoParametersToProfile() done
    TRACE      2015-03-18 11:30:29.260
    The step setProfilesForSAPCrypto with key |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_Unpack2|ind|ind|ind|ind|unpack|0|NW_SAPCrypto|ind|ind|ind|ind|crypto|0 has been executed successfully.
    INFO      2015-03-18 11:30:29.262 [synxccuren.cpp:887]
              CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1)
              lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1.
    TRACE      2015-03-18 11:30:29.265 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:29.267 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:29.270 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:29.280 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:29.281 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:29.284 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:29.293 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:29.295 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:29.315 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    INFO      2015-03-18 11:30:29.330 [csistepexecute.cpp:1024]
    Execute step askUnpack of component |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_Unpack2|ind|ind|ind|ind|unpack|0
    TRACE      2015-03-18 11:30:29.339 [csistepexecute.cpp:1079]
    Execution of preprocess block of |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_Unpack2|ind|ind|ind|ind|unpack|0|askUnpack returns TRUE
    TRACE      2015-03-18 11:30:29.364
      Call block: NW_Unpack2_ind_ind_ind_ind
        function: NW_Unpack2_ind_ind_ind_ind_DialogPhase_askUnpack
    is validator: false
    TRACE      2015-03-18 11:30:29.364
    NWInstall.getSystem(JEP)
    TRACE      2015-03-18 11:30:29.366
    NWOption(localExeDir).value()
    TRACE      2015-03-18 11:30:29.366
    NWOption(localExeDir).value() done: true
    TRACE      2015-03-18 11:30:29.367
    NWOption(collected).value()
    TRACE      2015-03-18 11:30:29.367
    NWOption(collected).value() done: true
    TRACE      2015-03-18 11:30:29.369
    NWInstall({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:29.370
    NW({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:29.371
    NW() done
    TRACE      2015-03-18 11:30:29.371
    NWInstall() done
    TRACE      2015-03-18 11:30:29.371
    NWInstall.getSystem() done
    TRACE      2015-03-18 11:30:29.372
    NWInstall.mapUnpackTable(t_askUnpack)
    TRACE      2015-03-18 11:30:29.373
    NWInstall.mapUnpackTable() done: true
    TRACE      2015-03-18 11:30:29.377
    NWDB._get(JEP, ind)
    TRACE      2015-03-18 11:30:29.377
    NWDB._fromTable(JEP, ctor)
    TRACE      2015-03-18 11:30:29.379
    NWDB(JEP, {
      sid:JEP
      hostname:undefined
      dbsid:undefined
      installDB:false
      ORACLE_HOME:
      abapSchema:
      abapSchemaUpdate:
      javaSchema:
    TRACE      2015-03-18 11:30:29.379
    NWDB() done
    TRACE      2015-03-18 11:30:29.379
    NWDB._fromTable() done
    TRACE      2015-03-18 11:30:29.380
    NWDB._get() done
    TRACE      2015-03-18 11:30:29.380
    NWDB.getDBType(): ind
    TRACE      2015-03-18 11:30:29.390 [iaxxgenimp.cpp:283]
              CGuiEngineImp::showDialogCalledByJs()
    showing dlg d_nw_ask_unpack
    TRACE      2015-03-18 11:30:29.390 [iaxxgenimp.cpp:293]
              CGuiEngineImp::showDialogCalledByJs()
    <dialog sid="d_nw_ask_unpack">
    <title>Unpack Archives</title>
    <table enabled="true" fixedrows="true" sid="askUnpack">
    <caption>Archives to Be Unpacked</caption>
    <column enabled="true" type="check" numeric="false" upper="false" name="unpack">
      <caption>Unpack</caption>
      <helpitem id="common.Unpack"/>
      <value type="string">false</value>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="path">
      <caption>Archive</caption>
      <helpitem id="common.UnpackArchive"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="codepage">
      <caption>Codepage</caption>
      <helpitem id="common.UnpackArchiveCodepage"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="destination">
      <caption>Destination</caption>
      <helpitem id="common.UnpackArchiveDestination"/>
    </column>
    <column enabled="true" type="file" numeric="false" upper="false" name="ownPath">
      <caption>Downloaded To</caption>
      <helpitem id="common.UnpackArchiveDownload"/>
      <value type="string"/>
    </column>
    <row rowId="0">
      <boolvalue>
      <true/>
      </boolvalue>
      <value>DBINDEP\SAPEXE.SAR</value>
      <value>Unicode</value>
      <value>E:\usr\sap\JEP\SYS\exe\uc\NTAMD64</value>
      <value></value>
    </row>
    </table>
    <dialog/>
    TRACE      2015-03-18 11:30:29.391 [iaxxgenimp.cpp:1031]
              CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2015-03-18 11:30:30.617 [iaxxdlghnd.cpp:96]
              CDialogHandler::doHandleDoc()
    CDialogHandler: ACTION_NEXT requested
    TRACE      2015-03-18 11:30:30.618 [iaxxcdialogdoc.cpp:190]
              CDialogDocument::submit()
    <dialog sid="d_nw_ask_unpack">
    <table enabled="true" fixedrows="true" sid="askUnpack">
    <caption>Archives to Be Unpacked</caption>
    <column enabled="true" type="check" numeric="false" upper="false" name="unpack">
      <caption>Unpack</caption>
      <helpitem id="common.Unpack"/>
      <value type="string">false</value>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="path">
      <caption>Archive</caption>
      <helpitem id="common.UnpackArchive"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="codepage">
      <caption>Codepage</caption>
      <helpitem id="common.UnpackArchiveCodepage"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="destination">
      <caption>Destination</caption>
      <helpitem id="common.UnpackArchiveDestination"/>
    </column>
    <column enabled="true" type="file" numeric="false" upper="false" name="ownPath">
      <caption>Downloaded To</caption>
      <helpitem id="common.UnpackArchiveDownload"/>
      <value type="string"/>
    </column>
    <row rowId="0">
      <boolvalue>
      <true/>
      </boolvalue>
      <value>DBINDEP\SAPEXE.SAR</value>
      <value>Unicode</value>
      <value>E:\usr\sap\JEP\SYS\exe\uc\NTAMD64</value>
      <value/>
    </row>
    </table>
    <dialog/>
    TRACE      2015-03-18 11:30:30.646
      Call block: NW_Unpack2_ind_ind_ind_ind
        function: NW_Unpack2_ind_ind_ind_ind_DialogPhase_askUnpackValidator_default
    is validator: true
    TRACE      2015-03-18 11:30:30.646
    NWInstall.getSystem(JEP)
    TRACE      2015-03-18 11:30:30.648
    NWOption(localExeDir).value()
    TRACE      2015-03-18 11:30:30.648
    NWOption(localExeDir).value() done: true
    TRACE      2015-03-18 11:30:30.649
    NWOption(collected).value()
    TRACE      2015-03-18 11:30:30.649
    NWOption(collected).value() done: true
    TRACE      2015-03-18 11:30:30.652
    NWInstall({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:30.653
    NW({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:30.654
    NW() done
    TRACE      2015-03-18 11:30:30.654
    NWInstall() done
    TRACE      2015-03-18 11:30:30.654
    NWInstall.getSystem() done
    TRACE      2015-03-18 11:30:30.655
    NWInstall.validateUnpackTable(t_askUnpack)
    TRACE      2015-03-18 11:30:30.657
    NWInstall.validateUnpackTable(): validating row {
      codepage:Unicode
      destination:E:\usr\sap\JEP\SYS\exe\uc\NTAMD64
      ownPath:
      path:DBINDEP\SAPEXE.SAR
      sid:JEP
      unpack:true
    TRACE      2015-03-18 11:30:30.659 [tablecpp.cpp:136]
              Table(t_NW_unpack).updateRow({
      cd:UKERNEL
      codepage:Unicode
      confirmUnpack:
      destination:E:\usr\sap\JEP\SYS\exe\uc\NTAMD64
      list:
      needUnpacking:true
      ownPath:
      path:DBINDEP\SAPEXE.SAR
      selectiveExtract:false
      sid:JEP
      unpack:true
      wasUnpacked:false
    }, WHERE sid='JEP' AND path='DBINDEP\SAPEXE.SAR' AND codepage='Unicode' AND destination='E:\usr\sap\JEP\SYS\exe\uc\NTAMD64')
    updating
    TRACE      2015-03-18 11:30:30.661
    NWInstall.validateUnpackTable() done
    TRACE      2015-03-18 11:30:30.722 [iaxxgenimp.cpp:301]
              CGuiEngineImp::showDialogCalledByJs()
    <dialog sid="d_nw_ask_unpack">
    <table enabled="true" fixedrows="true" sid="askUnpack">
    <caption>Archives to Be Unpacked</caption>
    <column enabled="true" type="check" numeric="false" upper="false" name="unpack">
      <caption>Unpack</caption>
      <helpitem id="common.Unpack"/>
      <value type="string">false</value>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="path">
      <caption>Archive</caption>
      <helpitem id="common.UnpackArchive"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="codepage">
      <caption>Codepage</caption>
      <helpitem id="common.UnpackArchiveCodepage"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="destination">
      <caption>Destination</caption>
      <helpitem id="common.UnpackArchiveDestination"/>
    </column>
    <column enabled="true" type="file" numeric="false" upper="false" name="ownPath">
      <caption>Downloaded To</caption>
      <helpitem id="common.UnpackArchiveDownload"/>
      <value type="string"/>
    </column>
    <row rowId="0">
      <boolvalue>
      <true/>
      </boolvalue>
      <value>DBINDEP\SAPEXE.SAR</value>
      <value>Unicode</value>
      <value>E:\usr\sap\JEP\SYS\exe\uc\NTAMD64</value>
      <value/>
    </row>
    </table>
    <dialog/>
    TRACE      2015-03-18 11:30:30.724 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:30.725 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:30.728 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:30.776
    The step askUnpack with key |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_Unpack2|ind|ind|ind|ind|unpack|0 has been executed successfully.
    INFO      2015-03-18 11:30:30.778 [synxccuren.cpp:887]
              CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1)
              lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1.
    TRACE      2015-03-18 11:30:30.780 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:30.781 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:30.785 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:30.802 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:30.803 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:30.806 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:30.819 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:30.842 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\keydb.xml
    TRACE      2015-03-18 11:30:30.908 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:30.909 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:30.963 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\statistic.xml
    TRACE      2015-03-18 11:30:31.139 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    INFO      2015-03-18 11:30:31.142 [csistepexecute.cpp:1024]
    Execute step setDisplayNames of component |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0
    TRACE      2015-03-18 11:30:31.177
      Call block: NW_FirstClusterNode_ind_ind_ind_ind
        function: NW_FirstClusterNode_ind_ind_ind_ind_DialogPhase_setDisplayNames_Preprocess
    is validator: false
    TRACE      2015-03-18 11:30:31.219 [csistepexecute.cpp:1079]
    Execution of preprocess block of |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|setDisplayNames returns TRUE
    TRACE      2015-03-18 11:30:31.243
      Call block: NW_FirstClusterNode_ind_ind_ind_ind
        function: NW_FirstClusterNode_ind_ind_ind_ind_DialogPhase_setDisplayNames
    is validator: false
    TRACE      2015-03-18 11:30:31.246
    NWInstance.byNumberAndRealHost(00, DCEPPRDCI)
    TRACE      2015-03-18 11:30:31.246
    NWInstance.find()
    TRACE      2015-03-18 11:30:31.248
    NWOption(localExeDir).value()
    TRACE      2015-03-18 11:30:31.248
    NWOption(localExeDir).value() done: true
    TRACE      2015-03-18 11:30:31.249
    NWOption(collected).value()
    TRACE      2015-03-18 11:30:31.249
    NWOption(collected).value() done: true
    TRACE      2015-03-18 11:30:31.252
    NWInstance._fromRow({
      sid:JEP
      name:SCS00
      number:00
      host:SAPJEP
      guid:0
      realhost:dcepprdci
      type:SCS
      installationStatus:installing
      startProfileName:JEP_SCS00_SAPJEP
      instProfilePath:
      dir_profile:
      unicode:false
      collectSource:
    TRACE      2015-03-18 11:30:31.252
    NWSCSInstance()
    TRACE      2015-03-18 11:30:31.252
    NWInstance(JEP/SCS00/SAPJEP)
    TRACE      2015-03-18 11:30:31.252
    NWInstance(JEP/SCS00/SAPJEP) done
    TRACE      2015-03-18 11:30:31.253
    NWInstanceInstall()
    TRACE      2015-03-18 11:30:31.253
    NWInstanceInstall() done
    TRACE      2015-03-18 11:30:31.253
    NWInstall.getSystem(JEP)
    TRACE      2015-03-18 11:30:31.253
    NWOption(localExeDir).value()
    TRACE      2015-03-18 11:30:31.254
    NWOption(localExeDir).value() done: true
    TRACE      2015-03-18 11:30:31.254
    NWOption(collected).value()
    TRACE      2015-03-18 11:30:31.254
    NWOption(collected).value() done: true
    TRACE      2015-03-18 11:30:31.256
    NWInstall({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:31.257
    NW({
      sid:JEP
      sapDrive:E:
      dbtype:ind
      sapmnt:/sapmnt
      hasABAP:false
      hasJava:true
      isAddinInstallation:undefined
      unicode:true
      workplace:undefined
      loadType:SAP
      umeConfiguration:
      doMigMonConfig:
      useParallelAbapSystemCopy:
      dir_profile:\\SAPJEP\sapmnt\JEP\SYS\profile
      os4_krnlib:
      os4_seclanglib:
      useCurrentUser:false
      noShares:false
    TRACE      2015-03-18 11:30:31.258
    NW() done
    TRACE      2015-03-18 11:30:31.258
    NWInstall() done
    TRACE      2015-03-18 11:30:31.258
    NWInstall.getSystem() done
    TRACE      2015-03-18 11:30:31.258
    NWSCSInstance() done
    TRACE      2015-03-18 11:30:31.259
    NWInstance._fromRow() done
    TRACE      2015-03-18 11:30:31.259
    NWInstance._fromRow({
      sid:JEP
      name:ERS10
      number:10
      host:SAPJEP
      guid:1
      realhost:dcepprdci
      type:ERS
      installationStatus:installing
      startProfileName:JEP_ERS10_SAPJEP
      instProfilePath:
      dir_profile:
      unicode:false
      collectSource:
    TRACE      2015-03-18 11:30:31.259
    NWERSInstance()
    TRACE      2015-03-18 11:30:31.260
    NWInstance(JEP/ERS10/SAPJEP)
    TRACE      2015-03-18 11:30:31.260
    NWInstance(JEP/ERS10/SAPJEP) done
    TRACE      2015-03-18 11:30:31.260
    NWInstanceInstall()
    TRACE      2015-03-18 11:30:31.260
    NWInstanceInstall() done
    TRACE      2015-03-18 11:30:31.261
    NWERSInstance() done
    TRACE      2015-03-18 11:30:31.261
    NWInstance._fromRow() done
    TRACE      2015-03-18 11:30:31.261
    NWInstance.find() done: 1 instances found
    TRACE      2015-03-18 11:30:31.261
    t_scs.setDisplayName([nw.progress.installInstance, SCS00], WHERE ROWNUM=0)
    TRACE      2015-03-18 11:30:31.305
    The step setDisplayNames with key |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0 has been executed successfully.
    INFO      2015-03-18 11:30:31.307 [synxccuren.cpp:887]
              CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1)
              lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1.
    TRACE      2015-03-18 11:30:31.362
    Build Client for subcomponent |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_FinishFirstClusterNode|ind|ind|ind|ind|finishFirst|0
    TRACE      2015-03-18 11:30:31.364
    TRACE      2015-03-18 11:30:31.364 [ccdclient.cpp:22]
              CCdClient::CCdClient()
    TRACE      2015-03-18 11:30:31.385 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:31.387 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\inifile.xml
    TRACE      2015-03-18 11:30:31.390 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:31.406 [cpropertycontentmanager.hpp:220]
              CPropertyContentManager::logMissingParameters()
    The following parameters can be set via SAPINST_PARAMETER_CONTAINER_URL (inifile.xml) but not via SAPINST_INPUT_PARAMETERS_URL:
    Component 'NW_ERS_Instance': ersInstanceNumber, restartSCS
    Component 'NW_GetDomainOU': isOUInstallation, ou_delimiter, windows_domain_ous
    Component 'NW_GetSidFromCluster': clusterGroup, isUnicode, localDrive, network, networkName, sharedDrive, sid, useDHCP
    Component 'NW_GetUserParameterWindows': sapDomain, sapServiceSIDPassword, sidAdmPassword
    Component 'NW_SAPCrypto': installSAPCrypto
    Component 'NW_SCS_Instance': instanceNumber, scsMSPort, scsMSPortInternal
    Component 'Preinstall': installationMode
    INFO      2015-03-18 11:30:31.802 [synxcpath.cpp:799]
              CSyPath::createFile() lib=syslib module=syslib
    Creating file C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\summary.html.
    TRACE      2015-03-18 11:30:31.828 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:31.852 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\keydb.xml
    TRACE      2015-03-18 11:30:31.916 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:31.917 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:31.971 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\statistic.xml
    TRACE      2015-03-18 11:30:32.152 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:32.154 [sixxbsummary.cpp:320]
              CSiSummaryContainer::showDialog()
    <?xml version="1.0" encoding="UTF-8"?><sapinstgui version="1.0"><dialog version="1.0" sid="diReviewDialog"> <title>Parameter Summary</title><description>Choose 'Next' to start with the values shown. Otherwise, select the parameters to be changed and choose 'Revise'. You are then taken to the screen where you can change the parameter. You might be guided through other screens that have so far been processed.</description> <review id="review_controll"><caption><![CDATA[Parameter list]]></caption><inputgroup id="ID_1"> <caption><![CDATA[Drive for Local Instances]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_2"><pulldown edit="false" enabled="true" highlight="false" sid="localDrive">
    <caption>Destination Drive for Local Instances</caption>
    <helpitem id="mscs.SelectLocalDrive"/>
    <value>C:</value>
    <value>D:</value>
    <selectvalue>D:</selectvalue>
    </pulldown></input></inputgroup><inputgroup id="ID_3"> <caption><![CDATA[SAP System Cluster Parameters]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_4"><field enabled="true" highlight="false" sid="sid">
    <caption>SAP System ID (SAPSID)</caption>
    <helpitem id="common.SAPSystemIDCIDB"/>
    <value type="upper" maxlength="3" regexp="^[A-Z][A-Z0-9]{2}" minlength="3">JEP</value>
    </field></input><input  id="ID_5"><field enabled="true" highlight="false" sid="networkName">
    <caption>Network Name (SAP Virtual Instance Host)</caption>
    <helpitem id="common.VirtualInstanceHostWindowsMSCS"/>
    <value type="string" maxlength="13" minlength="1">SAPJEP</value>
    </field></input><input  id="ID_6"><pulldown edit="false" enabled="true" highlight="false" sid="network">
    <caption>Use Public Network</caption>
    <helpitem id="mscs.UsePublicNetwork"/>
    <value>Cluster Network 1</value>
    <selectvalue>Cluster Network 1</selectvalue>
    </pulldown></input><input  id="ID_7"><pulldown edit="false" enabled="true" highlight="false" sid="sharedDrive">
    <caption>Destination Drive for Clustered Instances</caption>
    <helpitem id="mscs.SelectSharedDrive"/>
    <value>BACKUP</value>
    <value>SAP_USR_SID_CI_NODE</value>
    <value>SAPDATA1</value>
    <value>SAPDATA2</value>
    <value>SAPDATA3</value>
    <value>SAPDATA4</value>
    <value>SAPLOG1</value>
    <value>SAPLOG2</value>
    <value>SAPTEMP_SAPDIAG_SAPSYBSYSTEM</value>
    <value>SYBASE</value>
    <selectvalue>SAP_USR_SID_CI_NODE</selectvalue>
    </pulldown></input></inputgroup><inputgroup id="ID_8"> <caption><![CDATA[DNS Domain Name]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_9"><check enabled="true" highlight="false" sid="setFQDN">
    <caption>Set FQDN for SAP system</caption>
    <helpitem id="common.FullyQualifiedDomainNameSelect"/>
    <boolvalue>
      <true/>
    </boolvalue>
    </check></input><input  id="ID_10"><field enabled="true" highlight="false" sid="FQDN" depends="setFQDN">
    <caption>DNS Domain Name for SAP System</caption>
    <helpitem id="common.FullyQualifiedDomainName"/>
    <value type="string" regexp="^[^.]+.*$" minlength="1">jnport.com</value>
    </field></input></inputgroup><inputgroup id="ID_11"> <caption><![CDATA[Windows Domain]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_12"><radiobox enabled="true" highlight="false" sid="domainType">
    <caption>Domain Model</caption>
    <helpitem id="common.DomainModelDomainLocal"/>
    <radio enabled="true" sid="global">
      <caption>Domain of Current User</caption>
      <boolvalue>
      <true/>
      </boolvalue>
    </radio>
    <radio enabled="true" sid="other">
      <caption>Different Domain</caption>
    </radio>
    </radiobox></input></inputgroup><inputgroup id="ID_13"> <caption><![CDATA[Operating System Users]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_14"><password confirm="true" enabled="true" highlight="false" sid="sidAdmPassword">
    <caption>Password of SAP System Administrator</caption>
    <helpitem id="common.PasswordCreateExistsOS"/>
    <encrvalue maxlength="63">*****</encrvalue>
    </password></input><input  id="ID_15"><password confirm="true" enabled="true" highlight="false" sid="sapServiceSIDPassword">
    <caption>Password of SAP System Service User</caption>
    <helpitem id="common.PasswordCreateExistsOS"/>
    <encrvalue maxlength="63">*****</encrvalue>
    </password></input></inputgroup><inputgroup id="ID_16"> <caption><![CDATA[Windows Domain for SAP Host Agent]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_17"><radiobox enabled="true" highlight="false" sid="domainType">
    <caption>Domain Model</caption>
    <helpitem id="common.DomainModelDomainLocal"/>
    <radio enabled="true" sid="local">
      <caption>Local Domain</caption>
      <boolvalue>
      <true/>
      </boolvalue>
    </radio>
    <radio enabled="true" sid="global">
      <caption>Domain of Current User</caption>
    </radio>
    <radio enabled="true" sid="other">
      <caption>Different Domain</caption>
    </radio>
    </radiobox></input></inputgroup><inputgroup id="ID_18"> <caption><![CDATA[Operating System Users]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_19"><password confirm="true" enabled="true" highlight="false" sid="sidAdmPassword">
    <caption>Password of SAP System Administrator</caption>
    <helpitem id="common.PasswordCreateExistsOS"/>
    <encrvalue maxlength="63">*****</encrvalue>
    </password></input></inputgroup><inputgroup id="ID_20"> <caption><![CDATA[SCS Instance]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_21"><field enabled="true" highlight="false" sid="instanceNumber">
    <caption>SCS Instance Number</caption>
    <helpitem id="common.InstanceNumberCreate"/>
    <value type="string" maxlength="2" regexp="[0-9]{2}" minlength="2">00</value>
    </field></input></inputgroup><inputgroup id="ID_22"> <caption><![CDATA[Java Message Server Port]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_23"><field enabled="true" highlight="false" sid="scsMSPortInternal">
    <caption>Internal Java Message Server Port</caption>
    <helpitem id="common.InternalMessagePort"/>
    <value type="numeric" maxlength="5" min="1025" max="65535">3900</value>
    </field></input></inputgroup><inputgroup id="ID_24"> <caption><![CDATA[Enqueue Replication Server  Instance]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_25"><field enabled="true" highlight="false" sid="ersInstanceNumber">
    <caption>Number of the ERS Instance</caption>
    <helpitem id="common.InstanceNumberCreate"/>
    <value type="numeric" maxlength="2" max="99" minlength="2">10</value>
    </field></input><input  id="ID_26"><field enabled="true" highlight="false" sid="ersVirtualHostname">
    <caption>ERS Instance - Virtual Host Name</caption>
    <helpitem id="common.virtualHostname"/>
    <value type="string" maxlength="60" minlength="1">SAPJEP</value>
    </field></input></inputgroup><inputgroup id="ID_27"> <caption><![CDATA[Unpack Archives]]></caption><selector enabled="true"><bool><boolvalue><false/></boolvalue></bool></selector><input  id="ID_28"><table enabled="true" fixedrows="true" sid="askUnpack">
    <caption>Archives to Be Unpacked</caption>
    <column enabled="true" type="check" numeric="false" upper="false" name="unpack">
      <caption>Unpack</caption>
      <helpitem id="common.Unpack"/>
      <value type="string">false</value>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="path">
      <caption>Archive</caption>
      <helpitem id="common.UnpackArchive"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="codepage">
      <caption>Codepage</caption>
      <helpitem id="common.UnpackArchiveCodepage"/>
    </column>
    <column enabled="false" type="field" numeric="false" upper="false" name="destination">
      <caption>Destination</caption>
      <helpitem id="common.UnpackArchiveDestination"/>
    </column>
    <column enabled="true" type="file" numeric="false" upper="false" name="ownPath">
      <caption>Downloaded To</caption>
      <helpitem id="common.UnpackArchiveDownload"/>
      <value type="string"/>
    </column>
    <row rowId="0">
      <boolvalue>
      <true/>
      </boolvalue>
      <value>DBINDEP\SAPEXE.SAR</value>
      <value>Unicode</value>
      <value>E:\usr\sap\JEP\SYS\exe\uc\NTAMD64</value>
      <value/>
    </row>
    </table></input></inputgroup></review><button sid="btPREV" default="false" enabled="false" ><caption>&lt; &amp;Back</caption><action>ACTION_PREV</action><tooltiphelp><![CDATA[]]></tooltiphelp></button><button sid="btNEXT" default="true"><caption>&amp;Next</caption><action>ACTION_NEXT</action><tooltiphelp><![CDATA[Continue processing]]></tooltiphelp></button><button sid="btEDIT"><caption>&amp;Revise</caption><action>ACTION_EDIT</action><tooltiphelp><![CDATA[Edit input values]]></tooltiphelp></button><button sid="btDETAIL" default="true"><caption>Show &amp;Detail</caption><action>ACTION_CBD_DETAIL</action><tooltiphelp><![CDATA[Show all input values]]></tooltiphelp></button></dialog></sapinstgui>
    TRACE      2015-03-18 11:30:32.161 [iaxxgenimp.cpp:1031]
              CGuiEngineImp::acceptAnswerForBlockingRequest
    Waiting for an answer from GUI
    TRACE      2015-03-18 11:30:33.330 [sixxbsummary.cpp:83]
              CSiSummaryContainer::setDocument(const iXMLDocument & doc)
    <?xml version="1.0" encoding="utf-8"?>
    <sapinstguiresp>
    <action>ACTION_NEXT</action>
    <dialog sid="diReviewDialog">
      <review id="review_controll"/>
    </dialog>
    </sapinstguiresp>
    TRACE      2015-03-18 11:30:33.331 [iaxxdlghnd.cpp:96]
              CDialogHandler::doHandleDoc()
    CDialogHandler: ACTION_NEXT requested
    TRACE      2015-03-18 11:30:33.331 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:33.356 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\keydb.xml
    TRACE      2015-03-18 11:30:33.375 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:33.375 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:33.429 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\statistic.xml
    TRACE      2015-03-18 11:30:33.500 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:33.773
    Status of Step |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_First_Steps|ind|ind|ind|ind|firstSteps|0|NW_Update_DLLs|ind|ind|ind|ind|dll|0|ntpatch2 is not OK. So we have to restart at this point.
    TRACE      2015-03-18 11:30:33.773
    Switch to STANDARD mode
    TRACE      2015-03-18 11:30:33.773 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:33.801 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\keydb.xml
    TRACE      2015-03-18 11:30:33.866 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:33.868 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:33.926 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\statistic.xml
    TRACE      2015-03-18 11:30:34.67 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    INFO      2015-03-18 11:30:34.67 [csistepexecute.cpp:1024]
    Execute step ntpatch2 of component |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_First_Steps|ind|ind|ind|ind|firstSteps|0|NW_Update_DLLs|ind|ind|ind|ind|dll|0
    TRACE      2015-03-18 11:30:34.084
      Call block: NW_Update_DLLs_ind_ind_ind_ind
        function: NW_Update_DLLs_ind_ind_ind_ind_SubComponentContainer_ntpatch2_Preprocess
    is validator: false
    TRACE      2015-03-18 11:30:34.115 [csistepexecute.cpp:1079]
    Execution of preprocess block of |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_First_Steps|ind|ind|ind|ind|firstSteps|0|NW_Update_DLLs|ind|ind|ind|ind|dll|0|ntpatch2 returns TRUE
    TRACE      2015-03-18 11:30:34.127
      Call block: NW_Update_DLLs_ind_ind_ind_ind
        function: NW_Update_DLLs_ind_ind_ind_ind_SubComponentContainer_ntpatch2
    is validator: false
    TRACE      2015-03-18 11:30:34.127
    NW_Update_DLLs.installDLLs(false)
    TRACE      2015-03-18 11:30:34.127
    NW_Update_DLLs.installDLLs() already run
    TRACE      2015-03-18 11:30:34.153
    The step ntpatch2 with key |NW_FirstClusterNode_Java|ind|ind|ind|ind|0|0|NW_FirstClusterNode|ind|ind|ind|ind|NW_FirstClusterNode|0|NW_First_Steps|ind|ind|ind|ind|firstSteps|0|NW_Update_DLLs|ind|ind|ind|ind|dll|0 has been executed successfully.
    INFO      2015-03-18 11:30:34.154 [synxccuren.cpp:887]
              CSyCurrentProcessEnvironmentImpl::setWorkingDirectory(const CSyPath & C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1)
              lib=syslib module=syslib
    Working directory changed to C:/Program Files/sapinst_instdir/NW740SR2/SYB/INSTALL/HA/JAVA/MSCS-NODE1.
    TRACE      2015-03-18 11:30:34.187 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:34.200 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\keydb.xml
    TRACE      2015-03-18 11:30:34.255 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    TRACE      2015-03-18 11:30:34.256 [kdxxctaco.cpp:93]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile start ...
    TRACE      2015-03-18 11:30:34.283 [kdxxctaco.cpp:121]
              CKdbTableContainerImpl::syncToContainerFile
    after creating out stream  for C:\Program Files\sapinst_instdir\NW740SR2\SYB\INSTALL\HA\JAVA\MSCS-NODE1\statistic.xml
    TRACE      2015-03-18 11:30:34.425 [kdxxctaco.cpp:155]
              CKdbTableContainerImpl::syncToContainerFile
    CKdbTableContainerImpl::syncToContainerFile stop ...
    INFO      2015-03-18 11:30:34.426 [csistepexecute.cpp:1024]
    Execute s

    Hello Arjun,
    Have you executed any other installation prior this attempt?
    It seems there are unfinished installations on this server. If this is the case, run the SWPM to uninstall the unfinished installation. Then, execute the installation once again.
    Also, make sure all IPs are corrects in the DND and host files. There were cases in which the IPs were not properly configured, or maybe a typo.
    Regards,
    Henrique Girardi
    SAP Active Global Support
    #2081285 - How to enter good search terms to an SAP search?
    https://service.sap.com/sap/support/notes/2081285
    SWPM Troubleshooting documents:
    http://scn.sap.com/docs/DOC-62646

  • Extension Manager CS6 isn't showing any Products

    Hello!
    I need to install an extension into Flash CS6, but when i open the Extension Manager there are no Products displayed on the left side.
    I'd be very thankful for your help, because this extension is essential to publish online ads. Thank you very much!
    I'm using the following CS6 products: Flash, Illustrator, InDesign Photoshop and i am on a Mac (10.7.5)
    Maybe it's usefull to mention that this is not my private computer but occupational. As developer i have local admin rights but i'm not acquainted with the details of the installations...
    I followed the instructions to create a log report for the Extension Manager – this is what i got:
    1/4/2013 21:30:41.947 [INFO] com.adobe.exman.controller.PassiveGatewayPrepCommand execute(), PassiveGatewayPrepCommand is executed.
    1/4/2013 21:30:41.952 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway registerAirInterfaces
    1/4/2013 21:30:41.952 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway sendCallBackReady(), available==true
    1/4/2013 21:30:41.953 [INFO] com.adobe.exman.controller.ModelPrepCommand ModelPrepCommand command finished.
    1/4/2013 21:30:41.955 [INFO] com.adobe.exman.model.ExManConfigurationProxy ExManConfigurationProxy(), zstringPath is: /Applications/Adobe Extension Manager CS6/Adobe Extension Manager CS6.app/Contents/MacOS/ZStringResources
    1/4/2013 21:30:41.956 [INFO] com.adobe.exman.model.ExManConfigurationProxy initLocaleList(), the locale list is: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    1/4/2013 21:30:41.959 [INFO] com.adobe.exman.view.ExManApp ExManApp(), instance is constructed.
    1/4/2013 21:30:41.976 [DEBUG] com.adobe.exman.util.ExManVulcan ExManVulcan: ctor...
    1/4/2013 21:30:41.981 [DEBUG] com.adobe.exman.util.ExManVulcan ExManVulcan, vulcanSetup
    1/4/2013 21:30:42.004 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airGetLocaleList Message:-1,airGetLocaleList
    1/4/2013 21:30:42.005 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirGetLocaleList(), sessionId== -1
    1/4/2013 21:30:42.005 [INFO] com.adobe.exman.controller.passivecommand.GetLocaleListCommand execute(), sessionId= -1
    1/4/2013 21:30:42.006 [INFO] com.adobe.exman.controller.passivecommand.GetLocaleListCommand execute(), the locale list is: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    1/4/2013 21:30:42.006 [INFO] com.adobe.exman.controller.passivecommand.RespondPassiveExternalGatewayCommand execute(), parameter: sessionId to respond: -1parameters to respond: en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    1/4/2013 21:30:42.007 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway giveResponseToExternal(), the args to external interface is: externalCallBack,-1,0,en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    1/4/2013 21:30:42.007 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalCallBack,-1,0,en_US,da_DK,de_DE,cs_CZ,es_ES,fi_FI,fr_FR,hu_HU,it_IT,ja_JP,ko_KR,nb_NO,nl_NL,pl_PL,pt_BR,ru_RU,sv_SE,tr_TR,uk_UA,zh_CN,zh_TW
    1/4/2013 21:30:42.010 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airSetLocale Message:-2,airSetLocale,de_DE
    1/4/2013 21:30:42.010 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirSetLocale(), sessionId=-2args=de_DE
    1/4/2013 21:30:42.011 [INFO] com.adobe.exman.model.ExManConfigurationProxy defaultOSLocale(), set to: de_DE
    1/4/2013 21:30:42.016 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: SET_LOCAL
    notification body: de_DE
    1/4/2013 21:30:42.016 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.016 [DEBUG] com.adobe.exman.view.ExManApp SET_LOCAL
    1/4/2013 21:30:42.017 [INFO] com.adobe.exman.view.ExManApp handleNotification(), locale= de_DE
    1/4/2013 21:30:42.019 [INFO] com.adobe.exman.controller.LoadUIPreferencesCommand execute(), LoadUIPreferencesCommand is executed.
    1/4/2013 21:30:42.020 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: LOAD_UI_PREFERENCES_DONE
    notification body: [object UIPreferences]
    1/4/2013 21:30:42.021 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.021 [DEBUG] com.adobe.exman.view.ExManApp LOAD_UI_PREFERENCES_DONE
    1/4/2013 21:30:42.021 [INFO] com.adobe.exman.controller.SetWindowPreferencesCommand execute(), SetWindowPreferencesCommand is executed.
    1/4/2013 21:30:42.022 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 0----
    1/4/2013 21:30:42.023 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ExternalGateway()
    1/4/2013 21:30:42.023 [INFO] com.adobe.exman.controller.gateway.ExternalGateway resetExternalInterface()
    1/4/2013 21:30:42.023 [INFO] com.adobe.exman.controller.gateway.ExternalGateway resetExternalInterface(), airCallBack added.
    1/4/2013 21:30:42.023 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 0----
    1/4/2013 21:30:42.024 [INFO] com.adobe.exman.controller.gateway.ExternalGateway setWindowPreferences(), sessionId= 0, windowPosition_x= 250, windowPosition_y= 168, windowWidth= 810, windowHeight= 600
    1/4/2013 21:30:42.073 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message0,0
    1/4/2013 21:30:42.074 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 0
    responseType= 0
    responseBody=
    1/4/2013 21:30:42.074 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::SetWindowPreferencesSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.074 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.074 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_SET_WINDOW_PREFERENCES_SUCCEED
    1/4/2013 21:30:42.074 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now:
    1/4/2013 21:30:42.084 [INFO] com.adobe.exman.ExManGUI onColumnAssociateChange()
    1/4/2013 21:30:42.084 [INFO] com.adobe.exman.view.widget.ExManDataGridColumn adjustColumnWidth()
    1/4/2013 21:30:42.086 [INFO] com.adobe.exman.view.widget.ExManDataGridColumn adjustColumnWidth(), width of column [OnOff] set to: 73
    1/4/2013 21:30:42.086 [INFO] com.adobe.exman.ExManGUI onColumnAssociateChange(), width of column [0] is changed to: 73
    1/4/2013 21:30:42.109 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airNotifyReady Message:-4,airNotifyReady
    1/4/2013 21:30:42.109 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handleAirNotifyReady(), sessionId=-4
    1/4/2013 21:30:42.110 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----
    1/4/2013 21:30:42.110 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----
    1/4/2013 21:30:42.110 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----
    1/4/2013 21:30:42.110 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----
    1/4/2013 21:30:42.111 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----3----
    1/4/2013 21:30:42.111 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----2----3----
    1/4/2013 21:30:42.111 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###getExManConfigPath(), the params to OWL: sessionid=2
    1/4/2013 21:30:42.111 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalGetExManConfigPath,2
    1/4/2013 21:30:42.112 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###getSupportedProducts(), the params to OWL: sessionid=3
    1/4/2013 21:30:42.112 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalGetSupportedProducts,3
    1/4/2013 21:30:42.113 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message2,0,/Library/Application Support/Adobe/Extension Manager CS6/EM Store,/Users/**************/Library/Application Support/Adobe/Extension Manager CS6/EM Store,6.0.4.8,,file:///Library/Application Support/Adobe/Extension Manager CS6/,file:///Library/Application Support/Adobe/Extension Manager CS5.5/,/Applications
    1/4/2013 21:30:42.113 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 2
    responseType= 0
    responseBody=/Library/Application Support/Adobe/Extension Manager CS6/EM Store,/Users/**************/Library/Application Support/Adobe/Extension Manager CS6/EM Store,6.0.4.8,,file:///Library/Application Support/Adobe/Extension Manager CS6/,file:///Library/Application Support/Adobe/Extension Manager CS5.5/,/Applications
    1/4/2013 21:30:42.113 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::GetExManConfigPathSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 0 :/Library/Application Support/Adobe/Extension Manager CS6/EM Store
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 1 :/Users/**************/Library/Application Support/Adobe/Extension Manager CS6/EM Store
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 2 :6.0.4.8
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 3 :
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 4 :file:///Library/Application Support/Adobe/Extension Manager CS6/
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 5 :file:///Library/Application Support/Adobe/Extension Manager CS5.5/
    1/4/2013 21:30:42.114 [INFO] com.adobe.exman.controller.session.backend.BackendSession responsebody 6 :/Applications
    1/4/2013 21:30:42.115 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy totalExtDir(), the _totalExtDir is set to: /Library/Application Support/Adobe/Extension Manager CS6/EM Store/
    1/4/2013 21:30:42.115 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy myEMStorePath(), the _myEMStorePath is set to: /Users/**************/Library/Application Support/Adobe/Extension Manager CS6/EM Store/
    1/4/2013 21:30:42.115 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy the extension manager's version is set to: 6.0.4.8
    1/4/2013 21:30:42.115 [INFO] com.adobe.exman.model.ProductExtensionManagerProxy the extension manager last version extension path is set to:
    1/4/2013 21:30:42.116 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----
    1/4/2013 21:30:42.116 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message3,0
    1/4/2013 21:30:42.116 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 3
    responseType= 0
    responseBody=
    1/4/2013 21:30:42.116 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::GetSupportedProductsSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.117 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.117 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_APPLICATION_STARTUP_SUCCEED
    1/4/2013 21:30:42.118 [INFO] com.adobe.exman.controller.MigratePreferredExtensionCommand execute(), MigratePreferredExtensionCommand
    1/4/2013 21:30:42.119 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----4----
    1/4/2013 21:30:42.119 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----4----
    1/4/2013 21:30:42.119 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----4----5----
    1/4/2013 21:30:42.120 [INFO] com.adobe.exman.controller.session.frontend.FrontendMigratePreferredExtensionSession initiate()
    1/4/2013 21:30:42.120 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 1----3----4----
    1/4/2013 21:30:42.120 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: NOTIF_ACTION_BEGIN
    notification body: [object ActionBeginParameter]
    1/4/2013 21:30:42.121 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.121 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_ACTION_BEGIN
    1/4/2013 21:30:42.121 [INFO] com.adobe.exman.model.CommandLineRequestProxy canExecuteCommandLineRequest, set value to: false
    1/4/2013 21:30:42.122 [INFO] com.adobe.exman.ExManGUI enableApp(), set value to: false
    1/4/2013 21:30:42.123 [INFO] com.adobe.exman.ExManGUI canAcceptUIInput(), set to: false
    1/4/2013 21:30:42.123 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_MODALDIALOG_POPUP
    1/4/2013 21:30:42.124 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 6, opCode=10, mouseX=0, mouseY=0
    1/4/2013 21:30:42.124 [INFO] com.adobe.exman.controller.MigratePreferredExtensionSession. MigratePreferredExtensionSession. initiate ()
    1/4/2013 21:30:42.124 [INFO] com.adobe.exman.controller.NotifyOperationBeginEndCommand execute(), NotifyOperationBeginEndCommand is executed.
    1/4/2013 21:30:42.125 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr airNotifyOperationBeginOrEnd,7,preinstall,1,0
    1/4/2013 21:30:42.125 [INFO] com.adobe.exman.controller.gateway.ExternalGateway migratePreferredExtension(), the params to external install: sessionid=4
    1/4/2013 21:30:42.125 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalMigratePreferredExtension,4
    1/4/2013 21:30:42.126 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 3----4----
    1/4/2013 21:30:42.126 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 4----
    1/4/2013 21:30:42.133 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message4,0
    1/4/2013 21:30:42.133 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 4
    responseType= 0
    responseBody=
    1/4/2013 21:30:42.133 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::MigratePreferredExtensionSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.133 [INFO] com.adobe.exman.controller.MigratePreferredExtensionSession. MigratePreferredExtensionSession. specificHandleSuccess ()
    1/4/2013 21:30:42.134 [INFO] com.adobe.exman.controller.NotifyOperationBeginEndCommand execute(), NotifyOperationBeginEndCommand is executed.
    1/4/2013 21:30:42.134 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr airNotifyOperationBeginOrEnd,8,preinstall,0,0
    1/4/2013 21:30:42.134 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.134 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_MIGRATE_PREFERRED_EXTENSION_COMPLETE
    1/4/2013 21:30:42.136 [INFO] com.adobe.exman.controller.GetLastVersionPointProductsCommand execute(), GetLastVersionPointProductsCommand
    1/4/2013 21:30:42.136 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 4----9----
    1/4/2013 21:30:42.136 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 4----9----
    1/4/2013 21:30:42.137 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 4----9----10----
    1/4/2013 21:30:42.137 [INFO] com.adobe.exman.controller.session.frontend.FrontendGetLastVersionPointProductsSession initiate()
    1/4/2013 21:30:42.137 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 4----9----
    1/4/2013 21:30:42.137 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: NOTIF_ACTION_BEGIN
    notification body: [object ActionBeginParameter]
    1/4/2013 21:30:42.137 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.138 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_ACTION_BEGIN
    1/4/2013 21:30:42.138 [INFO] com.adobe.exman.model.CommandLineRequestProxy canExecuteCommandLineRequest, set value to: false
    1/4/2013 21:30:42.138 [DEBUG] com.adobe.exman.ExManGUI onActionBegin(), unknown action name: GET_LAST_VERSION_PRODUCTS
    1/4/2013 21:30:42.138 [INFO] com.adobe.exman.ExManGUI enableApp(), set value to: false
    1/4/2013 21:30:42.138 [INFO] com.adobe.exman.ExManGUI canAcceptUIInput(), set to: false
    1/4/2013 21:30:42.139 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_MODALDIALOG_POPUP
    1/4/2013 21:30:42.139 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 11, opCode=10, mouseX=0, mouseY=0
    1/4/2013 21:30:42.139 [INFO] com.adobe.exman.controller.session.backend.GetLastVersionPointProductsSession. GetLastVersionPointProductsSession. initiate ()
    1/4/2013 21:30:42.139 [INFO] com.adobe.exman.controller.gateway.ExternalGateway getLastVersionPointProducts(), the params to external install: sessionid=9
    1/4/2013 21:30:42.139 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalGetLastVersionPointProducts,9
    1/4/2013 21:30:42.140 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 9----
    1/4/2013 21:30:42.140 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message9,0
    1/4/2013 21:30:42.140 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 9
    responseType= 0
    responseBody=
    1/4/2013 21:30:42.140 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::GetLastVersionPointProductsSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.141 [INFO] com.adobe.exman.controller.session.backend.GetLastVersionPointProductsSession. GetLastVersionPointProductsSession. specificHandleSuccess ()
    1/4/2013 21:30:42.141 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.141 [DEBUG] com.adobe.exman.view.ExManApp END_GET_LAST_VERSION_POINT_PRODUCTS
    1/4/2013 21:30:42.142 [INFO] com.adobe.exman.model.MigrationExtensionsProxy MigrateExtensionsProxy(), _already_Migrated_Flag_File: /Users/**************/Library/Preferences/Adobe/Extension Manager CS6/Migrated.YES
    1/4/2013 21:30:42.142 [INFO] com.adobe.exman.model.MigrationExtensionsProxy MigrateExtensionsProxy(), _never_Migrated_Flag_File: /Users/**************/Library/Preferences/Adobe/Extension Manager CS6/Migrated.NEVER
    1/4/2013 21:30:42.142 [INFO] com.adobe.exman.model.MigrationExtensionsProxy needToMigrateExtensions(), don't need to immigrate extensions.
    1/4/2013 21:30:42.143 [INFO] com.adobe.exman.controller.RequestLoadExtensionCommand execute(), RequestLoadExtensionCommand
    1/4/2013 21:30:42.143 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 9----12----
    1/4/2013 21:30:42.143 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 9----12----
    1/4/2013 21:30:42.143 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 9----12----13----
    1/4/2013 21:30:42.144 [INFO] com.adobe.exman.controller.session.frontend.FrontendRequestLoadExtensionSession initiate()
    1/4/2013 21:30:42.144 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 9----12----
    1/4/2013 21:30:42.144 [INFO] com.adobe.exman.view.ExManApp handleNotification(), got notification: NOTIF_ACTION_BEGIN
    notification body: [object ActionBeginParameter]
    1/4/2013 21:30:42.144 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.144 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_ACTION_BEGIN
    1/4/2013 21:30:42.144 [INFO] com.adobe.exman.model.CommandLineRequestProxy canExecuteCommandLineRequest, set value to: false
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.ExManGUI enableApp(), set value to: false
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.ExManGUI canAcceptUIInput(), set to: false
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_MODALDIALOG_POPUP
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 14, opCode=10, mouseX=0, mouseY=0
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.controller.RequestLoadExtensionSession. MigratePreferredExtensionSession. initiate ()
    1/4/2013 21:30:42.145 [INFO] com.adobe.exman.controller.gateway.ExternalGateway requestToLoadExtension(), the params to external install: sessionid=12
    1/4/2013 21:30:42.146 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalLoadExtension,12
    1/4/2013 21:30:42.146 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 12----
    1/4/2013 21:30:42.152 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airCallBack Message12,0
    1/4/2013 21:30:42.153 [INFO] com.adobe.exman.controller.gateway.ExternalGateway handleResponse(), parameters of handleResponse:
    sessionId= 12
    responseType= 0
    responseBody=
    1/4/2013 21:30:42.153 [INFO] com.adobe.exman.controller.session.backend.BackendSession com.adobe.exman.controller.session.backend::RequestLoadExtensionSession got parameters in handleResponse:
    responseType= 0
    1/4/2013 21:30:42.153 [INFO] com.adobe.exman.controller.RequestLoadExtensionSession. MigratePreferredExtensionSession. specificHandleSuccess ()
    1/4/2013 21:30:42.153 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.153 [DEBUG] com.adobe.exman.view.ExManApp LOAD_EXTENSIONS_COMPLETE
    1/4/2013 21:30:42.154 [INFO] com.adobe.exman.ExManGUI chenxiaoyan: п
    1/4/2013 21:30:42.158 [INFO] com.adobe.exman.view.ExManApp loadSupportProducts, no supported product installed
    1/4/2013 21:30:42.158 [INFO] com.adobe.exman.view.ExManApp onUIInitializationDone()
    1/4/2013 21:30:42.159 [INFO] com.adobe.exman.controller.StartTimerToBumpBridgeTalkMessages execute(), StartTimerToBumpBridgeTalkMessages is executed.
    1/4/2013 21:30:42.159 [INFO] com.adobe.exman.model.PumpBridgeTalkMessagesProxy startTimer(), to start timer.
    1/4/2013 21:30:42.159 [INFO] com.adobe.exman.controller.CommandLineRequestReadyCommand execute(), CommandLineRequestReadyCommand is executed.
    1/4/2013 21:30:42.160 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway sendCommandLineRequestReady(), available==true
    1/4/2013 21:30:42.160 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr airCommandLineRequestReady,15
    1/4/2013 21:30:42.160 [INFO] com.adobe.exman.model.CommandLineRequestProxy canExecuteCommandLineRequest, set value to: true
    1/4/2013 21:30:42.161 [INFO] com.adobe.exman.controller.RemoveProductCommand execute(), RemoveProductCommand is executed.
    1/4/2013 21:30:42.161 [INFO] com.adobe.exman.controller.ImportProductCommand XManDerived path = /Library/Application Support/Adobe/Extension Manager CS6/EM Store,name = XManDerive.xml
    1/4/2013 21:30:42.161 [INFO] com.adobe.exman.controller.ImportProductCommand XManDerived path = /Library/Application Support/Adobe/Extension Manager CS6,name = XManDerive.xml
    1/4/2013 21:30:42.162 [INFO] com.adobe.exman.controller.ImportProductCommand XManDerived path = /Library/Application Support/Adobe/,name = XManDerive.xml
    1/4/2013 21:30:42.163 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), will load XML File: file:///Library/Application%20Support/Adobe/XManDerive.xml
    1/4/2013 21:30:42.163 [DEBUG] com.adobe.exman.business.XMLLoader XMLLoader(), XML file is NOT XManConfig.xml file, copy it to a temp file to load
    1/4/2013 21:30:42.164 [DEBUG] com.adobe.exman.business.XMLLoader Temp file created: /private/var/folders/vs/3m_p6qjx08z4gy10s4mwnf3800013b/T/TemporaryItems/FlashTmp0
    1/4/2013 21:30:42.164 [DEBUG] com.adobe.exman.business.XMLLoader Config file copied to temp file
    1/4/2013 21:30:42.165 [INFO] com.adobe.exman.business.XMLLoader XMLLoader(), try to load: file:///Library/Application%20Support/Adobe/XManDerive.xml
    1/4/2013 21:30:42.166 [INFO] com.adobe.exman.ExtensionDescription setExtensionFileInfo()
    1/4/2013 21:30:42.166 [INFO] com.adobe.exman.ExtensionDescription setExtensionFileInfo(), no file info entry.
    1/4/2013 21:30:42.169 [INFO] com.adobe.exman.ExtensionDescription setUpdateInfo()
    1/4/2013 21:30:42.169 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now:
    1/4/2013 21:30:42.194 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.194 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_PRODUCT_OPERATION_FINISHED
    1/4/2013 21:30:42.194 [INFO] com.adobe.exman.view.ExManApp Product opeation as been succeeded
    1/4/2013 21:30:42.195 [DEBUG] com.adobe.exman.util.ExManVulcan ExManVulcan, vulcanSetup
    1/4/2013 21:30:42.201 [INFO] com.adobe.exman.controller.gateway.Application ###Receive airEnableUI Message:-5,airEnableUI
    1/4/2013 21:30:42.201 [INFO] com.adobe.exman.controller.gateway.PassiveExternalGateway handlAirEnableUI(), sessionId=-5
    1/4/2013 21:30:42.202 [INFO] com.adobe.exman.model.CommandLineRequestProxy pushRequest(), can execute command line request now, directly execute it.
    1/4/2013 21:30:42.202 [INFO] com.adobe.exman.model.CommandLineRequestProxy canExecuteCommandLineRequest, set value to: true
    1/4/2013 21:30:42.202 [INFO] com.adobe.exman.model.CommandLineRequestProxy The current request is : com.adobe.exman.controller.commandlinerequest::EnableUICommandLineRequest: requestArguments=null timeout=5
    1/4/2013 21:30:42.203 [INFO] com.adobe.exman.controller.commandlinerequest.EnableUICommandLineRequest execute(), EnableUICommandLineRequest is executed.
    1/4/2013 21:30:42.203 [DEBUG] com.adobe.exman.view.ExManApp @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    1/4/2013 21:30:42.203 [DEBUG] com.adobe.exman.view.ExManApp NOTIF_EABLE_UI
    1/4/2013 21:30:42.204 [INFO] com.adobe.exman.controller.SendDraggableAreaToExternalCommand execute(), SendDraggableAreaToExternalCommand is executed. the parameter is:
    Title bar height: 50
    Excluded area: 426, 10, 327, 38
    Excluded area: 312, 10, 188, 38
    Excluded area: 173, 10, 84, 38
    Excluded area: 55, 17, 40, 30
    Excluded area: 38, 17, 23, 30
    Excluded area: 21, 17, 6, 30
    1/4/2013 21:30:42.205 [INFO] com.adobe.exman.controller.gateway.ExternalGateway sendDraggableAreaToExternal(), sessionId= 16, titleBarHeight=50, excludedAreas= 426,10,327,38,312,10,188,38,173,10,84,38,55,17,40,30,38,17,23,30,21,17,6,30
    1/4/2013 21:30:42.205 [INFO] com.adobe.exman.ExManGUI enableApp(), set value to: true
    1/4/2013 21:30:42.205 [INFO] com.adobe.exman.ExManGUI canAcceptUIInput(), set to: true
    1/4/2013 21:30:42.205 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_MODALDIALOG_CLOSE
    1/4/2013 21:30:42.206 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 17, opCode=11, mouseX=0, mouseY=0
    1/4/2013 21:30:42.207 [DEBUG] com.adobe.exman.controller.RequestHeadlightsCommand execute: notification NOTIF_INIT_ADOBE_PIP
    1/4/2013 21:30:42.208 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway headhightsOperate: sessionid 18
    1/4/2013 21:30:42.208 [INFO] com.adobe.exman.model.CommandLineRequestProxy clRequest.executeChildCommand()
    1/4/2013 21:30:43.777 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_STARTTOMOVE
    1/4/2013 21:30:43.777 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 19, opCode=3, mouseX=725, mouseY=12
    1/4/2013 21:30:44.917 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_STARTTOMOVE
    1/4/2013 21:30:44.917 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 20, opCode=3, mouseX=312, mouseY=28
    1/4/2013 21:30:45.387 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:30:45.387 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:30:48.391 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:30:48.392 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:30:51.392 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:30:51.393 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:30:54.392 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:30:54.392 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:30:57.392 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:30:57.393 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:00.393 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:31:00.393 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:03.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:31:03.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:06.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:31:06.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:09.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:31:09.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:12.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway pumpBridgeTalkMessage(), sessionId: pumpBridgeTalkMessage
    1/4/2013 21:31:12.434 [DEBUG] com.adobe.exman.controller.gateway.ExternalGateway ###call2extensionMgr externalPumpBridgeTalkMessage,pumpBridgeTalkMessage
    1/4/2013 21:31:12.449 [INFO] com.adobe.exman.controller.AppWinOperationCommand execute(), AppWinOperationCommand is executed. notification=APPWIN_STARTTOMOVE
    1/4/2013 21:31:12.450 [INFO] com.adobe.exman.controller.gateway.ExternalGateway ###appWinOperate(), sessionId: 21, opCode=3, mouseX=305, mouseY=12
    1/4/2013 21:31:13.786 [INFO] com.adobe.exman.controller.ApplicationReadyToExitCommand execute(), ApplicationReadyToExitCommand is executed.
    1/4/2013 21:31:13.787 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 22----
    1/4/2013 21:31:13.787 [INFO] com.adobe.exman.model.SessionManagerProxy outputAllTheSessionId(), there are following sessions now: 22----
    1/4/2013 21:31:13.787 [INFO] com.adobe.exman.controller.gateway.ExternalGateway getWindowPreferences(), sessionId= 22
    1/4/2013 21:31:13.788 [INFO]

    There should be another log file ExtensionManager.log. Please package all *.log files under the log folder into a zip file then send it to [email protected]

  • Name does not override correctly when creating a Division from template

    I am still having a problem when creating Divisions with the WebServices API.
    Namely, when I create a Division based on a Template (in order to have a given default thumbnail image and description, etc) the Name parameter (the "title" of the Division, which appears next to its icon on the main site page inside the top level Section boxes) is never set correctly. The Name I specify for the Division never overrides the default.
    In my example, I try to create a Division with name "Food Science and Human Nutrition." It is based on a Division template with handle 1911155332. The Name of that Division template is "Robot Division" and the ShortName is "RobotDivision".
    I am sending the following XML via Web Services:
    <ITunesUDocument>
    <Version>1.1.3</Version>
    <AddDivision>
    <ParentHandle>1945525657</ParentHandle>
    <ParentPath/>
    <TemplateHandle>1911155332</TemplateHandle>
    <Division>
    <Name>Food Science and Human Nutrition</Name>
    <ShortName>FSHN</ShortName>
    <Identifier>RobotCourses:FSHN</Identifier>
    <Permission>
    <Credential>Authenticated@urn:mace:itunesu.com:sites:illinois.edu</Credential>
    <Access>No Access</Access>
    </Permission>
    <Permission>
    <Credential>Student@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:FSHN</C redential>
    <Access>Download</Access>
    </Permission>
    </Division>
    </AddDivision>
    </ITunesUDocument>
    The Division is created and no errors come back. However, when I look at the site, the Name of the newly created Division is "Robot Courses" (not "Food Science and Human Nutrition" as I want). The ShortName IS correctly set to "FSHN" as I specified in the XML.
    Incidentally this was part of creating a Course "FSHN 101," the Course is also based on a Course template, but it creates with the Name and ShortName as I desire and there are no other problems - I can log into the Division and Course as expected.
    *QUESTION #1: Is anyone else out there ever having this problem?*
    *QUESTION #2: Is there anything obviously wrong in my XML?*
    I have tried this multiple times, always with the same result. Creating Divisions not based on a template works (but for various reasons we need to be able to use templates). I have been unable to edit the Name after the fact with MergeDivision either.
    Our campus Apple contact sent in a ticket about this, but the response from Apple was to post here in the forum, which is monitored. I am unsure if I should post questions of this sort here in the Administrators Forum or in the general forum, for this one I will try both.
    Thank you very much for any assistance.

    I am still having a problem when creating Divisions with the WebServices API.
    Namely, when I create a Division based on a Template (in order to have a given default thumbnail image and description, etc) the Name parameter (the "title" of the Division, which appears next to its icon on the main site page inside the top level Section boxes) is never set correctly. The Name I specify for the Division never overrides the default.
    In my example, I try to create a Division with name "Food Science and Human Nutrition." It is based on a Division template with handle 1911155332. The Name of that Division template is "Robot Division" and the ShortName is "RobotDivision".
    I am sending the following XML via Web Services:
    <ITunesUDocument>
    <Version>1.1.3</Version>
    <AddDivision>
    <ParentHandle>1945525657</ParentHandle>
    <ParentPath/>
    <TemplateHandle>1911155332</TemplateHandle>
    <Division>
    <Name>Food Science and Human Nutrition</Name>
    <ShortName>FSHN</ShortName>
    <Identifier>RobotCourses:FSHN</Identifier>
    <Permission>
    <Credential>Authenticated@urn:mace:itunesu.com:sites:illinois.edu</Credential>
    <Access>No Access</Access>
    </Permission>
    <Permission>
    <Credential>Student@urn:mace:itunesu.com:sites:illinois.edu:RobotCourses:FSHN</C redential>
    <Access>Download</Access>
    </Permission>
    </Division>
    </AddDivision>
    </ITunesUDocument>
    The Division is created and no errors come back. However, when I look at the site, the Name of the newly created Division is "Robot Courses" (not "Food Science and Human Nutrition" as I want). The ShortName IS correctly set to "FSHN" as I specified in the XML.
    Incidentally this was part of creating a Course "FSHN 101," the Course is also based on a Course template, but it creates with the Name and ShortName as I desire and there are no other problems - I can log into the Division and Course as expected.
    *QUESTION #1: Is anyone else out there ever having this problem?*
    *QUESTION #2: Is there anything obviously wrong in my XML?*
    I have tried this multiple times, always with the same result. Creating Divisions not based on a template works (but for various reasons we need to be able to use templates). I have been unable to edit the Name after the fact with MergeDivision either.
    Our campus Apple contact sent in a ticket about this, but the response from Apple was to post here in the forum, which is monitored. I am unsure if I should post questions of this sort here in the Administrators Forum or in the general forum, for this one I will try both.
    Thank you very much for any assistance.

  • How to insert the value axis in a EXCEL graph

    Hello,
    how can I do to insert the value axis (name) and graph tilte in a EXCEL graph using report generation in LabVIEW??
    I'm using excel specific functions, but I don't find it anywhere.
    THANKS.

    Hi,
    the function Excel Set Graph Font.vi has an input parameter called Title that corresponds to the name of the axis selected through Axis Type parameter.
    And the funtion Excel Insert Graph.vi has an input parameter called Graph Title.
    You can see an example called Column Graph (Excel).vi in Find Examples>Toolkits and Modules>Report Generation.

  • Create RSS feed for Narrow casting

    We are using narrow casting and we can stream content to it using an RSS-feed.
    We want to do the following: - Create an rss feed of an exchange (mailbox or calendar) using a script. I think it is just like this link. Or as shown below: 
    ###Code from http://poshcode.org/?show=669
    # Creates an RSS feed
    # Parameter input is for "site": Path, Title, Url, Description
    # Pipeline input is for feed items: hashtable with Title, Link, Author, Description, and pubDate keys
    Function New-RssFeed
    param (
    $Path = "$( throw 'Path is a mandatory parameter.' )",
    $Title = "Site Title",
    $Url = "http://$( $env:computername )",
    $Description = "Description of site"
    Begin {
    # feed metadata
    $encoding = [System.Text.Encoding]::UTF8
    $writer = New-Object System.Xml.XmlTextWriter( $Path, $encoding )
    $writer.WriteStartDocument()
    $writer.WriteStartElement( "rss" )
    $writer.WriteAttributeString( "version", "2.0" )
    $writer.WriteStartElement( "channel" )
    $writer.WriteElementString( "title", $Title )
    $writer.WriteElementString( "link", $Url )
    $writer.WriteElementString( "description", $Description )
    Process {
    # Construct feed items
    $writer.WriteStartElement( "item" )
    $writer.WriteElementString( "title", $_.title )
    $writer.WriteElementString( "link", $_.link )
    $writer.WriteElementString( "author", $_.author )
    $writer.WriteStartElement( "description" )
    $writer.WriteRaw( "<![CDATA[" ) # desc can contain HTML, so its escaped using SGML escape code
    $writer.WriteRaw( $_.description )
    $writer.WriteRaw( "]]>" )
    $writer.WriteEndElement()
    $writer.WriteElementString( "pubDate", $_.pubDate.toString( 'r' ) )
    $writer.WriteElementString( "guid", $homePageUrl + "/" + [guid]::NewGuid() )
    $writer.WriteEndElement()
    End {
    $writer.WriteEndElement()
    $writer.WriteEndElement()
    $writer.WriteEndDocument()
    $writer.Close()
    ### end code from http://poshcode.org/?show=669
    ## Get the Mailbox to Access from the 1st commandline argument
    $MailboxName = $args[0]
    ## Load Managed API dll
    Add-Type -Path "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"
    ## Set Exchange Version
    $ExchangeVersion = [Microsoft.Exchange.WebServices.Data.ExchangeVersion]::Exchange2010_SP1
    ## Create Exchange Service Object
    $service = New-Object Microsoft.Exchange.WebServices.Data.ExchangeService($ExchangeVersion)
    ## Set Credentials to use two options are availible Option1 to use explict credentials or Option 2 use the Default (logged On) credentials
    #Credentials Option 1 using UPN for the windows Account
    $psCred = Get-Credential
    $creds = New-Object System.Net.NetworkCredential($psCred.UserName.ToString(),$psCred.GetNetworkCredential().password.ToString())
    $service.Credentials = $creds
    #Credentials Option 2
    #service.UseDefaultCredentials = $true
    ## Choose to ignore any SSL Warning issues caused by Self Signed Certificates
    ## Code From http://poshcode.org/624
    ## Create a compilation environment
    $Provider=New-Object Microsoft.CSharp.CSharpCodeProvider
    $Compiler=$Provider.CreateCompiler()
    $Params=New-Object System.CodeDom.Compiler.CompilerParameters
    $Params.GenerateExecutable=$False
    $Params.GenerateInMemory=$True
    $Params.IncludeDebugInformation=$False
    $Params.ReferencedAssemblies.Add("System.DLL") | Out-Null
    $TASource=@'
    namespace Local.ToolkitExtensions.Net.CertificatePolicy{
    public class TrustAll : System.Net.ICertificatePolicy {
    public TrustAll() {
    public bool CheckValidationResult(System.Net.ServicePoint sp,
    System.Security.Cryptography.X509Certificates.X509Certificate cert,
    System.Net.WebRequest req, int problem) {
    return true;
    $TAResults=$Provider.CompileAssemblyFromSource($Params,$TASource)
    $TAAssembly=$TAResults.CompiledAssembly
    ## We now create an instance of the TrustAll and attach it to the ServicePointManager
    $TrustAll=$TAAssembly.CreateInstance("Local.ToolkitExtensions.Net.CertificatePolicy.TrustAll")
    [System.Net.ServicePointManager]::CertificatePolicy=$TrustAll
    ## end code from http://poshcode.org/624
    ## Set the URL of the CAS (Client Access Server) to use two options are availbe to use Autodiscover to find the CAS URL or Hardcode the CAS to use
    #CAS URL Option 1 Autodiscover
    $service.AutodiscoverUrl($MailboxName,{$true})
    "Using CAS Server : " + $Service.url
    #CAS URL Option 2 Hardcoded
    #$uri=[system.URI] "https://casservername/ews/exchange.asmx"
    #$service.Url = $uri
    ## Optional section for Exchange Impersonation
    #$service.ImpersonatedUserId = new-object Microsoft.Exchange.WebServices.Data.ImpersonatedUserId([Microsoft.Exchange.WebServices.Data.ConnectingIdType]::SmtpAddress, $MailboxName)
    # Bind to the Contacts Folder
    $folderid= new-object Microsoft.Exchange.WebServices.Data.FolderId([Microsoft.Exchange.WebServices.Data.WellKnownFolderName]::Inbox,$MailboxName)
    $Inbox = [Microsoft.Exchange.WebServices.Data.Folder]::Bind($service,$folderid)
    $psPropset = new-object Microsoft.Exchange.WebServices.Data.PropertySet([Microsoft.Exchange.WebServices.Data.BasePropertySet]::FirstClassProperties)
    #Define ItemView to retrive just 50 Items
    $ivItemView = New-Object Microsoft.Exchange.WebServices.Data.ItemView(50)
    $fiItems = $service.FindItems($Inbox.Id,$ivItemView)
    [Void]$service.LoadPropertiesForItems($fiItems,$psPropset)
    $feedItems = @()
    foreach($Item in $fiItems.Items){
    "processing Item " + $Item.Subject
    $PostItem = @{}
    $PostItem.Add("Title",$Item.Subject)
    $PostItem.Add("Author",$Item.Sender.Address)
    $PostItem.Add("pubDate",$Item.DateTimeReceived)
    $PostItem.Add("link",("https://" + $service.Url.Host + "/owa/" + $Item.WebClientReadFormQueryString))
    $PostItem.Add("description",$Item.Body.Text)
    $feedItems += $PostItem
    $feedItems | New-RssFeed -path "c:\temp\Inboxfeed.xml" -title ($MailboxName + " Inbox")
    But it is a Exchange Management Shell script an we would like to execute it like a .php file.
    Can anyone help me with this please?
    I would like to thank you in advance.
    Kind regards,
    Jordi Martin Lago

    That's not a Exchange Management Shell script its just a normal powershell script that uses the EWS Managed API
    http://msdn.microsoft.com/en-us/library/dd633710(v=exchg.80).aspx . So you can run it from any workstation or server where you have powershell and the Managed API library installed.
    You will need to update the line
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\1.2\Microsoft.Exchange.WebServices.dll"    
    To
    Add-Type -Path
    "C:\Program Files\Microsoft\Exchange\Web Services\2.0\Microsoft.Exchange.WebServices.dll"    
        To cater for the latest version of the Managed API.
      You can scheduled powershell scripts to run using the Task Scheduler eg
    http://community.spiceworks.com/how_to/show/17736-run-powershell-scripts-from-task-scheduler
    Cheers
    Glen

  • Library Filters does not work

    Yesterday, Library Filters worked in Lightroom 4, but today they do not.  Whenever I pull up the Metadata filters and select a parameter, the title of the filter switches to "Custom Filter" and nothing is selected.  I have no idea other than a programing error that could cause this.

    If it worked yesterdaya dn not todayt ehn the odds are heavily in favour of it being user error rather thana coding error.
    Also, when you click on a parameter (e.g. a keyword, camera mdel, etc) the title in the top left drop-dwn menu should change to Custom Filter, thta is unless you have actually craeted a filter based on thsi specific parameter.
    May be you could explain exactly what happened yesterday and isn't happeing today.

  • Look and feel master detail form

    Hello
    i have difficulties at the time of trying to decorate a master detail form
    i have 2 blocks one is the master and the other is the detail
    the question is
    can i change the text item of the master which are in the same tab canvas that the detail
    the detail block have 8 records
    i can paint the detail but it get a bit crazy

    <p>And I can also combine two different block decorations like on the this image
    this screenshot.</p>
    with the following code in th When-Timer-Expired trigger:
    Begin     
      If lower(Get_Application_Property( TIMER_NAME )) = 'laf_timer' Then
           --    form main initializations    --
           Set_Custom_Property( 'LAF_BLOCK.LAF_BEAN', 1, 'SET_SCHEME', 'purple' ) ;
           If PKG_Look_And_Feel.Open_Css(:PARAMETER.PM$CSS_FILENAME) Then
             -- read the global GUI properties --
             PKG_LOOK_AND_FEEL.Set_GUI_Properties( '.GUIProperties1', 'LAF_BLOCK.LAF_BEAN' ) ;
             -- paint the canevases --
             PKG_LOOK_AND_FEEL.Paint_Canevas(:PARAMETER.PM$CANVAS, 'LAF_BLOCK.LAF_BEAN' ) ;
             -- paint the blocks --
             PKG_LOOK_AND_FEEL.Paint_Block
               PC$Block      => 'DEPT'
              ,PC$BeanName   => 'LAF_BLOCK.LAF_BEAN'
              ,PC$VA_Name    => :PARAMETER.PM$VA
              ,PC$HeadClass  => :PARAMETER.PM$HEADER
              ,PC$BodyClass  => :PARAMETER.PM$BODY
              ,PC$TitleClass => :PARAMETER.PM$TITLE
              ,PC$Title      => 'Departments'
              ,PB$ScrollBar  => True
             PKG_LOOK_AND_FEEL.Paint_Block
               PC$Block      => 'EMP'
              ,PC$BeanName   => 'LAF_BLOCK.LAF_BEAN'
              ,PC$VA_Name    => :PARAMETER.PM$VA
              ,PC$HeadClass  => '.tableHeader2'
              ,PC$BodyClass  => '.tableBody2'
              ,PC$TitleClass => '.tableTitle2'
              ,PC$Title      => 'Employees'
              ,PB$ScrollBar  => True
           End if ;
      End if ;
      go_block('DEPT');
         execute_query ;
    End ;Francois

  • Student needs help....

    We have to develop a web-site using JSP and servlets, so I thought it would be good idea to throw most of the site template info into a bean. Thought it was easy until I got the following recurring error from Tomcat (4.0.1)... any help would be greatly appreciated as my Professor knows less than I do...
    type Exception report
    message Internal Server Error
    description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Cannot find any information on property 'Header' in a bean of type 'assignment3.HomesOnlineSiteTemplate'
         at org.apache.jasper.runtime.JspRuntimeLibrary.getReadMethod(JspRuntimeLibrary.java:701)
         at org.apache.jasper.compiler.GetPropertyGenerator.generate(GetPropertyGenerator.java:104)
         at org.apache.jasper.compiler.JspParseEventListener$GeneratorWrapper.generate(JspParseEventListener.java:831)
         at org.apache.jasper.compiler.JspParseEventListener.generateAll(JspParseEventListener.java:241)
         at org.apache.jasper.compiler.JspParseEventListener.endPageProcessing(JspParseEventListener.java:197)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:215)
         at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:546)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:177)
         at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:189)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:382)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:474)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2344)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:163)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1011)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1106)
         at java.lang.Thread.run(Thread.java:484)
    The bean is locted in tomcat\webapps\ROOT\Web-Inf\classes\assignment3:
    package assignment3;
    public class HomesOnlineSiteTemplate{
    // Locations of the images used in this bean
    private String TopBanner = "file://C:\\Program Files\\Adobe\\Photoshop\\Samples\\top-banner2.gif";
    // props
    private String Header="";
    private String HeaderBegin="<HTML><HEAD><META NAME=\"GENERATOR\" Content=\"Microsoft Visual Studio 6.0\">";
    private String HeaderTitleBegin="<TITLE>";
    private String Title="";
    private String HeaderTitleEnd="</TITLE>";
    private String Script="";
    private String HeaderEnd="</HEAD>";
    private String BodyBeginA="<BODY topmargin=0 leftmargin=0 marginheight=0 marginwidth=0><TABLE cellSpacing=0 cellPadding=0 width=\"100%\" border=0><TR><TD colspan=2><IMG src=\"";
    private String BodyBeginB="\"></TD></TR>";
    private String BodyBegin="";
    private String BodyEnd="</table></body></html>";
    private String BannerLeftLogon="<table><tr><td><font color=White><form name=\"login\" onSubmit=\"javascript:formValidate(this)\" action=\"doLogin.jsp\" method=\"post\">UserName:<br>  <INPUT type=\"text\" size=10 name=\"name\"><br>Password:<br>  <input type=\"password\" name=\"pw\" size=\"10\"><br><br><center><input type=\"submit\" value=\"Login\"></center></form></font></td></tr></table>";
    private void Init(){
    BodyBegin=BodyBeginA + TopBanner + BodyBeginB;
    public String getBannerLeftLogon(){
    // This method will return the left side banner with a logon form
    return BannerLeftLogon;
    public String getBodyBegin(){
    // This method will return the BodyBegin String
    return BodyBegin;
    public void setBodyBegin(String newBegin){
    // This method will allow client to create new Body beginning (<body>)
    BodyBegin=newBegin;
    public String getBodyEnd(){
    // This method returns the BodyEnd property
    return BodyEnd;
    public void setBodyEnd(String newEnd){
    // This method allows resetting of BodyEnd to new BodyEnd
    BodyEnd = newEnd;
    public String getHeader(){
    // This routine returns the Header as established. Client should use setScript() if there is to be any <script> elements
    // added to header PRIOR to calling this method
    if (Header!=""){
    return Header;
    else{
    Header = HeaderBegin + HeaderTitleBegin + Title + HeaderTitleEnd + Script + HeaderEnd;
    return Header;
    public void setHeader(String TempHeader){
    // This method allows the user to define a custom Header vAriable from the calling page
    Header = TempHeader;
    public void setScript(String TempScript){
    // This method will set Variable Script to the appropriate value defined by Parameter TempScript
    Script = TempScript;
    public void setTitle(String TempTitle){
    // This method will set Variable Title to the appropriate value defined by Parameter TempTitle
    Title = TempTitle;
    public void setTopBanner(String newBanner){
    TopBanner=newBanner;
    BodyBegin=BodyBeginA+TopBanner+BodyBeginB;
    and the JSP script is in tomcat\webapps\ROOT
    <!-- bean driver jsp
    <jsp:useBean id="template" class="assignment3.HomesOnlineSiteTemplate"/>
    <jsp:setProperty name="template" property="Title" value="Testing"/>
    </jsp:useBean>
    <jsp:getProperty name="template" property="Header"/>
    <jsp:getProperty name="template" property="BodyBegin"/>
    <h1>This is yet another test of a redesigned JavaBean</h1>
    <jsp:getProperty name="template" property="BodyEnd"/>

    Your problem is very simple really. In your bean if you have properties (header, name, age, etc) then you can have (setHeader(), setName(), setAge() etc). But in your case, it is Header (Please look into the case). Your jsp will look for the property 'header' ('h' in lower case) but not for 'Header'.
    So, you rename the property in your bean,
    private String header=""; This holds good for rest of the properties too.
    and in Jsp, <jsp:getProperty name="template" property="header"/>
    Hope this helps. Don't forget the dukes if it works for you.
    Sudha

Maybe you are looking for