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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • How to create a server through WLST  ( Weblogic Scripting Tool ) ?

    How to create a server through WLST ( Weblogic Scripting Tool ) ?
    Thanks in advance...
    Sanjay

    Hi Murugesh,
    Thanks a lot for you reply..
    I was able to create a server using create(). Is it possible to clone a server ?
    When i create a server following tags is added to config.xml
    <server>
    <name>testServer_lab1</name>
    <listen-port>43000</listen-port>
    </server>
    And if i do a clone through admin console, following is added to config.xml
    <server>
    <name>testServer2_lab1</name>
    <machine xsi:nil="true"></machine>
    <listen-port>7001</listen-port>
    <cluster xsi:nil="true"></cluster>
    <listen-address></listen-address>
    <graceful-shutdown-timeout>120</graceful-shutdown-timeout>
    </server>
    If incase, cloning is not possible through WLST, can i add following
    <machine xsi:nil="true"></machine>
    <listen-port>7001</listen-port>
    <cluster xsi:nil="true"></cluster>
    <listen-address></listen-address>
    <graceful-shutdown-timeout>120</graceful-shutdown-timeout>
    under <server> tag which is created through WLST ?
    I am using 9.2 version.
    Regards
    Sanjay

  • 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”.

  • HT1766 how to take message backup through icloud

    Hii
    Please tell me how to take message backup  through icloud.
    Thanks
    Kapil

    Not from iCloud, because it's just one updated backup.
    I would also backup with your computer next time it's more reliable.

  • 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 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

  • How to create a user through a webpage which I build.

    Hi, every one,
    I only have HTML DB developer privilege. How to create a new user and assign a password through a webpage which I build. This means that how can I create a HTML DB user using code. which table in HTML DB stores user's info. Can I access that table by insert user info.
    Appreciate!!

    Scott,
    thanks for explanation.
    But I don't understand one thing. If security group ID associated with workspace, what does it mean this code (and associated functionality in admin pages):
    -- G R O U P S
    prompt Creating Groups...
    begin
    wwv_flow_fnd_user_api.create_user_group (
    p_id => 873904557635271,
    p_GROUP_NAME => 'ADMINS',
    p_SECURITY_GROUP_ID => 504313619757457,
    p_GROUP_DESC => 'Àäìèíèñòðàòîðû ñèñòåìû. Ñîçäàþò íîâûõ ïîëüçîâàòåëåé, ìîäèôèöèðóþò ïàðîëè èòï.');
    end;
    begin
    wwv_flow_fnd_user_api.create_user_group (
    p_id => 872621957621347,
    p_GROUP_NAME => 'MANAGERS',
    p_SECURITY_GROUP_ID => 504313619757457,
    p_GROUP_DESC => '...');
    end;
    begin
    wwv_flow_fnd_user_api.create_user_group (
    p_id => 872900617624637,
    p_GROUP_NAME => 'OFFICERS',
    p_SECURITY_GROUP_ID => 504313619757457,
    p_GROUP_DESC => '...');
    end;
    begin
    wwv_flow_fnd_user_api.create_user_group (
    p_id => 873414815628792,
    p_GROUP_NAME => 'USERS',
    p_SECURITY_GROUP_ID => 504313619757457,
    p_GROUP_DESC => ...');
    end;
    and how I can use this groups (not security, as I understand) for application controlling access?

  • How to create process massages through mass process

    Hi
    I have created process orders in mass
    I have release process orders in mass ..at the time of release system creates control recipe automatically system status CRCR
    after that i have done conformation ,then i have done c057 (create message indivudual )...here i want to create process messages for all oders at a time means mass or automatic ....is there any standard process is there ...please guide in this process hoW to do mass process for create process messages
    Regards
    Sasi

    Hi
    In CO69... Shold create varient.... i tried but we get error messages
    our process message category has contain charcterstis are....
    process order,control recipe,control recipe status,date of evevt,time of event
    in co69 i maintaine chracterstic val *** type .which should i maintain .. here 3 there (no value,fixed value ,dat point)
    Regards
    Sesidhar

  • 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

  • How to create material bom through CS01 if bom created by using ppe

    Hi experts,
    I have created a material bom through PPE of material A. Now i want to create bom through CS01for same material A.
    system shows error "A breakdown (PVS/VA) already exists in iPPE for material".
    So how can create bom through CS01?
    Suggest me.
    Regards,
    Nitin Nerkar

    Hi,
    Please check and implement the below note,
    [1311089|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1311089]
    Thanks
    Hrishi

  • 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 a tag through javascript while creating indesign document?

    While creating a indesign document and adding a textframe to it. How to create a tag to that textframe automatically through javascript?
    Is that possible?

    Dear frnd,
        Danq for your response..I can't use DLV_DATE for this requirement..
        But I used REQ_DATE in the structure BAPISCHEDULE .
       I came to know that the problem i faced previously  was only
    internal data conversion.
        Now am able to pass my delivery date..
        so I am closing the thread..
    Regards.
    siva

  • How to create a Copybook through Informatica Power Centre

    Hi Krishna, i think you need PowerExchange to create copy book. Regards,Darji

    Hi Folks & Experts,  I have a requirement which is I need to create a copybook through informatica power centre.My source is the SQL server DB and my Target is Copybooks.I am looking for a sample scenario how to create a mapping from DB to Copybooks through Informatica Power Centre.  I have seen many blogs but I couldnt find any blog for my requirement. Please help me on this guys.  Thanks in Advance,Krishna

  • 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.

Maybe you are looking for

  • IPod radio connect to stereo

    How can I connect iPod-radio and iPod via docking station to my stereo (Bose) or is this not possible? Siemens-Fujitsu   Windows XP  

  • My iTunes errors at startup everytime

    Here is the data from the error report that windows collects - any ideas?? <?xml version="1.0" encoding="UTF-16"?> <DATABASE> <EXE NAME="iTunes.exe" FILTER="GRABMIFILTERPRIVACY"> <MATCHING_FILE NAME="CDDBControlApple.dll" SIZE="434176" CHECKSUM="0xFB

  • Metadata for OLAP

    Hi All, I need to find out the mappings details of Cube or Dimension from the database. Like base measure of a cube is mapped to to which physicale table and which physical column. can anyone help me to find out the details from the database. Thanks

  • My first experience(review) with ICS

    Hello everyone, Hopefully i got my share of ICS update on my Xperia Mini Pro although my SI number was not listed on the blog/thread. It is working smoothly and i have spent around 5 hours checking all of its new features.. I am writing my experience

  • You cannot import pictures into iPhoto from a CD in latest Mountain Lion OS.

    it says it imports and I see the images but it never copies the images to the master location in the iphoto library.  You need to have the CD in the drive in order to view pictures otherwise it will ask you to locate the picture.  The work around I c