Event and Process Types - Urgent

Hi All,
I am little confused between Events and Process Types in a PC. How an event can be used in a PC ?
I know that SM62- To create event, SM64 – Execute Event. But how its used in PC.
Thanks in adv for your reply.

Events can be used to start the process chain based on the event raise. In order to use the events
1. Create an event using SM62
2. Go to your process chain start variant and select the start type as After event and give the event name which you created and then activate and schedule the process chain
3.Now go back to sm64 and trigger the event that should actually start the Process chain. This can be monitored using the Process chain log.
Regards,
Jagadeesh.

Similar Messages

  • How to trigger a form based on object type and process type

    Hi all,
    I am new into SRM.. I have been asked to develop a form by cloning an existing standard form..
    Using bbp_output_change_sf badi you can trigger the form by passing the object type but the scenario is such that depending on the object type and process type the new form should be triggered.
    The parameter iv_object_type passes the object type but how could i pass the process type ?
    In the badi I noticed an import parameter is_event that has a field called transction_type that carries the process type but this field never got populated when i checked using debugger.
    Please help as to how i can trigger the form based on the object_type and the process_type.
    Thanx in advance.

    Thanx again Jay Yang.. Well is there any possibility that you could get the items that were confirmed..
    Let me eleborate..
    Suppose in the PO u order an item for 10 nos and 5 gets confirmed and u return 2..
    Well in my case it is that i need to fill up a field Qty returned / Qty confirmed..
    I was able to get the number of items from the PO by passing the the passing the parameter to the FM "bbp_pd_conf_getdetaill"
    but i dont know how to get the number of items been confirmed..
    The quantity field in the line item structure gives me the number of items returned..
    Can u tell me how to get the number of items been confirmed....

  • Confusion on pair type and Processing Type

    Dear Experts
    I have the the below doubt in TIP Table
    Pair type  gives the information on the how the Time pairs being generated as
    0-      Non recorded Time
    1-      Attendences
    2-      Absences
    3-      Attendences Recorded from client 
    Processing Types also gives information on how the Time pairs are coming with below spec
    - Pair is deleted at a later stage
    BLANK Pair not included in calculation of productive time
    P Attendance pair, included in calculation
    of planned working time
    A Absence pair, included in calculation
    of planned working pair
    S Planned working time pir
    M Overtime pair
    Kindly  let me know on what senerios we go with pair type and  processing type as they have the same meaning
    Regards               
    Giri

    Hi Shruit
    i am clear but as mentioned in pair type 1= attendence (2011 - Positive) and Planned working time for negative .  in processing type S, A,P also signifies the information how the Time pairs are Generated   and also we have Origin indicator of time pair O which specifies wheather the time pairs are coming from E,M.A,P and D.
    Since they have same information why  Sap has defined pair Type processing Type and Origin Indicator
                                                                 I got the inputs theriotically but practically i am not able to get the TIP Table to read and understand .
    Thank you very much for the inputs
    Giri

  • Start sequence of components and process types

    Hi all,
    I would like to know, is there any particular start sequence of the instance components and process-types while using opmnctl startall, or opmnctl startproc ias-component=..., or opmnctl startproc process-type=... ?
    Regards

    You may start looking at these tables-
    RSBKREQUEST    DTP Request
    RSBKREQUEST_V    View of DTP Request
    Process Chain Statistics Tables:
    - RSPCLOGCHAIN, RSPCPROCESSLOG
    Hope it Helps
    Chetan
    @CP..

  • Relation between campagin and process type

    Hi All,
    Please let me know the relation between Campaign Id and Process Type. ie. based on a campaign id how to find the transaction process type?
    Regards,
    Vinny

    Hi Vinny,
    As I know, Campaign is different from other document like Sales Order or
    Complaint. For Campaign there is special setting where there is no need
    to define transaction type. Even, there is no number range defined for
    this Campaign. There is only Campaign number masking.
    Hope this helps,
    Gun.

  • EBS external transactions – Interpretation algorithms and processing types

    When assigning external transactions I am unclear about how best to use the Interpretation Algorithm and Processing type fields.  Does anyone have some practical examples to help me understand how to use these tools?

    In the global configuration for EBS, you map external transactions to internal transactions (posting rules) within a transaction type.  You then assign each bank key and bank account combination to the transaction type that should be used for processing statements for that account.  If you want different external transaction mappings for different account IDs, then you need to create different transaction types and assign each account to the relevant transaction type.  Since the transaction types are assigned to the account numbers, you can have different transaction types for accounts with the same bank key.
    Regards,
    Shannon

  • Process chain failed at  AND process type ?

    hi all .
    Process chain failed at  AND process type ?
    and it is giving  message      Job cancelled after system exception ERROR_MESSAGE     .
    what is the reason & solution .
    regards ,
    srinivas ,

    Hi,
    That depends on the system behaviour... There is no issue in that... You can repeate the process.. If there is no repeat option available then you can on the detail view.. there is a chance that you will get a repeat option there.. If not then copy the chain.. remove the loaded process and add one starter chain an continue the chain in immediate mode...
    Regards
    Sajid khan

  • Subscribe event and processing with data

    Hi.
    We made a portal component with DynPageWithJSP model and this program subscribe event from other iview.
    Other iview trigger event and store Data using data bag.
    When event trggered my portal component, load data and I wan to process with this data in PAI routine.
    So, Here is JSP file.
    <%@ taglib uri="tagLib" prefix="hbj" %>
    <jsp:useBean id="SalesOrderBean" scope="application" class="com.sap.training.portal.SalesOrderBean" />
    <script>
    function eventFired () {
         var Cust_No = EPCM.loadClientData('urn:com.sap.training.portal','Cust_No');
         var Sales_Org = EPCM.loadClientData('urn:com.sap.training.portal','Sales_Org');
         alert(Cust_No + " " + Sales_Org);
         var funcName = htmlb_formid + "_getHtmlbElementId";
         func = window[funcName];
         var ipField1 = eval(func("Cust_No"));
         ipField1.setValue(Cust_No);
         var ipField2 = eval(func("Sales_Org"));
         ipField2.setValue(Sales_Org);
         var form = document.all(htmlb_formid);
         form.submit();
    EPCM.subscribeEvent('urn:com.sap.training.portal',
                        'SalesOrder',
                        eventFired);
    </script>
    <hbj:content id="myContext" >
      <hbj:page title="PageTitle">
       <hbj:form id="myFormId">
              <hbj:inputField id="Cust_No" type="string" maxlength="20" value="" jsObjectNeeded="true" >
                 <% Cust_No.setVisible(false);%>
              </hbj:inputField>
            <hbj:inputField id="Sales_Org" type="string" maxlength="20" value="" jsObjectNeeded="true" >
                 <% Sales_Org.setVisible(false);%>
            </hbj:inputField>
            <hbj:textView id="welcome">
                 <% welcome.setText("Hello, " + SalesOrderBean.getCust_No() + " from " + SalesOrderBean.getSales_Org()); %>
            </hbj:textView>              
       </hbj:form>
      </hbj:page>
    </hbj:content>
    Above code, I checked portal compoent load data when event trigger. (in statement : alert(Cust_No + " " + Sales_Org);)
    After then, I try to access that data using following code.
        public void doProcessAfterInput() throws PageException {
              InputField myInputField1 = (InputField) getComponentByName("Cust_No");
              if (myInputField1 != null) {
                   this.Cust_No = myInputField1.getValueAsDataType().toString();
              InputField myInputField2 = (InputField) getComponentByName("Sales_Org");
              if (myInputField2 != null) {
                   this.Sales_Org = myInputField2.getValueAsDataType().toString();
              IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
              IPortalComponentContext myContext = request.getComponentContext();
              SalesOrderBean myNameContainer = (SalesOrderBean) myContext.getValue("SalesOrderBean");
              myNameContainer.setCust_No(Cust_No);
              myNameContainer.setSales_Org(Sales_Org);
    I can't acess it.
    Is there any problem ?
    Welcome to any comment.
    Regards, Arnold

    hi arnold
    try placing submit button...and use onClientClick="eventFired" in jsp file...try this out...
    hope it works fine...
    regards,
    purush

  • Process chians and process types Table

    Hi all,
    I'm looking for a table which can give me following details
    Chain technical name and not LOG ID
    Process Types
    Process Technical names and not the ID
    number of records in Infopackage
    number of records in DTP
    staus of each step (red/green/yellow)
    status of the chain (red / green/yellow)
    thanks for your help

    You may start looking at these tables-
    RSBKREQUEST    DTP Request
    RSBKREQUEST_V    View of DTP Request
    Process Chain Statistics Tables:
    - RSPCLOGCHAIN, RSPCPROCESSLOG
    Hope it Helps
    Chetan
    @CP..

  • Process Chains and Process Types for ODS Change logs

    We have created and used process chains to manage a large amount of our batch processing.   I am looking to convert our batch process of deleting data from ODS change logs into a process chain.   I have been unable to find a process type that will allow us to do this.
    Any thoughts?

    Hi Lisa,
       You can use Process "Deleting Requests from the PSA" for deleting PSA and change log data.
    Since the change log is also stored as a PSA table, you can also use this function to delete change log
    records. You can find additional information under Deleting from the Change Log.
    More info:
    Deleting Requests from the PSA
    http://help.sap.com/saphelp_nw04/helpdata/en/b0/078f3b0e8d4762e10000000a11402f/content.htm
    Deleting from the Change Log
    http://help.sap.com/saphelp_nw04/helpdata/en/6d/1fd53be617d524e10000000a11402f/content.htm
    Hope it Helps
    Srini

  • Smartforms and Processing types

    Hi,
    I'm New to SAP CRM.
    My requirement is to send a the activity transaction details to a customer as a PDF in the smartforms and different ways of using the Procssing types to send a mail to customer.
    How to go about it.
    How can we know the processing class for a gievn smartform. In which table can we find the entries.
    Regards
    Lekha

    Hi Lekha,
    After creating Transaction type for u r activity, define Action Profile for u r transaction,
    Check u r configuration for action defination,
    ProcessingTime(On Saving)
    Parter Dependent, to whom u want to send the mail (E-mail id maintained for Partner)
    Processing Type (Smart Forms Mail)
    Form (Assign u r smartform which contains Activity details)
    Processing Class    CL_DOC_PROCESSING_CRM_ORDER
    Processing Method CRM_ORDER_EXEC_SMART_FORM
    In action condition specifies condition if any, let me know it works.
    Thanks
    Dipesh.

  • Event and obj type in one eventlistener function for all buttons

    Hi i have something like this
    button1.addEventListener(MouseEvent.ROLL_OVER, manageMouseOver, false, 0, true);
    button1.addEventListener(MouseEvent.ROLL_OUT, manageMouseOut, false, 0, true);
    function manageMouseOver(event:MouseEvent):void{
      TweenLite.to(button1, 1, {x:100, rotationX:360, ease:Back.easeOut});
    function manageMouseOut(event:MouseEvent):void{
      TweenLite.to(button1, 1, {x:14, rotationX:-360, ease:Back.easeOut});
    and i would like to get one sentence for all button. I would like to create reference obj to use that function for all of my 7 buttons.
    button1.addEventListener(MouseEvent.ROLL_OVER, manageMouseOver(button1), false, 0, true);
    button1.addEventListener(MouseEvent.ROLL_OUT, manageMouseOut(button1), false, 0, true);
    function manageMouseOver(event:MouseEvent, obj:Object):void{
      TweenLite.to(obj, 1, {x:100, rotationX:360, ease:Back.easeOut});
    function manageMouseOut(event:MouseEvent, obj:Object):void{
      TweenLite.to(obj, 1, {x:14, rotationX:-360, ease:Back.easeOut});
    but this is not working. I know that is wrong but what i should do to do this right?

    in the listener function, use the event's currentTarget property to determine which object dispatched the event.

  • Capturing failure event of Process Type ABAP program in Process Chain

    Hi all
    I am calling an ABAP program in a Process Chain, there are subsequent steps after the ABAP program. The subsequent steps should execute if the ABAP program fails. While running the process cahin, if the ABAP program fails, then a pop-up comes up asking for triggering subsequent process. Since this Process Chain has to run in background mode, we dont want this pop-up. How can this be stopped?
    Please help.

    Hi Arnab,
    Welcome to SDN!!
    When you define the next step after the ABAP program select the action for as "error".
    Hope I have made things clear.
    Bye
    Dinesh

  • Process chain Error: This AND process is not waiting for event RSPROCESS

    Hi All,
    I am facing an error in the process chain in PRD.
    Error message: This AND process is not waiting for event RSPROCESS.
    We had a process chain which had two sub chains which run parallel and below of this we had AND process type and below of the AND process we had 4 more jobs.
    Once the two subchains got successfully loaded, the and process should turn to green and further 4 jobs should start.
    It is a daily load , it worked fine from past years,but suddenly the AND processtype is getting failed.The thing is in the two subchains if one got completed, the AND process process is not waiting for 2nd subchain to get completed.The AND process is turning to RED (status: cancelled) . I tried to repeat the AND process once after above 2 subchains loaded, but it didnt worked.
    And i removed the existing AND process and created a new one and placed it in same place and activated and schedules again.but still it is getting failed with same error.
    Thanks in advance,
    Sai Chand.S

    Hi,
    If you did any transports related to that metachain we face similar kind of issues.
    not only the AND process , we need to remove all the process before executing the AND process and create it again.
    It helps you, you said your in production So you should take the proper approvals and do it.
    Regards,
    Yerrabelli.

  • AND Process

    Hi Every one,
    My Process chain is getting failed in the AND Process.Due to this all my dependent Process chains also not running.
    How can i make the AND process sttaus to green?Please drop all your valuable suggestions on this.
    Below is the error message.Is there any Function module to change the status to green and resume the loads?
    *This AND process is not waiting for event RSPROCESS, parameter 4FCRJ6Y13IB4REHCKENODFOK0     E     RSP
    Thanks in advance,
    Chandu.

    Hi,
    1. Right click on the failed AND process and goto chain tab, there you will find the Instance and variante take those.
    2. goto SE16, give table name as RSPCPROCESSLOGpress enter give the variant and instance that you have taked previously-- execute.
    3. take the LogID and Process Type from the entry it is displayed.
    4. Goto SE37, give the FM name RSPC_PROCESS_FINISH and execute.
    5. in the entries give the Log ID, Process Type , Variant and Instance and Status as 'G' and presss execute.
    Now the further processes will tirgger when you execute that.
    Hope this helps.
    Veerendra.

Maybe you are looking for

  • Not able to connect with managed server using ssl connection

    Hi Guys, My weblogic server is running on linux. I have setup ssl connction bu using Demo Identity and Demo Trust.In server logs i can find the following infomation that server is running on secure port. But once i try connect to managed server using

  • Netflix "Play" Movies on HDTV

    Have Intel late 2008 Macbook 2.0 connected to Sony HDTV via mini DVI to HDMI. After initial startup I see my desktop background image on Sony sans toolbar and desktop icons. Opening up Netflix "Play" movies shows movie on Macbook but not on Sony. How

  • Show cells that match specific words

    Hi Team, I have the following data in excel sheet on column B and C. I have to write a function in column D to mark TRUE if it finds the following texts "DC", "SQL", "APP" and if not FALSE. I am able to do for a single value "DC" but not for multiple

  • Update installed but no changes.

    Hi there.  I upgraded to Mavericks last night.  I also had iWorks '09 installed on my machine. I was running Pages 4.3; installed from a disk when I puchased my iMac.  After installing Mavericks I showed updates available for Keynote, Pages, Numbers,

  • R/3 Upgrade to ECC 6.0 -- BW???

    Hi , we have a customer who is goingto un upgrade to ECC 6.0, can anybody tell me which is the BW version necesary for this R/3 version??? Thank you in advance