Start process -"Start using Metachain or API"

Dear Experts,
               I have a process chain,PC2 that needs to be scheduled after completion of process chain, PC1. Now can I use the condition "Start using Metachain or API". But I have no idea how it works. I referred to documentation service.sap.com but they dont tell me much about this. Can somebody please tell me or refere me to some kind of documentation on how this condition works?
Thanks.

Hi Visu,
       Make PC2 as a local chain in PC1. and use 'start using meta chian option' for PC2, so that PC2 will automatically trigger when ever the PC1 is completed.
Regards-
MM

Similar Messages

  • Starting process chains using RSPC_API_CHAIN_START(parallel execution of processes)

    Hi,
    We've got sap bw 3.5 installed.
    We are using API RSPC_API_CHAIN_START to start executing process chains.
    IF we are using param I_SYNCHRONOUS = 'X'  then if we have parallel processes in chains they are executing one by one.
    IF we are setting param I_SYNCHRONOUS = ''   then proccesses are executed in parallel. But I recieved all the prompts. For example for chosing background server.
    and others.
    Is there an opportunity to combine these 2 cases: not to have prompts and execute processes in parallel?
    Thanks for you help
    Andrey

    Hi,
    I tried without I_SYNCHRONOUS param, it works the same as I_SYNCHRONOUS = ''. I recieve all the promts.
    Thanks for you help.

  • Starting Process by Using Web Service callable object

    HI,
         I have created Web service CO for starting a predefined process (let call it Process2).
    I am using this Web Service CO in another process i.e. Process1 (Main Process).
    When execution of Process1 reaches to action where Web service CO is Attached. It's Initiating the Process2.
    My Problem Is Process2 is initiated by some "Guest" User instead of processor of that action.
    Plz help ASAP.

    NO answers, so closing this thread

  • Powershell start-process argumentlist

    I have an issue with powershell 4.0 where start-process converts my credentials from a type of System.Management.Automation.PSCredential to System.String.  Use the following lines to replicate this:
    $Credentials = Get-Credential
    get-member -InputObject $Credentials
    start-process C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -ArgumentList "Get-Member -inputobject $Credentials | out-file C:\results.txt"
    If you look at the results of the 1st get-member command, the type is System.Management.Automation.PSCredential.  If you look at the results of the 2nd get-member command, the type is System.String.  Does anyone know if this is intended behavior? 
    Is there a way around it?

    I am using start-process to run a command which interfaces with VMware PowerCLI.  One of the cmdlets of powercli is Set-OSCustomizationSpec.  Set-OSCustomizationSpec has an argument that accepts PSCredentials, -DomainCredentials.  When the
    credentials are passed without start-process, the cmdlet succeeds.  If I call it with start process, the cmdlet fails with the error
    'Set-OSCustomizationSpec : Cannot bind parameter 'DomainCredentials'. Cannot convert the "System.Management.Automation.PSCredential" value of type "System.String" to type "System.Management.Automation.PSCredential"'
    The actual command i am using is: "start-process powershell -argumentlist "<Add VMwareSnapins>;Set-OSCustomizationSpec <SPEC> -NamingScheme <Scheme> -NamingPrefix <Name> -DomainCredentials <Credentials>; new-vm..."
    If you issue the command "get-member -inputobject $Credentials | out-file C:\results.txt" the type shows system.management.automation.pscredential.  If you issue the exact same command with start-process(start-process powershell.exe -argumentlist
    "get-member....) the type shows system.string. 
    The issue has nothing to do with piping to a text file.  The original post was simply a demonstration of the error.  I apologize for the initial lack of clarity. 

  • Duplicate start process

    We have a problem wherein our process chains are getitng  triggered twice.
    The chains are scheduled by event triggering and events are triggered thru dummy jobs.
    WHen I  rescheduling I get this warning message.
    Several start processes with the same start condition as
    START_ZZ have been found.
    Should all these jobs be removed from new scheduling?
    Is it possible to find what are the start processes with same condition?
    The start condition is triggered by event in process chain.
    Thanks in Advance,
    Rajarathnam.S

    Dear Ashish
    Thanks for your help. I learned a new thing (table)
    But still it didnt solve my problem...
    I checked for the chains using the start process. But it shows only one chain..
    Several start processes with the same start condition as
    START_ZZ have been found.
    This might mean the event used t o trigger the start process is used to trigger other start process also.
    Is there anyway I can check the  processes or jobs triggered by an event??

  • Error while using LiveCycle java APIs with Http servlets:"Remote EJBObject lookup failed for ejb/Inv

    Hi all,
    When i try to run more than one servelt of the Quick Start samples that using Livecycle Java APIs and i get an error of "Remote EJBObject lookup failed for ejb/Invocation provider" from any servelt i run.
    I try some Quick samples which is not servelts (java class) and it works fine, which makes me sure that my connection properties is true.
    Environment:
    The LiveCycle is based on "Websphere v6.1", and i use "Eclipse Platform
    Version: 3.4.1".
    i install "tomcat 5.5.17" to test the servelts in developing time through Eclipse.(only for test in developing time not for deploy on )
    The Jars i added in the classpath:
    adobe-forms-client.jar
    adobe-livecycle-client.jar
    adobe-usermanager-client.jar
    adobe-utilities.jar
    ejb.jar
    j2ee.jar
    ecutlis.jar
    com.ibm.ws.admin.client_6.1.0.jar
    com.ibm.ws.webservices.thinclient_6.1.0.jar
    server.jar
    utlis.jar
    wsexception.jar
    My code is :
    Properties ConnectionProps = new Properties();
    ConnectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_EJB_ENDPOINT, "iiop://localhost:2809");
    ConnectionProps.setProperty ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_ EJB_PROTOCOL);
    ConnectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE,ServiceClientFa ctoryProperties.DSC_WEBSPHERE_SERVER_TYPE);
    ConnectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "Administrator");
    ConnectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
    ConnectionProps.setProperty("java.naming.factory.initial", "com.ibm.ws.naming.util.WsnInitCtxFactory");
    //Create a ServiceClientFactory object
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(ConnectionProps);
    //Create a FormsServiceClient object
    FormsServiceClient formsClient = new FormsServiceClient(myFactory);
    //Get Form data to pass to the processFormSubmission method
    Document formData = new Document(req.getInputStream());
    //Set run-time options
    RenderOptionsSpec processSpec = new RenderOptionsSpec();
    processSpec.setLocale("en_US");
    //Invoke the processFormSubmission method
    FormsResult formOut = formsClient.processFormSubmission(formData,"CONTENT_TYPE=application/pdf&CONTENT_TYPE=app lication/vnd.adobe.xdp+xml&CONTENT_TYPE=text/xml", "",processSpec);
    List fileAttachments = formOut.getAttachments();
    Iterator iter = fileAttachments.iterator();
    int i = 0 ;
    while (iter.hasNext()) {
    Document file = (Document)iter.next();
    file.copyToFile(new File("C:\\Adobe\\tempFile"+i+".jp i++;
    short processState = formOut.getAction();
    ...... (To the end of the sample)
    My Error was:
    com.adobe.livecycle.formsservice.exception.ProcessFormSubmissionException: ALC-DSC-031-000: com.adobe.idp.dsc.net.DSCNamingException: Remote EJBObject lookup failed for ejb/Invocation provider
    at com.adobe.livecycle.formsservice.client.FormsServiceClient.processFormSubmission(FormsSer viceClient.java:416)
    at HandleData.doPost(HandleData.java:62)
    at HandleData.doGet(HandleData.java:31)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    a

    I assume here that your application is deployed on a different physical machine of where LCES is deployed and running.
    Do the following test:
    - Say that LCES is deployed on machine1 and your application is deployed on machine2. Ping machine1 from machine2 and note the ip address.
    - Ping machine1 from machine1 and note the ip address.
    The two pings should match.
    - Ping machine2 from machine1 and note the ip address.
    - Ping machine2 from machine2 and note the ip address.
    The two pings should match.
    Usually this kind of error would happen if your servers have internal and external ip addresses.

  • Is it possible to load a non-standard image using some Java API?

    Hi,
    My "problem" is:
    1. I have an image called "mediterranean_sea.IMG" (non-standard image format)
    2. I need to process it (histogram, palette, etc).
    3. I'm wondering if it is possible to load this image an process it using some Java API.
    4. I've tried to do this using JAI but I think that this API only works with TIFF, PNG, JPEG, etc.
    Any idea?
    Thanks in advance,
    Roger

    [url http://forum.java.sun.com/thread.jsp?thread=468188&forum=31]Cross-post

  • I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File") in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8, it does not open the PDF document. I can see the Acrobat(32) started in the task manager, but the document does open. Not sure how I can troble shoot this problem. Any help would be appreciated.

    I haven't use the C# API but I imagine it is the same as C ShellExecute. Which in turn is the same thing (in essence) as double clicking in Windows Explorer.
    So... does Adobe Reader run normally on this machine?
    And does it start and open if you double click on a PDF file?

  • Unable to open PDF files with Adobe Reader v11.0, in Windows 8, using C# Process.Start()

    I have been able to open PDF docs using C# API Process.Start("Full_path_To_the_PDF_File")
     in windows 7 or windows 8 with all previous versions of Acrobat32 reader.
    However, with v11.0, the same command, in Windows 8,
     does not open the PDF document. I can see the Acrobat(32) started in the task manager,
    but the document does open. Not sure how I can troble shoot
    this problem.
    As a test, I created ta batch file, with a simple command that calls AcroRD32.exe with a PDF file as a parameter. When I executed the batch file in cmd window, it opens the PDF document. If I execute the batch file using Process.Start(), again it does not
    work. The CMD window opens but, the document does not open. The cmd window just stays open.
    So, there must be something with opening the PDF using the Process.start() command.
    Any help would be appreciated.
    Thank you,
    - Kam
    Intel Engineer

    This is something Adobe has to troubleshoot. Probably the pdf file association is broken. I suggest you to visit forums.adobe.com to ask Adobe about your problem.
    Visual C++ MVP

  • Using CREATE PROCESS and START PROCESS in a JSP

    Hi,
    I have built a simple JSP page. I want to call my workflow program from this page.
    How should I use the CREATE PROCESS() AND START PROCESS() inside the JSP page?
    Also I want to get the value entered in the text field (which will be a hidden field) to be passed to the ITEM_ATTRIBUTE, which I have defined in my program. How can this be achieved?
    Please give me the syntax for this.
    Please find below the JSP page
    =========================================================
    <%@page import= "java.util.Date" %>
    <script language="javascript" src="ibeCButton.js"> </script>
    <html>
    <head>
    <title>First Page</title>
    </head>
    <body>
    <H3>Today is:
    <%= new java.util.Date() %>
    <INPUT TYPE="text" NAME="CART_ID">
    <INPUT TYPE="submit" onclick = >
    </H3>
    </body>
    </html>
    ==========================================================
    To use LAUNCHPROCESS in JSP, the following is the syntax.
    public static boolean launchProcess
    (WFContext wCtx,
    String itemType,
    String itemKey,
    String process,
    String userKey,
    String owner)
    Should WFContext have the connection information of the DB.
    If I pass only the WFContext and itemType attributes are they enough? Please let me know.
    Thanks

    There are two options.
    1. Good one.
    Include wf*.jar files in your system CLASSPATH. Use oracle.apps.fnd.wf.engine.WFEngineAPI class to access engine APIs. You would need to pass WFContext for which you need WFDB.
    You basically created WFDB with username, password and connect string. Pass it to WFContext and use it for all Workflow Engine APIs.
    2. OK one.
    You can get JDBC connection using the default mechanism that your custom Java and JSP code could be using. Call the PLSQL procedures WF_ENGINE.CreateProcess and WF_ENGINE.LaunchProcess over JDBC.
    Anyways option 1 makes life easier.

  • Unable to start process via GP API in which group is exposed as input

    Hi,
         I am not been able to start process using GP API for the particular senario.
    I created Process at design time.
    In this process I mapped parameters to a group and exposed this group, So that input is required for initiating the process.
    Now I want to initiate this process via GP API.
    I got sucess in starting processes which takes parameters as inputs or which does not need any inputs, but i was not been able to start process where group is exposed.
    it's giving me GP INVOCATION Exception.
    Please Help ASAP
    Regards,
    Pratik

    Pratik,
    I try to simulate with scenario described by you and I got success with my test.
    Follow my java code:
         public boolean initiateProcessSDN () {
              boolean ret = false;
              try {
                   IUser user = UMFactory.getUserFactory().getUserByLogonID("uces");
                   IGPUserContext userContext = GPContextFactory.getContextManager().createUserContext(user);
                   IGPProcess processTemplate
                        = GPProcessFactory.getDesigntimeManager().getActiveTemplate(
                                  "8DC0B411957D11DDB7910017F2EBE4A5", userContext);
                   IGPRuntimeManager rtm = GPProcessFactory.getRuntimeManager();
                   IGPStructure params     = GPStructureFactory.getStructure(processTemplate.getInputParameters());
                   params.setAttributeValue("NameGroup", "Pedro");
                   params.setAttributeValue("AddressGroup", "XPTO");
                   IGPProcessRoleInstanceList roles = rtm.createProcessRoleInstanceList();
                   IGPProcessInstance prInstance
                        = rtm.startProcess(     processTemplate,
                                            "Test 1",
                                            "Test 2",
                                            user,
                                            roles,
                                            params,
                                            user);
                   ret = true;
                   } catch (Exception ex) {
                        ret = false;
              return ret;
    Print screen about my GP design:
    Callable Object with 4 parameters
    http://img530.imageshack.us/img530/16/sdngpgroup001bt5.jpg
    Action grouping CO parameters into 2 groups
    http://img147.imageshack.us/img147/2006/sdngpgroup002xy3.jpg
    Process reflecting these groups as input parameters
    http://img147.imageshack.us/img147/9184/sdngpgroup003pp0.jpg
    Process started by java code above
    http://img530.imageshack.us/img530/8833/sdngpgroup004no4.jpg
    Best Regards,
    Pedro Nunes

  • How to start to work on MDM JAVA API by using webdynpro for java

    Hi all
    I have basic idea on MDM business package thru portal by using standard iViews.
    now i am planning to work on MDM JAVA APIs by using Webdynpro for Java as UI.
    1) can you please share the required documents on the same. how to start working on this by using MDM JAVA APIs in webdynpro for java
    2) what are the JARs files are required and how to integrate those jar files into webdynpro for java application.
    3)  is there any SDN help on MDM JAVA API with webdynpro for java? . can you please send the link on the same.
    4) can you please help by providing sample code on how to use JAVA APIs for retrieving,deleting,inserting and Updating the data in the database.
    if anybody helps on the same then it is the great help to me.
    points are always rewardable...
    Regards
    Suresh babu

    Hi Suresh,
    You can have the MDM JAVA API javadocs from the link
    http://help.sap.com/javadocs/MDM/SP06P2/index.html
    There you can see a package named com.sap.mdm.examples.The classes in it contains some examples using which you can start understanding the code.
    You need to have MDM JAR files for it. And these JAR files to be used at build time can be added to the project thru :-
    Right click on project-> properties->Java Build Path - > Add external JARs
    At run time you can add them the reference in
    Right click on project-> properties->web dynpro references->library reference.
    Thanks
    Namrata

  • How to Start process in ProcessChain Without using Repeat option?

    How to Start process in ProcessChain Without using Repeat option?

    Se16 -- table:RSPCPROCESSLOG - click on display entries.
    Entet the variant, instance start date (this info you can get from the "display message" of PC.
    Now execute to display the table entries of RSPCPROCESSLOG.
    Next goto SE37 transaction --enter RSPC_PROCESS_FINISH
    Take the entries from the above table to set the input parameters of the FM.
    I_logid = log_id(from above table)
    I_type = type(from above table)
    i_variant = varaint (from above table)
    i_instance = (from above table)
    Click on F8(EXECUTE)
    now the actual process is set to gree and the process chain will be triggered (rest of the PC with out repeating the step from where is was red).

  • TS3694 My iPhone will not restore the process starts and then a message pops up saying 'we are unable to continue with your activation at the time'  I have tried a few times now and the same. What can I do ? As I can't use iPhone at all now!!

    My iPhone will not restore the process starts and then a message pops up saying 'we are unable to continue with your activation at the time'  I have tried a few times now and the same. What can I do ? As I can't use iPhone at all now!!

    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.
    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743

  • I can't download OS5 or, rather, iTunes does download it about 450 mb and then, a few seconds after it starts processing the file, I get the message that I am timed out and am recommended to check my internet connection. I am using 3g to download it.

    I can't download OS5 or, rather, iTunes does download it about 450 mb and then, a few seconds after it starts processing the file, I get the message that I am timed out and am recommended to check my internet connection. I am using 3g to download it.

    I don't know which country you're in, but in the US, carriers limit the amount of download for a single file when using 3G.  Have you tried wifi?

Maybe you are looking for

  • How to configure Java Properties File location in WLW

    How do we tell Workshop 7.0 where to look for Java properties files (loaded by PropertyResouceBundle in code) ? Thanks, Ray

  • [SOLVED] AltGr key suddenly isn't AltGr anymore

    My AltGr key all of a sudden seems to have changed into a normal Alt key, so I'm unable to produce a couple of characters. Any idea what's going on? Apart from a "sudo pacman -Syu" I didn't do anything regarding any configuration or system things. My

  • Referring to cells in another file

    I'm trying to link to values inside cells to a different Numbers file. Is this possible? I've searched the forums, the web, and the help file of Numbers but couldn't find an answer. In Excel, I simply pressed the equal sign, browsed the file and clic

  • Siemens - Simantic IT Unilab / SAP Integration / xMII

    Hi all, Any experience in conducting integration between Simantic IT Unilab (LIMS) and SAP R/3 using xMII? Simantict IT offers connectors to achieve such integration with SAP R/3 by XI pathway. But we found this as an opportunity to explore xMII. I w

  • Using Time Capsule as a 'wireless' router and backup using Time Machine

    I have a question about backup speed on my 1 TB Time Capsule. I purchased a Time Capsule about a year ago and have an imacg5 and two Mac laptops that I setup to use the wireless router capability and as the backup drive for all three computers. I was