Dialog Participant Step

Hi Guys,
            Reaching out to you for help and guidance. I have been working on workflows and as a part of that effort I have to provide an interface to the Participant to enter some inputs (JIRA ID and Comment). The idea is to take these inputs and integrate with the jira system. I am working with Dialog Participant Step for this effort. I have created a dialog which shows up when a particpant advances the workflow from his inbox. I am not able to tie up this dialog with a java process where I can capture the inputs via metaData object. The post parameters and error is as below.
The POST request params are as below:
cmd=advance
_charset_=utf-8
:status=browser
route-/etc/workflow/instances/2012-01-18/model_237097001523152/workItems/node2_etc_workflo w_instances_2012-01-18_model_237097001523152=261752321
item=/etc/workflow/instances/2012-01-18/model_237097001523152/workItems/node2_etc_workflow _instances_2012-01-18_model_237097001523152
./metaData/jiraId=1234
./metaData/jiraComment=jira%20Comment
./metaData/PROCESS=com.att.ecom.cq.bundle.workflow.CustomWorkflow
./metaData/PROCESS_AUTO_ADVANCE=true
./metaData/PROCESS_AUTO_ADVANCE%40Delete=true
comment-/etc/workflow/instances/2012-01-18/model_237097001523152/workItems/node2_etc_workf low_instances_2012-01-18_model_237097001523152=
Error received: (Per Firebug)
Error while processing /content/geometrixx/en/products/circle
Status
500
Message
javax.jcr.nodetype.ConstraintViolationException: no matching property definition found for {}jiraComment
Location
/content/geometrixx/en/products/circle
Parent Location
/content/geometrixx/en/products
Path
/content/geometrixx/en/products/circle
Referer
http://dhruva.admin.cingular.net:7001/shopcms/libs/cq/workflow/content/inbox.html
ChangeLog
Go Back
Modified Resource
Parent of Modified Resource
Please let me know if my approch is right in doing it this way, if not need some advice on the alternate approch. I could not get any documentation on DialogParticipant Step. Any references to it would help.
Thanks & Regards
Rama.

Murali,
  I am not sure to what extent you have gone through with your dialog participant step. But for implementing a dialog participant step few steps below.
1. You would be creating a dialog with some text fields
     Note: Make sure the names of the each input element and also any hidden elements starts with ./jcr:content/<nameofcomponent>. Else you would encounter the error that I mentioned above. ConstraintViolation error.
2. Create a model with this dialog as first step via dialog participant step.
3. Once you run this workflow on a payload you would see an action item in the workflow inbox.
4. right click and complete the step. Your dialog pops up embeded with in out of the box dialog. Input some vals in the input forms and complete the workflow. You should see a POST call in firebug which tries to POST the vals that you have entered in the dialog on to the pay load path in the jcr repository. The property name is the name you defined for the text field (or any other component) and value that you have entered.
At the end of the workflow you should see that the vals that you have entered in your dialog are registered on the payload's jcr:content path. Once this happens you can add a next step in the workflow which would be a java process step which can read these vals from the <payload>/jcr:content and process further.
Let me know if that gives you an idea of what needs to be done. For sure it would be a trial and error way to deal with and not lots of ppl are out there who can help with the workflow aspect of CQ. If you are given the task of working with workflows in your work, i would just welcoome you saying welcome to the land of unkown .
Rama.

Similar Messages

  • Dynamic Dialog in a Dialog Participant Step for Workflow

    Hello All,
    I am trying to create a Dynamic Dialog in the dialog participant step for a workflow.
    so when a user has the Dialog participant step opened up, if they select from a drop down, it will make another textfield hide/show.
    In a component dialog I can do something like
    var comment = this.find('name', './jrc:content/customComment')[0] to find the field to be shown/hidden.
    however when I run this inside a Dialog Participant step, the result is undefined.
    Any Sugguestion on how to approach this ?
    I am using a listener on the dropdown widget/attribute

    Hello,
    The find() method will not help you because it searches the property based on configured value which you can not pass in your scenario. If you dont have any constraint with your hide/show field then best way it to configured it with a property "id" (String) and give it some unique value which has not been used by any component in this dialog and then use below method to find out the component.
    this.getComponent(id)
    when you pass the "id" value the method will return that component and then you can show/hide it.
    I have used this approach many times which is easy and fast to find out the component in any container.
    Let me know if you face any issue.
    Thanks,
    Pawan

  • Dialog Participant step problem when completed with CQ Sidekick

    Hi,
    I got the problem that the dialog that is used in a Dialog participant step isn't displayed correctly when i complete the Step via the CQ Sidekick. If i complete the step from the User inbox the dialog is rendered correctly. To make it clear : if i use the CQ Sidekick to complete the Step then i can only enter the next step and a comment and not the additional fields that should be added because of the dialog.
    My first guess is that my dialog.xml isn't correct but i can't find the Problem. What is your experience with the Dialog Praticipant step?
    This is the dialog i use:
    <?xml version="1.0" encoding="UTF-8"?>
    <jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
        jcr:primaryType="cq:Panel">
        <items jcr:primaryType="cq:WidgetCollection">
            <title
                jcr:primaryType="cq:Widget"
                border="{Boolean}true"
                collapsed="{Boolean}false"
                collapsible="{Boolean}false"
                fieldLabel="Bullet Points"
                name="./listItems"
                typeHint="String"
                xtype="multifield">
                <fieldConfig
                    jcr:primaryType="nt:unstructured"
                    maxLength="{Long}50"
                    minLength="{Long}1"
                    separator=""
                    xtype="textfield"/>
            </title>
        </items>
    </jcr:root>
    Thank you

    You can do this via the Workflow/WorkItem Metadata. https://dev.day.com/docs/en/cq/5-5/workflows/wf-ref/workflow_steps.html explains how to access the metadata. if the reviewer needs to be set dynamically (the dalog does not allows that), follow Ram Atmakur's post at http://forums.adobe.com/message/4317233 .

  • Dialog not visible from sidekick when using dialog participant step

    I am using the Out of the box dialog participant step in my workflow. I have created a dialog and using in the dialog participant step. When i start the workflow, the dialog is only available/visible when I complete the task from inbox and not visible when completing the task from sidekick.
    Any suggestions/pointers are Appreciated.
    Environment : CQ 5.5, Windows 7

    Unfortunately, It is known issue.  Please file daycare & provide the business importance & a schedule.

  • Dynamic Dialog Praticipant step

    Hello experts,
               The OOTB cq comes with a "dialog participant step" and "dynamic participant step". I am looking for "dynamic dialog participant step". Any ideas of how to implement it ?
    Rama.

    I tried to customize this new component by combining the functionality of Dynamic Participant and Dialog Participant. I was able to customize the dialog (which shows up when I drag and drop the customized dynamic Dialog Participant Step) to refer to a dialog path ( as is OOTB Participant Step) and choose which  script to resolve the dynamic participant step. But at the run time had this issue where it was not assigning to the right group though the script returns correct value. I dont see any errors. But the major issue was I could not see the custom dialog. So took a new approch to resolve this.
    1. Create a new model
    2. Drag and drop the dialog Participant step and DONOT choose the group. Choose title and description, and also choose the custom dialog.
    3. Create a new java process step which would assign the a value to the property called PARTIPANT to the next step (combination of workflow transition objects and routes objects) in the workflow ( which in this case the dialog Participant).
    4. Code the logic in such a way that it returns the correct user group.
    5. Drag and drop a java process step on to the model prioor to the dialog Participant Step and choose the newly created java process.
    6. execute the workflow.
    7. Once the java process executes it would assign to the right group for the dialog Participant (  which we did not choose while we modelled it - Step 2)
    Hope this helps.
    Rama.

  • Form Participant Step.

    Hi All, Back again with my qns to experts.
    My qn is related to Form Participant workflow. I wanted to work with Form Participant as I think it gives me a flexiblity to work with java script as against with dialog participant step.
    What I did:
    1. I create a page with some text fields.
    2. Created a workflow model with choosing this page as a part of form participant Step.
    3. Kicked off a workflow
    4. Came to my workflow inbox.
    5. Right click on my action item in the inbox and choose complete.
    6. Here I was expecting to have some sort of an interaction with my form/page that I have associated my participant workflow step with. But I dont see my form but just an out of the box dialog with next step and comment.
    So,
    1. Is it the right approch?
    2. Choosing a 'page' as part of my step is right one or should I be creating my form differently?
    3. Or my interaction with the page would be some where else and not from the inbox.
    Any suggestions here would help.
    Thanks and Regards
    Rama.

    Hi Evangelos
    The QPAC is now ready for beta testing.
    I'll send you the QPAC by separate email.
    There is no documentation yet, but hopefully the user interface makes it fairly easy to work out.
    One point: the QPAC picks a file off the file system, NOT out of a process variable. The file must be accessible from the Workflow server machine, not the user's machine.
    Please let us know if you encounter any problems, or if you need any enhancements.
    Also, please note that in order for this QPAC to work, it has to introduce a "dummy" task into the task history within Form Manager. We're hoping to come up with a more elegant way of solving this at some point, but this will require a lot more code, and I wanted to give you something that works. Hopefully this is just a minor inconvenience.
    Regards,
    Howard

  • How to capture comments and read in next participent steps in Workflow?

    I want to capture comments in one of the participent steps of my workflow and read them in the next step . Please share some suggestions on it .
    I have added a from step as the participent step but it is saving data with random ids . I am not able to figure out how to read the data for corresponding process step in the workflow ?
    Please help .

    had to write Java process for the same
    Just in case somebody wants a java version of the answer Sham mentioned above
    please feel free
    HistoryItem previousHistoryItem;
    String stepType;
    this.workItem = item;
    this.workflowSession = session;
    this.history = workflowSession.getHistory(workItem.getWorkflow());
    Iterator<HistoryItem> historyIterator = history.iterator();
    while(historyIterator.hasNext()){
        previousHistoryItem = historyIterator.next();
        stepType = previousHistoryItem.getWorkItem().getNode().getType();
        if(stepType != null && stepType.equals(WorkflowNode.TYPE_PARTICIPANT) && previousHistoryItem.getWorkItem().getMetaDataMap().get("someproperty",String.class) != null){
            someproperty=previousHistoryItem.getWorkItem().getMetaDataMap().get("someproperty",String .class);
            log("\n someproperty : " + "\n" + someproperty);
        }else{
            log("\nNo Step type or someproperty Found...");

  • Show popup dialog at step type dropping to the sequence

    I have a LabVIEW step type with some module parameters and step's variables what needs to be setup to configure this step. Can I make it to display the popup dialog to enter the required values at the moment when I drop the step type to a new sequence?
    Examples: 1. I have TestID in steps variables what needs to be setup. Popup dialog is more convenient than going to Variables and searching for the TestID in tree. 
    2. I have one step type which does a different actions depending of the enum parameter in the LabVIEW module. This parameter is set to default in steptype. I'd like the step name in my sequence to be the value of the enum. Something like RunState.Step.TS.SData.ViCall.Parms["Configuration Update"].ArgVal in the step type Default Step Name Expression helps and displays the enum text as step name when I drop the step type in the sequence. But changing the Configuration Update parameter in this step to another value does not followed by changing the step's name, looks like the step type's Default Step Name Expression is evaluated only once when step is created from the step type.
    Sergey Kolbunov
    CLA, CTD
    Solved!
    Go to Solution.

    Thank you Doug, your advise works just perfect for the first case. OnNewStep, who may think about it? Is it documented somewhere?
    For the second case it is not so straightforward. I don't care so much about automatic update of the step name when it is already in a sequence, setting this name and the appropriate module's parameter at insert will be enough. Tool to update names is not a problem, I'm using such kind of tool to automatically update sequences when my step types got changed. I need the subject feature because I'm trying to create a custom sequence editor for end users with minimal knowledge of TestStand.
    Talking about second case, it's look like setting of module's parameter via expression does not work. Now I'm trying to set it using TestStand API in the OnNewStep substep.
    Now I have another problem. How to access the TestStand Adapter API automation server in LabVIEW? I'm trying to get Sequence Context ->Step ->Module ->Parameters but to get Parameters property of LabVIEWModule class the TestStand Adapter API server required while I see properties list for the Module class of the TestStand API server. It seems to be very easy to switch server in TestStand but how to do it in LabVIEW?
    Sergey Kolbunov
    CLA, CTD

  • Email Notification - Dynamic Participant Step - workflows

    Hi,
    I did not found Email notification for "Dynamic partcipant step" workflow step.
    Can any one help me where i need do changes for sending email using default or custom template to a dynamic user.
    Thanks
    Ravindra

    I can suggest you two things
    1. copy "/libs/cq/workflow/components/model/participant/cq:editConfig/cq:dropTargets" inside "/libs/cq/workflow/components/model/dynamic_participant/cq:editConfig"  and make modification to "cq:dropTargets/participant" and "cq:dropTargets/participant/parameters" by taking reference to "libs/cq/workflow/components/model/dynamic_participant/tab_participant_chooser/items/choo ser" This will help to setup the participant information to workitem metadata collection object (set it locally). Now check if it works. if not and if possible to make changes to property name from "DYNAMIC_PARTICIPANT" to just "PARTICIPANT" and again check (may be it takes only "PARTICIPANT" property from metadata).
    Also check error.log for any error. if found then post us.
    2. Verify your model structure at "/etc/workflow/models" and instances "/etc/workflow/instances" to cross check if everything looks good as expected.
    I think for manual steps the standard workflow classes takes care of notifications based on supplied metadata information.

  • SAP Dialog Instance Installation.

    Hi
    Installation of ABAP System ECC6.0
    I am trying to install another application server(Dialog Instance) on
    different host. My both System Central(main server) and Dialog system in
    same domain. I am installing SAP Server as a Local Installation.
    I am able to installed Dialog Instance on same Host of Central System. But
    when I was trying to installation it on different Host, I got error on
    u201CStart Dialog Instanceu201D step that is last step it cant able to start Dialog
    Instance.
    Can you please tell me the Prerequisite for this type of setup as well as
    any other Setting related to u201Chostsu201D and u201Cservicesu201Dfile ? and also central system
    side settings.
    Following Error is occurred :
    u201CCopy Errors detected.................: 0
    Sync Errors detected.................: 0
    Warnings detected....................: 0
    INFO 2008-11-21 13:14:39
    Execute step createOsCol of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    WARNING[E] 2008-11-21 13:14:40
    FSL-06002  Error 1060 (The specified service does not exist as an installed
    service.
    ) in execution of a 'OpenService' function, line (266), with parameter
    (SAPOsCol).
    INFO 2008-11-21 13:14:41
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\ntscmgr.exe.log.
    INFO 2008-11-21 13:14:41
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe remove SAPOsCol
    is written to the logfile ntscmgr.exe.log.
    INFO 2008-11-21 13:14:41
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe
    remove SAPOsCol" finished with return code 0. Output:
    failure: OpenService (0x424)
    INFO 2008-11-21 13:14:41
    The 'SAPOsCol' service on the 'Local' machine was created successfully.
    INFO 2008-11-21 13:14:45
    The service 'SAPOsCol' started successfully on host 'Local'.
    INFO 2008-11-21 13:14:46
    Execute step createService of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:14:46
    Creating SAP start service of instance PT6/D02...
    INFO 2008-11-21 13:14:47
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\sapstartsrv.exe.log.
    INFO 2008-11-21 13:14:47
    Output of D:\usr\sap\PT6\D02\exe\sapstartsrv.exe -r -q -p
    i3643vm\sapmnt\PT6\SYS\profile\START_D02_I3976vm2 -s PT6 -n 02 -U
    I3976vm2\SAPServicePT6 -P XXXXXX -e I3976vm2\pt6adm is written to the
    logfile sapstartsrv.exe.log.
    INFO 2008-11-21 13:14:53
    Execution of the command "D:\usr\sap\PT6\D02\exe\sapstartsrv.exe -r -q -p
    i3643vm\sapmnt\PT6\SYS\profile\START_D02_I3976vm2 -s PT6 -n 02 -U
    I3976vm2\SAPServicePT6 -P XXXXXX -e I3976vm2\pt6adm" finished with return
    code 0. Output:
    Service succesfully installed.
    INFO 2008-11-21 13:14:53
    Execute step setServiceSecurity of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO[E] 2008-11-21 13:14:58
    FSL-01027  Account user="I3976vm2\SAP_PT6_LocalAdmin" does not exist.
    INFO 2008-11-21 13:14:58
    Successfully set '(S-1-5-21-134454618-3270849815-193169279-1011, NONE, + |
    SERVICE_START | SERVICE_STOP)(S-1-5-18, NONE, +o | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE
    | SERVICE_QUERY_CONFIG | SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP
    | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-32-544, NONE, + | DELETE | READ_CONTROL |
    SERVICE_ALL_ACCESS | SERVICE_CHANGE_CONFIG | SERVICE_ENUMERATE_DEPENDENTS |
    SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP |
    SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ | STANDARD_RIGHTS_WRITE
    | WRITE_DAC | WRITE_OWNER)(S-1-5-4, NONE, + | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-6, NONE, + | READ_CONTROL |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-11, NONE, + | SERVICE_USER_DEFINED_CONTROL)(S-
    1-5-32-547, NONE, + | READ_CONTROL | SERVICE_ENUMERATE_DEPENDENTS |
    SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE | SERVICE_QUERY_CONFIG |
    SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP |
    SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE)(S-1-5-21-134454618-3270849815-193169279-1009, NONE, +
    | DELETE | READ_CONTROL | SERVICE_ALL_ACCESS | SERVICE_CHANGE_CONFIG |
    SERVICE_ENUMERATE_DEPENDENTS | SERVICE_INTERROGATE | SERVICE_PAUSE_CONTINUE
    | SERVICE_QUERY_CONFIG | SERVICE_QUERY_STATUS | SERVICE_START | SERVICE_STOP
    | SERVICE_USER_DEFINED_CONTROL | STANDARD_RIGHTS_READ |
    STANDARD_RIGHTS_WRITE | WRITE_DAC | WRITE_OWNER)' security to service
    I3976vm2\SAPPT6_02' on computer 'I3976vm2'.
    INFO 2008-11-21 13:14:58
    Execute step createCCMSService of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    WARNING[E] 2008-11-21 13:14:58
    FSL-06002  Error 1060 (The specified service does not exist as an installed
    service.
    ) in execution of a 'OpenService' function, line (266), with parameter
    (sapccmsr.02).
    INFO 2008-11-21 13:14:59
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\ntscmgr.exe.log.
    INFO 2008-11-21 13:14:59
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe remove
    sapccmsr.02 is written to the logfile ntscmgr.exe.log.
    INFO 2008-11-21 13:14:59
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\ntscmgr.exe
    remove sapccmsr.02" finished with return code 0. Output:
    failure: OpenService (0x424)
    INFO 2008-11-21 13:14:59
    Execute step setCCMSServiceSecurity of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:00
    Execute step registerEventsDLL of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:09
    Execute step setICMBndPermissions of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|NW_Instance|i
    nd|ind|ind|ind|1|0.
    INFO 2008-11-21 13:15:09
    Execute step copyRFCExecSec of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:10
    Copied file '
    i3643vm/sapmnt/PT6/SYS/exe/uc/NTI386/rfcexec.sec' to
    'D:/usr/sap/PT6/D02/work'.
    INFO 2008-11-21 13:15:11
    Execute step callSetDB4PWD of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step unpackJ2EEINSTALL of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step runBatchconfig of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:13
    Execute step removeTempDirectory of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:14
    Execute step start of component
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0.
    INFO 2008-11-21 13:15:14
    Starting instance PT6/DVEBMGS00...
    INFO 2008-11-21 13:15:15
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:15
    Starting instance PT6/D02...
    INFO 2008-11-21 13:15:22
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:22
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:35
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\stop_PT6_D02.log.
    INFO 2008-11-21 13:15:35
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\stopsap.exe name=PT6 nr=02
    SAPDIAHOST=I3976vm2 is written to the logfile stop_PT6_D02.log.
    INFO 2008-11-21 13:15:43
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\stopsap.exe
    name=PT6 nr=02 SAPDIAHOST=I3976vm2" finished with return code 0. Output:
    STOPSAP executed succesfully
    INFO 2008-11-21 13:15:46
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:46
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:15:48
    Creating file C:\Program
    Files\sapinst_instdir\ERP\SYSTEM\ORA\HA\ABAP\DI\start_PT6_D02.log.
    INFO 2008-11-21 13:15:48
    Output of
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386\startsap.exe name=PT6 nr=02
    SAPDIAHOST=I3976vm2 is written to the logfile start_PT6_D02.log.
    INFO 2008-11-21 13:16:21
    Execution of the command "
    i3643vm\sapmnt\PT6\SYS\exe\uc\NTI386
    \startsap.exe name=PT6 nr=02 SAPDIAHOST=I3976vm2" finished with return code
    0. Output:
    STARTSAP continues...
    INFO 2008-11-21 13:16:21
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:21
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:22
    State of instance PT6/D02 changed from ABAP: UNKNOWN to ABAP: UNKNOWN.
    INFO 2008-11-21 13:16:50
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:16:50
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Connect to message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:23
    Disconnect from message server (i3643vm/3900) succeeded.
    INFO 2008-11-21 13:17:24
    State of instance PT6/D02 changed from ABAP: STARTING to ABAP: STARTING.
    ERROR 2008-11-21 13:17:24
    CJS-30105  Instance PT6/D02 reached state UNKNOWN after having state
    STARTING. Giving up.
    ERROR 2008-11-21 13:17:24
    FCO-00011  The step start with step key
    |NW_DI|ind|ind|ind|ind|0|0|NW_DI_Instance|ind|ind|ind|ind|10|0|start was
    executed with status ERROR .
    Thanks in advance.
    Regards
    Manoj

    Hi, I'm Josephine and I almost have the same scenario as this problem reported earlier but it's just that we are using SAP Netweaver 04 SR1.
    However, I'm installing additional SAP Application server to our existing one.
    Our existing main server is in MS cluster. SAPPRD1 (DB Server in node A) and SAPPRD2 (SAP App Server in node B).  System ID is PRD and the CI Instance number is 00. The hostname where the USR folder is SAPPRD (hostname in the cluster environment but this is the SAPPRD2 server in node B).
    Now I'm installing additional SAP App server into a new host (SAPPRD3 & SAPPRD4) they are all in the same domain.
    But I would like to install the 2nd and 3rd SAP App server in a local host.
    While installing there was an error "Output: Service not started" the process "Create or reregister services" during the installation stopped.
    I used the installer under the folder InstMaster\IM01_NT_I386\SAPINST\NT\I386\sapinst.exe and run the Dialog Instance under the SAP Netweaver\ABAP System\MS SQL Server\Unicode\.
    This is the part of the sapinst log where the error starts:
    PHASE 2009-01-28 08:39:29
    Preparing DBMS-specific profile parameters
    INFO 2009-01-28 08:39:30
    Adapt operation t_SAPComponent_Profiles_SHARED processed successfully.
    PHASE 2009-01-28 08:39:31
    Handle services
    INFO 2009-01-28 08:39:32
    Creating file C:\Program Files\sapinst_instdir\NW04SR1\WEBAS_ABAP_MSS_UC\DI\sapstartsrv.exe.log.
    INFO 2009-01-28 08:39:32
    Output of C:\usr\sap\PRD\D02\exe/sapstartsrv.exe '-r' '-q' '-p' '
    sapprd\sapmnt\PRD\SYS\profile\START_D02_sapprd4' '-s' 'PRD' '-n' '02' '-U' 'sapprd4\SAPServicePRD' '-P' 'XXXXXX' '-e' 'sapprd4\prdadm' is written to the logfile sapstartsrv.exe.log.
    WARNING 2009-01-28 08:39:35
    Execution of the command "C:\usr\sap\PRD\D02\exe/sapstartsrv.exe '-r' '-q' '-p' '
    sapprd\sapmnt\PRD\SYS\profile\START_D02_sapprd4' '-s' 'PRD' '-n' '02' '-U' 'sapprd4\SAPServicePRD' '-P' 'XXXXXX' '-e' 'sapprd4\prdadm'" finished with return code -1. Output: Service not started.
    ERROR 2009-01-28 08:39:35
    MOS-01011  'C:\usr\sap\PRD\D02\exe/sapstartsrv.exe' returned with '-1'.
    Please help me on this I can't successfully install another dialog instance to add to our existing one now.
    Thank you and hoping for your reply.
    Yours truly,
    Josephine Dejolde

  • How to provide transition comment while completing a process step

    Out of the box, we can indicate transition comment for participant steps when completing a inbox item, which is then displayed as a subheading of a inbox item for next step - which is really helpful.
    but, how can i provide a transition comment, when completing a process step.
    I see the complete method, but dont see where i can provide transition comment.
    complete(WorkItem item, Route route)
    Environment CQ 5.5

    Its workitem metadata which holds the comments info. Can you try this if it works
    workitem.getWorkflowData().getMetaData(); which will return the dictionary object and set "comment" in this object.

  • Install Java Add-In for existing ABAP == 'First MSCS Node' step fails

    I am in the process of installing the Java Add-In for an existing ABAP System.
    I am doing the High-Availability Installation Services.
    There are seven (7) steps:
    1. Central Services Instance (CSC) Java Add-In
    2. First MSCS Node
    3. Database Instance Java Add-In
    4. Additional MSCS Node
    5. Enqueue Replication Server
    6. Central Instance Java Add-In
    7. Dialog Instance
    Step #1 was completed successfully.
    Step #2 (First MSCS Node) keeps failing with the following warnings/error:
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    WARNING 2011-11-02 07:38:04.928
    Execution of the command "cluster.exe RESOURCE "SAP BWP 00 Service"" finished with return code 5007. Output:
    Listing status for resource 'SAP BWP 00 Service':
    Resource             Group                Node            Status
    System error 5007 has occurred (0x0000138f).
    The cluster resource could not be found.
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    WARNING 2011-11-02 07:40:29.085
    Execution of the command "M:\usr\sap\BWP\ASCS00\exe\sapstartsrv.exe -u -q -s BWP -n 00" finished with return code 128. Output:
    <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>
    ERROR 2011-11-02 07:40:29.210
    FCO-00011  The step dCreateSecondNewSCSServiceWithVirtualHostName with step key |MSCS_A|windows|ind|ind|ind|0|0|SAPServices|windows|ind|ind|ind|9|0|dCreateSecondNewSCSServiceWithVirtualHostName was executed with status ERROR .

    This seems to be an issue with the clustering solution. Please, refer to the following article link:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;281796
    See if that helps
    Edited by: David Fitzgibbon on Nov 2, 2011 2:18 PM

  • I like the separate save dialogs, however ...

    ... here's what's needed;
    I always work in EV & create my .wav file with CD tracks marked out & save it with the "save extra non audio information" check box checked so they are there next time I need to open it.
    At the end of the editing just before I save the file the last time, I create the .mp3 files with "save copy as" and the "save extra non audio information" check box un-checked. The reason why I turn off the "save extra non audio information" is because some mp3 players interpret the track markers / cues whatever as sound, and a loud pop or glitch sound occurs when passing over the marker.
    However, if I don't go back into one of the dialogs and reselect the check box just before the last save, all the track markers are lost
    or if I create the .mp3 files last, then the next time I go to save a file it wants to save it as .mp3 rather than .wav which becomes a pain to reset it for every save, save as, dialog
    I don't know which is worse really, losing all the track markers or distributing files that might pop in some mp3 players or losing a 44,100 16 bit stereo CD ready file to a 48Kbps 22,050 16-bit mono file that sounds like crap when played
    separating the dialogs one step further than they already are
    ie "save as" "save copy as" & "save"
    if "save as" could have the "save extra non audio information" check box checked
    and "save copy as" could have the "save extra non audio information" check box un-checked without affecting the other
    the next time I save using the original format it should either ask to if I want to recheck the box or leave it checked by default and only the "save copy as" remains unchecked until I recheck it
    I hope it's clear enough
    I'm still using V2.0 & waiting on the V3.0 Upgrade
    I apologize if this is already changed in V3.0
    THX

    I just looked in AA2 Preferences and I didn't see any "Default Save As Format" under any of the tabs
    one more thing to add to the save dialogs to be separated in function is the "Save Selection" I rarely ever need the "Save Extra Non Audio Information" in that Save dialog
    but if I turn it off in there and forget to turn it back on before saving the file again all of the track markers disappear from the file which kinda sucks when I've spent close to ½ and hour aligning them to exact locations throughout the file.
    here's one way to get pops in every after every track
    take a single file with say 10 or so tracks in it
    save all the tracks out with "Save Selection" and the "Save Extra Non Audio Information" box checked
    play all those files in succession in an mp3 player that pops on non audio, they pop every time
    I had a Sony phone that using the hands free set played .mp3 files and I loaded it with tunes
    which I promptly had to replace with files that were created with no "extra non audio info" because I got tired of the popping

  • Upgrading to Adobe Lightroom 4 in 7 simple steps.

    The following steps can be used to upgrade Lightroom 1, Lightroom 2 or Lightroom 3, as well as Lightroom 4 Beta catalogs.
    Step 1. Download and Install Lightroom 4
    Step 2. On your Mac’s finder, find the location of your Lightroom 3 catalog. It should look something like name.lrcat
    Step 3. Right click on that file and select “open with Adobe Photoshop Lightroom 4″
    Step 4. You should see the “Lightroom Catalog Upgrade” dialog. Be very careful with this step. Catalog names can NOT be changed later. I strongly suggest you click on “change” and determine the best location and name for your upgraded catalog.
    —Click to continue
    As you can see I created a new FOLDER (EAP_LR4_Laptop) and a new CATALOG name EAP_LR4_Laptop.
    You might be wondering why I picked this naming structure. Simple:
    EAP stands for Eduardo Angel Photography
    LR4 is obviously Lightroom 4
    And Laptop is the location of the Catalog, the place where all my Lightroom settings (keywords, presets, previews, plug-ins, etc) will be stored. This is especially important if you often shoot on location and need to sync temporary catalogs to your permanent catalog. See our previous post with step-by-step instructions on how to do this.
    Step 5. Ready? Jump! Hit “Create” and then “Upgrade”
    Keep in mind that Lightroom will create a NEW catalog inside the new folder we just created. The old previews will me moved to the new location but the old Lightroom 3 Catalog will still exist in your system. I recommend keeping this file for a couple of weeks until you have confirmed that all the images and settings were upgraded correctly.
    Time for a quick coffee break. Depending on your system specs, how many images you have, the file sizes, presets etc, the upgrade can take several minutes. I have over 50,000 RAW files and 600 presets, and the upgrade took less than 4 minutes.
    Step 6. We are almost there. You now see the “Enable reverse geocoding” dialog, which is basically asking for permision to access Google Maps. Even though I am NOT happy with Google’s recent privacy policy changes, I recommend enabling this feature so you can use the brand new Map Module.
    If later on you regret feeding Big Brother more information, you can disable this feature under the “Metadata” tab of the “Catalog Settings” Dialog.
    Step 7. Done! We have successfully upgraded our Lightroom 3 catalog into a brand new Lightroom 4 catalog.
    One last thing to consider: Any new changes done in Lightroom 4 will not be available in previous versions of Lightroom. What this means is, if you are in the middle of a project, finish it in Lightroom 3 and then do the upgrade. Now is time to play.

    It might be fair to warn all users for the time being that most likely they will be bitten by 2 bugs:
    If you used tone curve adjustments in LR3-develop:
    They will be lost, as LR4 currently does not read this record from LR3-catalog, but replace it with a default, same as if in a new import.
    If you have a folder structure with more than ca. 3000 images within one folder, you will not get them displayed.
    So good advice: start LR4 with new imports only, and wait for LR3-catalog conversion until these bugs will have been fixed.
    Unless none of the two prerequisites for problems apply to you.
    Cornelia

  • Lion Recovery from a Remote Time Machine Disk

    I maintain the time machine backup for my MBP on a large USB drive hanging off of my Mac Mini.  Yesterday I decided to upgrade the internal hard drive on my system to a faster, higher-capacity disk.   I assumed that this would be very straightfoward given I had a complete time machine backup.  Time machine has saved my bacon many times.  It was slightly trickier than I expected so I am publishing this recipe in the hope that it helps someone else trying to accomplish the same thing.
    The instructions below are in the context of a hard drive replacement.   Skip to step 5 if you are just looking for the recovery instructions.
    One last caveat, I have not tried this procedure over WIFI.  I did my successful restore over a GigE hard line.   It may or may not work over Wifi and I would bet WIFI greatly increases the odds that something unexpected might go wrong and it will probably take many times longer as well.
    YMMV.  RTFM.   Good Luck.
    Before you start you need the following things:
         A USB Drive that you don't mind erasing.
         A tiny phillips screwdriver
         A T4 torx driver
    Step 0: Run Lion Recovery Disk Assistant
         * download this from apple support http://support.apple.com/kb/dl1433
         * this creates a USB stick that boots up the recover tools. 
    Step 1:  Make sure time machine backup is up to date
    Step 2: [paranoid] turn off time machine
    Step 3: Cleanly shut down laptop
    Step 4: Follow instructions in user manual to replace hard drive
         * you can download your laptop user manual here - http://support.apple.com/manuals/#macbookpro
         * this required a very tiny phillips head screwdriver and also a T4 torx screwdriver/bit
    Step 4a: Be prudent: carefully save your old hard drive in case something goes wrong.
    Step 5: Make sure laptop is on wall power
    Step 6: Boot to recovery USB stick
         * insert the stick, hold down option while booting
    Step 7: Select "Restore From Time Machine Backup"
         * When you get to the "Select a Backup Source" dialog you don't see your time machine share or any way to connect to a remote drive.
    Step 8: Mount your remote backup
        Open Terminal  ( Utilities | Terminal... )
        Run these commands:
            mkdir /Volumes/tm
            mount_afp afp://[username]:[password]@[name of host system].local/[name of remote disk] /Volumes/tm
            you need to supply all of the arguments in brackets above
                 eg. mount_afp afp://fred:[email protected]/TimeMachine /Volumes/tm
            You can test if this succeeded by running
                   ls /Volumes/tm
            If you see the files you expect, then you successfully mounted your remote disk.
            Now attach the sparsebundle that contains your remote system backup.
                hdiutil attach /Volumes/tm/[MyMachine].sparsebundle 
            If this works when run "ls /Volumes" you should see a directory called "Time Machine Backups" in the list.  Once that is done quit
            the terminal application.  When you do this you should see "Time Machine Backups" listed in the "Select  a Backup Source" dialog.
    Step 9: Select "Time Machine Backups" from menu
    Step 10: Select the backup in time ( probably the most recent one from 10 minutes ago! )
    Step 11: Select destination disk
    Step 12: If your destination disk does not appear, format it with disk utility
         Utilities | Disk Utility...
         Select your new unformatted drive
         Give your new drive a super duper clever name and then click Erase
         Quit Disk Utility
          Select your newly formatted and cleverly named root drive
    Step 13: Go have some fun away from your computer., my system took about 4 hours to restore ~300GB.
    Some number of hours later your system will reboot itself to the login screen and you will be good to go.  Obviously don't do anything silly in the intervening time like
           * Unplugging your laptop
           * Turning off the system that hosts your time machine backup
           * Resetting your network router

    Quick answers.
    1. no
    2. yes
    3. no
    Your only option is to install Lion onto the mini and then set up the other accounts.

Maybe you are looking for

  • Ipod Classic doesn't play video with Component cables

    I just bought a new Ipod Classic and I have it connected to my Denon receiver using the Denon dock.  I am able to play music and movies from the ipod.  But when I try to play movies thru my small LG tv (Apple red, rellow white component cable) I only

  • ETax Module - Problems displaying in req, PO, invoice, Payment, reports...

    Hi, We are in the midst of a 12.1.1 implementation and we have encountered a significant problem with Oracle eTax module. Are there others that are encountered problems we are faced with? 1. Currently eTax information is not displayed on any existing

  • Drag and drop won't work in application

    Hello, I want to drag and drop elements of a listbox to another position inside ob the listbox. That works very fine as long as I use LabView during the programming of the VI. If I build the VI to a application drag and drop is not working anymore. W

  • 6110 navigation question?

    I have got my navigation working with nokia maps on the free version with no voice activation.installed with the phone is route 66 nav software,should this also work the same where navigation works but with no sound??

  • I did not get 3G, only WiFi.  Is there anything I can do now to get 3G or similar capability.

    Is there any way to add 3G, or something similar, to get that additional capability now?  I heard that one company...Verizon?...had something but I am not clear about it.  I find I do need 3G....now that I discovered that the wifi does not work on my