How to create messages in PC

Dear experts,
             How to create in msg in Process chains. Is it okay to create msgs anywhere in the PC. Can i have the complete steps please. Thanks
dave

Hi Dave,
You can create messages for any process in a Process Chain.
1) Go to RSPC
2) Select any process chain where you want to create a message.
3) Right click on any process and choose 'Create Messages'.
4) Here you have to choose any one option: Success, Fail or Always.
5) Provide process variant name and click create button and provide description in next screen.
6)Click on Maintain Recepiant list button and provide recepiant email address and select appropriate recepiant type. ( Eg: internet address ).
7) Save the settings and go back to your previous screen and clik edit documents button to customize the message.( this is optional)
Hope this helps.
Praveen

Similar Messages

  • How to create messages with parameters In ADF model.

    In ADF model, How to create messages with parameters?

    To Create messages in message bundles with parameters, perform the steps as given below
    Scenario: To Create a message as "Department Name XXXXXXX is already existing "
    Step#1: For the given entity object “DepartmentEO”, Go to “overview” tab and click “Business Rules” finger tab.
    Step#2: Select “Entity Validators” in the list & click “+” to add a new entity level validation rule.
    Step#3: Now go to “Failure Handling” tab, and click the Magnifier Icon.
    Step#4: Now in the “Display Value” field, enter the message with flower-braces as below.
    Department Name {department_name} is already existing
    Step#5: Also modify the Key & Description fields as needed. And click “Save and Select” button.
    Step#6: Now go to “Token Message Expressions” section, double-click the Expression field corresponding to "department_name" & give the relevant Attribute names say "DepartmentName"
    Step#7: Now click “OK”.

  • How to create messages in process chains?

    Dear Gurus,
    I want to use the alert system in the process chains.  like when one process fails i have to receive the message on my mail or as an SMS on my mobile. 
    I tried the same thing with one of my process chain.  When i right click one of my process in my process chain i will get the create message option.  But my problem is i dont know how to use that option.  If u have any solutions or any material please try to send me to the following ID <b>[email protected]</b>
    Thanks in advance
    Mohan Kumar

    Hi,
    You can also send messages to an application process of the chain, depending on the success or failure of the process.
    1.       From the context menu of a process, create an additional process variant of the Send Message type.
    2.       If you maintain a message, first specify whether you want the message to be sent when the process has been completed successfully or unsuccessfully. Then choose Next.
    3.       You arrive at a window, in which you can select an existing process variant or create a new one.
    4.       If you create a new process variant, edit the document that is going to be sent, and maintain a list of recipients.
    5.       Save your process variant and go back a step.
    The message process variant is now assigned to your application process. When the message is sent, the status information and the process log can also be sent.
    Hareesh

  • Implementing  Note 836401.  How to create message class 'Z'?

    Hello Experts,
    I'm trying to  implement SAP Note 836401 -" FBCJ: Receipt print with display not allowed " In SAP ERP 6.0.    Could somebody help me please with action in this note:
    "You must then adjust the error class 'Z' to your error class and replace the error number '000' with the error number of the message you created." I have some misunderstanding - What I must to do here? In SE91 i can't  find message class 'Z' and I can't to create it there, because of the rule:    name of message class   must minimum 2 characters.
    In  correction of object :"R3TR REPS MFCJ0F01" of this note, in source code I'm facing  strings:
         ID 'BEGRU' FIELD ls_tcj_c_journals-begru.
        CHECK sy-subrc NE 0.
        AUTHORITY-CHECK OBJECT 'F_FBCJ'
          ID 'ACTVT' FIELD '32'                      "Save
          ID 'BEGRU' FIELD ls_tcj_c_journals-begru.
        CHECK sy-subrc NE 0.
        ld_no_auth = 'X'.                            "no authorization
         MESSAGE ID 'Z' TYPE 'I' NUMBER 000.
    *   Sie haben keine Berechtigung, Quittungen zu drucken.
      ENDIF.                                         "begru initial?
    ENDFORM.  
    How to create the error class'Z'?
    How to adjust error class 'Z' to my error class?
    Best regards,
    Pavel Bogomolov.

    Hello Pavel
    The SAP note says that you should look for an appropriate Z-message class having a message (i.e. number) with the required text.
    Alternatively, you may use the following approach:
        CHECK sy-subrc NE 0.
        ld_no_auth = 'X'.                            "no authorization
         MESSAGE ID '00' TYPE 'I' NUMBER 208 WITH 'Sie haben keine Berechtigung, Quittungen zu drucken'.
    "     MESSAGE ID 'Z' TYPE 'I' NUMBER 000.
    "*   Sie haben keine Berechtigung, Quittungen zu drucken.
      ENDIF.                                         "begru initial?
    ENDFORM.  
    Regards
      Uwe

  • How to create message at the end of the process chain

    Hi friends,
    I have created process chains. It's working fine. But I wanted to create message to give alert if process failure.
    My requirement is if any process failure due to any reason message has to receive to the responsible person. I'm not sure how to do this.
    Can anybody suggest how to do this if possible step by step.
    Thanks & Regards
    Siri

    Hi,
    Genarally, you can create a message, by right click and create message then give email ids in Maintain Recipent list (Recipt type = via internet) and then give message that you want to send in Edit Document.
    Check whether the email address is maintained in SU01 in address tab.
    Configure SMTP server is set up properly ( SCOT). Ask basis team to do it.
    There is also other option to send the mail through program, for this you need to trigger any event or you can insert this program at teh end of the process chain.
    *& Report ZTEST_FM_MAIL
    REPORT ztest_fm_mail.
    DATA : is_doc_chng TYPE sodocchgi1,
    it_objtxt TYPE STANDARD TABLE OF solisti1,
    is_objtxt TYPE solisti1,
    it_objpack TYPE STANDARD TABLE OF sopcklsti1,
    is_objpack TYPE sopcklsti1,
    it_objbin TYPE STANDARD TABLE OF solisti1,
    is_objbin TYPE solisti1,
    it_reclist TYPE STANDARD TABLE OF somlreci1,
    is_reclist TYPE somlreci1,
    w_lines_tx TYPE i.
    Create Message Body
    Title and Description
    *is_doc_chng-obj_name = 'MAIL'.
    is_doc_chng-obj_descr = 'Auto genareted Mail'.
    main text
    is_objtxt-line = 'This is an automatically generated mail. Please do not reply to it.'(028).
    APPEND is_objtxt TO it_objtxt.
    is_objtxt-line = space.
    APPEND is_objtxt TO it_objtxt.
    write packing list (main)
    DESCRIBE TABLE it_objtxt LINES w_lines_tx.
    READ TABLE it_objtxt INTO is_objtxt INDEX w_lines_tx.
    is_doc_chng-doc_size = ( w_lines_tx - 1 ) * 255 + STRLEN( is_objtxt ).
    CLEAR is_objpack-transf_bin.
    is_objpack-head_start = 1.
    is_objpack-head_num = 0.
    is_objpack-body_start = 1.
    is_objpack-body_num = w_lines_tx.
    is_objpack-doc_type = 'RAW'.
    APPEND is_objpack TO it_objpack.
    is_reclist-receiver = 'your email id'.
    is_reclist-rec_type = 'U'.
    APPEND is_reclist TO it_reclist.
    CLEAR is_reclist.
    *This is for SAP system mail box
    *is_reclist-receiver = 'your system login ID'.
    *is_reclist-rec_type = 'B'.
    *APPEND is_reclist TO it_reclist.
    *CLEAR is_reclist.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = is_doc_chng
    put_in_outbox = 'X'
    commit_work = 'X'
    TABLES
    packing_list = it_objpack
    contents_txt = it_objtxt
    receivers = it_reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    Thanks
    Reddy
    Edited by: Surendra Reddy on Nov 18, 2008 5:36 AM

  • How to create Messages with Value Bindging

    Hello,
    i have an custom component and want to show all message for this component:
    <h:column>
    <t:messages binding="#{FolgeterminMessages.messages}" globalOnly="false"></t:messages>
                                                                          <co:note noteManager="#{performanceGesp.folgeGespraech}"
                                                                               noteClient="#{performanceGesp.noticeClient}">
                                                                          </co:note>
                                                                     </h:column>

    To Create messages in message bundles with parameters, perform the steps as given below
    Scenario: To Create a message as "Department Name XXXXXXX is already existing "
    Step#1: For the given entity object “DepartmentEO”, Go to “overview” tab and click “Business Rules” finger tab.
    Step#2: Select “Entity Validators” in the list & click “+” to add a new entity level validation rule.
    Step#3: Now go to “Failure Handling” tab, and click the Magnifier Icon.
    Step#4: Now in the “Display Value” field, enter the message with flower-braces as below.
    Department Name {department_name} is already existing
    Step#5: Also modify the Key & Description fields as needed. And click “Save and Select” button.
    Step#6: Now go to “Token Message Expressions” section, double-click the Expression field corresponding to "department_name" & give the relevant Attribute names say "DepartmentName"
    Step#7: Now click “OK”.

  • HOW TO CREATE "MESSAGE CLASS"?

    HELLO EXPERTS,
        Hereby, I post my another very simple but very important query.
        I have to make <b>"message class"</b>. But I <b>do not</b> know the tracsaction code, procedure and other require syntax.
        Kindly, explain me the <b>ENTIRE PROCEDURE</b>.
        Thanks!!

    <b>You create and edit Message Class using Transaction SE91. Once you have created a message, you can use it in the MESSAGE statement in a program.
    All messages are stored in table T100.</b>
    <b>Creating Message Classes</b>
    To create a new message class from the ABAP Editor:
       1. In the initial statement (for example, REPORT) or directly in the statement MESSAGE ID <id> enter a parameter value of up to 20 characters as a message ID, for example:
          REPORT <name> MESSAGE-ID <message class>.
          Messages are stored system-wide. The chosen message ID (message class) must not already exist in the system.
       2. Double-click the message ID.
          If you enter an ID that already exists in the system, the system calls up Message maintenance. In this case, enter a different ID. Once you have done this, the system asks you whether you want to create a new message class.
       3. Choose Yes.
          The system calls up Message maintenance.
       4. Enter a brief description of the class in Short text.
       5. Choose Save.

  • How to create messages for Validation in transaction type OB28

    Hello All!
    I am creating a validation in transaction type ob28. I have created the first point "prerequisite", second point "Check" and in the third point "Message" I want to put the message number 016 but the next error appears "Entry E ZFI 160 does not exist in T100". How can I create this messages number?
    Thank you in advance!

    Hi Leyre,
    This message applies to a problem with change requests. When creating a message, it's a workbench request that system has to create. Apparently, when you try to create a message, it tries to catch 'tramp' on existing CR which is assigned to a different client in your system. You should try assigning a new CR for this change; you could ask your BASIS team to help you on this.
    Regards,
    Eli

  • How to create Message choice through personalization

    Hi all,
    i have an issue, i need to add the message choice with already existing page through personalization..
    how can i add?
    Thanks
    Rama

    Hi Rama ,
    Navigate to the page to which you wish to add Message Choice bean , click on personalization link - > select complete view
    ( radio button ) - > in the table ,select region at which you wan to add the new item , click on the Create item image ( under create item
    column ) you will be redirected to a new page , enter the following details
    ID : any appropriate id
    Item style : MessageChoice
    Prompt : any name as desired
    Click on apply and navigate back to oaf page , now you should be able to see the new item gets created on the page .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to create message based exception class?

    Hi Guys,
    I try to create exception class at Workbech (se24), for example ZCX_TEST. At header information everything is default, but radiobutton "Exception class" is set and checkbox "With message class" is set. After this I enter text for my exceptions, for example TEXT, I assign it to SAP message (for example, class 00, message number 002). I'm going to tabstrip "Attributes" and public constant with name "TEST" should appear with assigned associated type SOTR_CONC and initial value with ID (normal behavior), but attribute "TEST" is created without type and value. It is not possible to use such exception. Where I am wrong?
    Regards,
    Evgeni

    Hmmm. It looks that it works fine with such definitions. Sorry for disturbs.

  • How to create Support Message in Solaman

    Dear All,
    I know how to create message in satellite system and configuration required for that but now my requirement is to create message in solman only and then further process the same as usual. How can I do that.
    NOTIF_CREATE is the transaction code for that but it ask for lot of details to create ticket. Can I create ticket form Help--->Create Support Message? Do I need to maintain table BCOS_CUST in solaman? What else configuration is needed to be done?
    Regards,
    Nikhil

    Hi Nikhil,
    There can be many reasons for 513 error.
    Please check the following steps in you systems:
    Check the number range assignment for SLF1 in transaction dno_cust01.
    Check for ur authorization of SAP_SUPPDESK_CREATE to create the messages.
    Go to transaction DNO_CUST04. Select the field NO_USER_CHECK, and check the "filed value". should be X
    Confirm Ur entries in Service Desk destinations in the Solution Manager System. OSS_MSG must exist
    Regards,
    Sunny

  • How to create a radio button on OA Page using Personalization

    I am trying to create a radio button on OA Page using Personalization. The item style , I can see is Message Radio Group.
    How to create Message Radio Button and bring them under one group.
    Thanks

    You should use jdev to define a radiogroup and radio buttons under that, wrap that definition inside a stackLayout in jdev, use personalization to add a stackLayout and extend the region which you had created earlier in jdev.

  • Create Message Bundle classes for EO objects in Jdeveloper

    How to create Message Bundle classes(extending JboResourceBundle) for an EO object using Jdeveloper. The ADFToyStoreDemo contains these bundle classes for the EO. However, when I complete create a new EO, I don't get a default Message Bundle class.

    Don't you get these when you add validation rules to the entity or default values / control hints, etc?

  • Create message class

    Hi,
    how is create message class.
    using in dialog program explain for procedure.
    by,
    Megahari.S

    Hi,
           T-Code SE93 is to create message classes.You can use it in pgm by specifying
    REPORT  NAME   MESSAGE-ID [MESSAGE CLASS NAME].       
    To display error messge syntax:
    MSG E(001)--> your message no..

  • How to create a error message for Deleted batch while creating a PO

    Hi ,
    Can any body tell me how to create error message for a deleted batch while creating a PO in ME21n,
    when a PO is created for a deleted batch at GI &GR lebel it is showing  a error message,
    but i want to show a error message while doing the PO creation.
    Thanks,
    Sachhi

    in badi  me_process_po_cust u can  put this message
    METHOD if_ex_me_process_po_cust~check.

Maybe you are looking for