61.How can unauthorized users be prevented from triggering a process ?Unauthorized users be prevented from triggering a process by giving 'write' access for the process engine to only selected users. Only users with 'write' access can do activities like deploying applications, starting/stopping process engines etc. 62.What are the mandatory configuration parameters for FTP Connection & FTP with firewall ?The mandatory configuration parameters for FTP Connection
If Firewall is enabled in addition the proxy host and port are required. 63.how to design a process such that depending on number of records updated in a database, 3 different sub-processes may be called ?Define 3 transitions from JDBC update with condition on the no of updates and call appropriate child processes. 64.How to use legacy .dat file format with latest designer ?Convert .dat file to multi file project using Administration tab while starting up Designer(Other one being Project tab) and then open the multifile project in the normal way 65.What are the encodings supported by designer ?Encodings supported by designer are
66.What are the 4 main panels of the Designer window ?The 4 main panels of the Designer window are
67.Explain the process configuration parameters - Max Jobs, Flow Limit & Activation Limit ?Max Jobs : 68.What are the options for configuring storage for process engine's checkpoint repository ?The options for configuring storage for process engine's checkpoint repository are:
69.Process engines in a fault tolerant group can be configured as peers or master secondary.How do these differ ?The options for configuring storage for process engine's checkpoint repository are:
70.What are the uses of grouping activities ?Uses of grouping activities are:
- Iterate over a list. - Repeat until condition true. - Repeat on Error until condition true. 71.What is the purpose of a Lock shared configuration resource?A Lock is specified for a 'Critical Section' group when the scope is 'Multiple'. It can be used to ensure synchronization across process instances belonging to multiple processs definitions or for process instances across engines(Check multi engine flag for lock in this case and the BW engine needs to be configured with database persistence while deployment). If synchronization is for process instances belonging to the same processs definition inside one engine, just specify the scope as 'Single'. 72.How to control the sequence of execution of process instances created by a process starter ?Use the sequencing key field in the Misc tab of any process starter. Process instances with the same value for this field are executed in the sequence in which they are started. 73.Can there be two error transitions out of an activity ?No. There can be only one Error and one Success if no matching condition transition out of each activity. 74.When is a 'No Action' group used ?'No'No Action' group used to have a set of activities having a common error transition 75.What activity can be used to set the value of a 'User defined process variable' ?The 'Assign' activity can be used to set the value of a 'User defined process variable'. 76.Which are the two process variables available to all activities with inputs ?
77.Which mechanism can be used to pass data between a process instance and a called sub process other than mapping from/to the callee's input/output ?This can be accomplished using job shared variables, unless in the call process activity the 'Spawn' flag is enabled in which case the called sub process is a new job and hence gets a fresh copy of the job shared variable initialized as per its configuration. A shared variable can overcome this limitation as it's scope is not limited to one job. 78.What are the three scenarios where BW engine has to be configured with database persistence instead of Local File ?The three scenarios are:
79.If you want a group to be executed if there is some unhandled error but subject to some max number of iterations which group do you use ?We can use Repeat on Error until true 80.When is a 'Generate Error' activity useful?When you handle an error inside a called subprocess or group and want to rethrow the error to the caller(happens by default if you dont handle the error in the called process) |