Onblur action

Hi folks,
  Is there any event except onEnter for TextView UI? I am interested in onblur event. Is there any way to use JavaScript in WD? Thanks in advance.
   Alex

Hi Sridhar,
   Thanks, yes, I thought that it doesn't exist I just wanted to check out with someone more experienced than me.
  Regards,
Aleksandar

Similar Messages

  • How to multiply input by price

    Hi,
    I'm putting together a order form and would like to have the total filled in for the end-user for each item. There are multiple items, but I', just trying to get Right now, I have an input for Quantity (named AAA-MS) and a read-only input (named AAA-MStotal). When the user puts in the Quantity, I need to multiply that by 200 and then put that value into the read-only input.
    I know a bit of Javascript (although I am by no means fluent in it), but I'm unsure how similar this is to a web page.
    Right now, I have this script on the read-only input:
    var AAAMS = document.getElementById('AAA-MS').value;
    var AAA-MStotal = document.getElementById('AAA-MStotal');
    AAA-MStotal.value = AAAMS;
    I also tried removing the script from AAA-MStotal and adding it to the Quantity input with an onBlur action which triggered this script:
    var AAAMS = document.getElementById('AAA-MS').value;
    document.getElementById('AAA-MStotal').value = AAAMS;
    That also did not work.
    How can I get this to work? Is my script just wrong? Or do I need to do something different?
    Thanks for your help!
    Colin

    A barebones custom calculation script for the AAA-MStotal field could look like:
    // Get the value of the quantity field
    var v1 = getField("AAA-MS").valuel;
    // Multiply by 200 and set this field's value
    event.value = 200 * v1;
    You might also want to round to the nearest cent and set the field to blank if the quantity is blank or zero.
    You could also use the simplified field notation option. It would look like:
    AAA-MS * 200

  • Creating text filed template

    Hi,
    is it possible to change some attributes of Text Filed (HTML INPUT) for all text fields in application? To do something like CSS but for JS? I can’t define something like Text Field Template in Theme edit option.
    I want to automatically trim values of every Text Field. I’m thinking about adding to every INPUT, onBlur action, that invokes Java Script function trim(), but how to do this Template-like?
    Regards,
    Przemek

    Hi,
    Firstly, you could look into the User Interface Defaults (in Shared Components) as this will allow you to do some things with table fields.
    However, I would suggest that something like trimming fields should actually be done by a SQL trigger on the table, or a page process. Obviously, once templates exist, you could add javascript to them - but I would suggest that the templates are more for layout and styling??
    Andy

  • Aj4:support initialize backing bean

    Hi,
    I am a newbi in JSF and aj4.I have used ajs:support tag to do a server side validation (a business validation) ,invoking a backing bean method.
    What I have observed is ,when ever the ajax call happened for this validation method , the init() method of the backing bean is getting executed.I have annoted the init with @postConstruct.This is required for me.
    Please find the code below
    jsp
    <a4j:support event="onblur" action="#{accgpBean.validateId}" reRender="idValidMsg" immediate="true"/>
    <h:outputText  binding="#{accgpBean.idValidMsg}" id="idValidMsg"/>Backing bean
    @PostConstruct
         void init(){
              AccountGroup grp=new AccountGroup();
              grp.setAccntSuperGrp(new AccountGroup());
              this.setAccntGrp(grp);
              System.out.println("Retrieving the accnt grp>>>");
              accountGroupList=accountService.listSuperGroup();
    public String validateId(){
            System.out.println("Invoked validation method>>>");
            idValidMsg.setValue("Invalid Id");
            return null;
       }Can anybody suggest,how do I turn off the invokation of init() on the ajax requests ?
    Thanks in Advance
    Shaiju

    Hi,
    I am a newbi in JSF and aj4.I have used ajs:support tag to do a server side validation (a business validation) ,invoking a backing bean method.
    What I have observed is ,when ever the ajax call happened for this validation method , the init() method of the backing bean is getting executed.I have annoted the init with @postConstruct.This is required for me.
    Please find the code below
    jsp
    <a4j:support event="onblur" action="#{accgpBean.validateId}" reRender="idValidMsg" immediate="true"/>
    <h:outputText  binding="#{accgpBean.idValidMsg}" id="idValidMsg"/>Backing bean
    @PostConstruct
         void init(){
              AccountGroup grp=new AccountGroup();
              grp.setAccntSuperGrp(new AccountGroup());
              this.setAccntGrp(grp);
              System.out.println("Retrieving the accnt grp>>>");
              accountGroupList=accountService.listSuperGroup();
    public String validateId(){
            System.out.println("Invoked validation method>>>");
            idValidMsg.setValue("Invalid Id");
            return null;
       }Can anybody suggest,how do I turn off the invokation of init() on the ajax requests ?
    Thanks in Advance
    Shaiju

  • Enforce custom email address, field cannot be blank

    I am preparing forms and want to require only the school email is entered. I am currently using the default javascript for email validation, but would like to enforce the email end with @school name.edu, and field cannot be left blank. 
    I am using the onblur action. Here is what I currently have which gives a fill-in box if they try to leave the field empty, but still allows them to put in a personal email address and they can hit the cancel key and move to the next field leaving the email field blank. I know I am missing something.  Am new to javascript so any help would be appreciated.  Using Acrobat XI Pro
    // report error if there is an invalid email address when the field is not empty.
    if (! eMailValidate(event.value) && event.value != "")
    event.rc = false;
    app.alert({
    cMsg: "Invalid email address - Please try again",
    nIcon: 0,
    nType: 1
    } // end if validation test
    var t = event.target;
    var cResponse = app.response({
    cQuestion: "Type your University email address",
    cTitle: "Universityemail",
    cDefault: "email not added",
    cLabel: "Type your University email"});
    if (cResponse == null) { //if cancel is selected
    app.alert ("You cancelled adding your email?");
    cResponse = "";
    else
    app.alert ("You typed your email as: \""+cResponse+"\" \n\n Tab out of the field to register your email",2);
    t.value = cResponse; //places the data from the dialog to the target field

    You can easily check it by using something like this as one of the conditions in your if-statement:
    /@schoolname\.edu$/.test(event.value)
    I would suggest getting rid of the pop up message, as you're just making your work more difficult, since you now need to validate that email address as well.

  • Help using a dynamic action to update tabular form items (specifically radio button) based on collection

    Hi Everyone, I have posted this question in the past and made huge progress with Denes Kubicek's help:  https://apex.oracle.com/pls/apex/f?p=31517:294:115851992029365::::: based on my earlier question posted: https://forums.oracle.com/forums/thread.jspa?threadID=2537494
    I am struggling with one item in my tabular form.  It is a radio button.  The choices all appear properly, but the value is not saved in the collection (and hence, not saved in the table).  All other items in the tabular form save properly.
    here is what I have for the query.   It is item c024 (which maps to ;'f03'), which is defined as a radio LOV based on an existing LOV.
    Currently I have:
    2 page items:
    P110_ID
    P110_VALUE
    Dynamic action called CHANGE COLUMN:
    event: CHANGE
    selection type: jQUERY Selector
    jQuery:
    jQuery Select = input[name='f03'],select[name'f08'],select[name='f09'],input[name='f10'],input[name='f11'],input[name='f12'],select[name='f40'],input[name='f21'],input[name='f22'],input[name='f23'],input[name='f50']
    event scope: Dynamic
    true action#1: set value P110_ID javascript expression this.triggeringElement.id
    true action#2: set value P110_VALUE javascript expression this.triggeringElement.value
    true action#3: execute pl/sql code
    declare
      v_member number;
      v_seq number;
    begin
      v_member := TO_NUMBER (SUBSTR (:p110_id, 2, 2));
      select ltrim(substr(:p110_ID,5,4),'0') into v_seq from dual;
      safis_collections.update_column(v_seq,
                                    v_member,
                                    :p110_value);
    true ation#4 refresh region :LANDINGS_COLLECTION
    the tabular form is based on the query:
    SELECT
    apex_item.text(1,seq_id,'','','id="f01_'||seq_id,'','') "DeleteRow",
    seq_id,
    seq_id display_seq_id,
    apex_item.text_from_LOV(c004,'SPECIES')||'-'||apex_item.text_from_LOV(c005,'GRADE')||'-'||apex_item.text_from_LOV(c006,'MARKETCODE')||'-'||apex_item.text_from_LOV_query(c007,'select unit_of_measure d, unit_of_measure r from species_qc') unit,
    apex_item.select_list_from_LOV(8,c008,'DISPOSITIONS','onchange="getAllDisposition('||seq_id||')"','YES','0','  -- Select Favorite --  ','f08_'||seq_id,'') Disposition,
    apex_item.select_list_from_LOV(9,c009,'GEARS','style="background-color:#FBEC5D; "onFocus="checkGearPreviousFocus('||seq_id||');"onchange="getAllGears('||seq_id||')"','YES','3333','-- Select Favorite --','f09_'||seq_id,'') Gear,
    apex_item.text(10,TO_NUMBER(c010),5,null, 'onchange="setTotal('||seq_id||')"','f10_'||seq_id,'') Quantity,
    apex_item.text(11,TO_NUMBER(c011),5,null,'onchange="getPriceBoundaries('||seq_id||')"','f11_'||seq_id,'') Price,
    apex_item.text(12, TO_NUMBER(c012),5,null, 'onchange="changePrice
    ('||seq_id||')" onKeyDown="selectDollarsFocus('||seq_id||',event);"','f12_'||seq_id,'') Dollars,
    decode(c013,'Y',apex_item.text(14, c014,30,null,'style="background-color:#FBEC5D;" onClick="onFocusAreaFished('||seq_id||');"','f14_'||seq_id,''),'N','N/A') Area_Fished,
    decode(c017,'Y',apex_item.text(18, c018,4,null,'style="background-color:#FBEC5D; "onBlur="setUnitQuantity('||seq_id||')"','f18_'||seq_id,''),'N','N/A') UNIT_QUANTITY,
    decode(c017,'Y',apex_item.text(19,'CN',3,null,'readOnly=readOnly;','f19_'||seq_id,''),'N','N/A') UNIT_COUNT,
    c024 hms_flag,
    decode(c050,'Y',apex_item.checkbox(21,'Y','id="f21_'||seq_id||'" style="background-color:#FBEC5D; " onClick="alterYes('||seq_id||');" onKeyPress="alterYes('||seq_id||');"',c021),'N','N/A') FinsAttached,
    decode(c050,'Y',apex_item.checkbox(22,'N','id="f22_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterNo('||seq_id||');" onKeyPress="alterNo('||seq_id||');"',c022),'N','N/A') FinsNotAttached,
    decode(c050,'Y',apex_item.checkbox(23,'U','id="f23_'||seq_id||'" style="background-color:#FBEC5D;" onClick="alterUnk('||seq_id||');" onKeyPress="alterUnk('||seq_id||');"',c023),'N','N/A') FinsUnknown,
    decode(c050,'Y',apex_item.textarea(28,c028,3,null,null,'f28_'||seq_id,''),'N','N/A') Explanation,
    decode(c024,'N',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'U',apex_item.select_list_from_LOV(29,c029,'HMSNATURE','onchange="saveNature('||seq_id||')"','YES','A','-- Select Nature of Sale --','f29_'||seq_id,''),'Y','N/A') Nature_Of_Sale,
    decode(c020,'Y',
    apex_item.select_list_from_LOV(40,c040,'HMS_AREA_CODE','style="background-color:#FBEC5D;"',null,null,null,'f40_'||seq_id,''),
    'N','N/A') HMS_AREA_CODE,
    c020,c050,
    decode(c020,'Y',
    apex_item.text(41,TO_NUMBER(c041),5,null,null,'f41_'||seq_id,''),
    'N','N/A') Sale_Price
    from apex_collections
    where collection_name = 'SPECIES_COLLECTION' order by seq_id
    I have noticed the following:
    when I change column C011 (price) the following values are set in the dynamic action:
    P110_ID = f11_1
    P110_VALUE = whatever I change the price to.
    when I change the column C024 (hms_flag), the following values are set:
    P110_ID = f03_0001
    P110_VALUE = whatever I change hms_flag to.
    the region is refreshed in my dynamic action, and the change for hms_flag does not hold.  I have tested the SQL query that generates the value for v_SEQ in the dynamic action.   In both a change to price and HMS_FLAG it appears valid
    select ltrim(substr(:p110_ID,5,4),'0') into v_seq from dual;
    if f11_1, v_seq:= 1
    if f03_0001, v_seq := 1
    thank you!

    solved.  sort of. 
    field c024 references f03.
    the Dynamic ACtion, step 4 calculates v_member by taking a substring of P110_ID...and in all other fields, the column and the field (fxx) are the same value....except for c024.
    I am not certain exactly how to resolve, but see the problem.

  • How to set Lov item property (Action type,event,parameter etc) in PR when page load

    Hi gurus
    I am new to OAF, First I need to explain my scenerio.
    I need to make some field mandatory or non mandatory based on one LOV item (Pick list or message choice list).
    for this i extended the controler and apply the changes, but in this case what heppen, It will effect only when i open the list (pop list) and click on more (Available in poplist) and it will open a new form and i select value from that form. But when I open the poplist and select the value from the same list rather going to more option (it does not open new form), then there are no effect. I though the issue with refreshing when selecting value from the same list.
    To resolving this issue what i did
    1. go to page == > the same LOV
    2. Change the Client Action properties (
         Action type  = fireAction
         event          = xxevent
        submit = true.
    After doing this when i run the page from my OAF enviroement , every thing is OK. Then I transfer the Controler to Server machine and change the controller and run the same page from the server, it has the same refreshing issue, Then I thought because I did not transfer LOV such properties so this is hepening,
    Now I want to initilize such properties in Page load or what I need to do, Please advise me.
    Regards,
    Haq

    Edward,
    Thank you for the suggestion! It directly lead to my solution wherein I used CASE statements for the column in my Region SELECT such as the following:
    WHEN (:P2_GRADING_METHOD = 'CR/NC' OR scs.scs_pass_audit = 'P') AND GET_GRADE_B93 (sac.stc_final_grade, sac.stc_verified_grade) IS NULL THEN htmldb_item.select_list_from_lov (5, 'Enter Grade', 'GRADE_LOV_CRNC','onBlur="return validate_grade(this,''FW_DATE_'||ROWNUM||''')"','NO',NULL,NULL,'GRADE_'||ROWNUM)
    When the column is NULL, the Select List (LOV) contains the entry 'Enter Grade' and that is the value displayed on page load. I bypass the value 'Enter Grade' during Submit Processing where database updating occurs.
    I did not find the need to enter values for p_null_value and p_null_text since I don't believe that it would cause the 'Enter Grade' value to display on page load for null value columns but rather would enable the user to select 'Enter Grade' from the list and have a specified return value stored in htmldb_item array.
    Again, thank you for the help!

  • Is it possible to use AJAX for onblur method -- ADF

    Is it possible to execute a javascript action method for (onblur,onclick etc.,) using AJAX?
    For example according to the selection made in a list box, some fields are hidden or rendered. This is done with out any javascript code written in ADF using AJAX.
    Like wise for onblur etc., can we use AJAX?
    I want to save the record when I tab out from the last field of the record.
    Please let me know how I can do this.
    Thanks,
    venki

    Hi,
    I think the easiest way out of this is to use a commit button on the page, give it an ID and then look it up using document.getElementById("form:Id");. submit this handle (note that buttons are rendered as links). This doesn't require an Ajax call
    Frank

  • Onblur error ?

    Hi,
    I have a tabular form and in some columns I've written
    onblur="doSubmit( 'SUBMIT' )"in "Elemet Attributes".
    If I change the values in such field and press the "Submit"-button the new value is stored and all is OK.
    If I change the value and leave this field (by tab-key or mouse click into another field) I get a checksum error
    error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version
    of data in database has changed since user initiated update process. current checksum =...displayed, but the new value is stored in database !
    Anyone an idea, why a checksum error occurs ?
    Thanks for answers,
    Heinz

    Here is my code:
    <div align="center">
    <center>
    <table border="0" cellpadding="0" cellspacing="0"
    style="border-collapse: collapse" bordercolor="##111111"
    width="100%" height="100%">
    <tr>
    <td width="100%" align="center">
    <table border="0" cellpadding="4" cellspacing="4"
    style="border-collapse: collapse" bordercolor="##111111"
    width="450">
    <tr>
    <td width="100%">
    <p align="center"><font face="Arial"
    size="2"><img src="../images/logo2.jpg" width="304"
    height="94"><br>
    <b>Administration
    System</b></font></td>
    </tr>
    <cfform name="form" action="index.cfm" method="post">
    <tr>
    <td width="100%">
    <center><font face="Arial"
    size="2">Username:</font>
    <cfinput type="text" name="user">
    </center></td>
    </tr>
    <tr>
    <td width="100%">
    <center><font face="Arial"
    size="2">Password:</font>
    <cfinput name="pass" type="password">
    </center></td>
    </tr>
    <tr>
    <td width="100%">
    <p align="center"><font face="Arial">
    <input type="Submit"
    value="Enter"></font></td>
    </tr>
    </cfform>
    </table>
    </td>
    </tr>
    </table>
    </center>
    </div>
    Here is the error:
    Error Occurred While Processing Request
    The tag handler input does not have a setter for the
    attribute onblur specified in the tld.
    The error occurred in \login.cfm: line 18
    16 : <tr>
    17 : <td width="100%">
    18 : <center><font face="Arial"
    size="2">Username:</font>
    19 : <cfinput type="text" name="user">
    20 : </center></td>
    Please try the following:
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; .NET CLR 1.1.4322; InfoPath.1)
    Remote Address
    Referrer
    Date/Time 17-Sep-06 12:51 AM
    Stack Trace (click to expand)

  • OnBlur() function and JSP

    Hello Everybody!
    I'd like to knwo how can I use onBlur() function to make my SELECT form works without submit...
    Pratically, I need that, when a use "blur" a voice in the firs SELECT form, the second SELECT change without making a submit.
    The problem is that this JSP calls a Servlet that builds a bean, but the solution may be very simple, because I only need (if the user select a particular voice in the first SELECT) to inhibit the second and the third SELECT..
    <form name="nuovo" action="TicketHandler" method="post">
    <table >
    <tr><td>
    <b>Programma</b></td>
    <td><select name="programma">
    <%     dati_bean = bean.Dati_Programma_Ticket();          
         Iterator Idati_bean2 = dati_bean.iterator();
         while (Idati_bean2.hasNext()){
            SQLBean myBean = (SQLBean)Idati_bean2.next();           
              String programma = myBean.getParametro();
              %>
    <option><%=programma%></option>
    <%}
    %>
    </select></td></tr>
    <tr><td>
    <b>Relase</b></td>
    <td><select name="relase">
    <%     dati_bean = bean.Dati_Relase_Ticket();          
         Iterator Idati_bean3 = dati_bean.iterator();
         while (Idati_bean3.hasNext()){
            SQLBean myBean = (SQLBean)Idati_bean3.next();           
              String relase = myBean.getParametro();
              %>
    <option><%=relase%></option>
    <%}%>
    </select></td></tr>
    <tr><td>
    <b>Modulo</b></td>
    <td><select name="modulo">
    <%     dati_bean = bean.Dati_Modulo_Ticket();          
         Iterator Idati_bean = dati_bean.iterator();
         while (Idati_bean.hasNext()){
            SQLBean myBean = (SQLBean)Idati_bean.next();           
              String modulo = myBean.getParametro();
              %>
    <option><%=modulo%></option>
    <%}
    %>

    I know there's a javascript way to build a dynamic drop down list, but I was ooking for a "merged" Javascript+Java JSP recursive example! ( I need 3 different dropdown recursively dependet the second from the first and the third from the second..)
    anyone can helps?

  • OnBlur and onFocus

    I have a quick question about onBlur and onFocus - will the onBlur complete any code that is behind it before the onFocus takes effect ? I have comboboxes that are in line and i need to be able to do work if there has been a change by the the onChange call.
    Thanks

    first of all.. this is a JavaScript thingie.. not JSP
    second.. what has your thing with onChange has to do with the onBlur and onFocus?
    and it's not a question wether onBlur will complete it's code before the onFocus takes effect. If you have a field with an onBlur and onFocus action.. it never executes these scripts at the same time. onFocus gets enables when you enter the field, en onBlur when you exit the field.
    If you have 2 input fiels (both with onFocus and onBlur), and you go out of field1 (onBlur) and into field2 (onFocus) it first executes the onBlur-script till it's finished, and then will go over to the onFocus.
    ... or i just misinterpreted your question

  • How To Make Action Whet You Set Focus On InputText ?

    Hi All :
    Please Help Me How To Make Action Like(Changing BackGround Color For InputText When It GetFocu )
    Best Regards ....

    Hi,
    You can do it using JavaScript function, like this sample:
    <script type="text/javascript">
    function changeColorGetFocus(obj){
    obj.style.backgroundColor = "#f1f1f1";
    function changeColorLostFocus(obj){
    obj.style.backgroundColor = "";
    </script>
    And in your inputText put :
    <af:inputText
    onblur="javascript:changeColorLostFocus(this);return false;"
    onfocus="javascript:changeColorGetFocus(this);return false;"/>
    Regards

  • Validateat onblur not working

    Hello,
    I'm using Coldfusion MX 6.1 and have a simple form with only
    one textfield and submit button. For some reason
    validateat="onblur" is not working. It works as if I had onsubmit
    which is by default. below is my code and I will aprreciate any
    input as why it is not working.
    Thanks,
    joe
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body
    onload="document.getElementById('fname').focus();">
    <cfform action="process_initial.cfm" method="post"
    name="theForm" scriptsrc="cfform.js">
    <cfinput type="text" name="fname" value=" " size="10"
    maxlength="10" validate="integer" validateat="onblur"
    message="Please enter some text." range="100,200">
    <input name="Submit" type="submit" value="Submit">
    </cfform>
    </body>
    </html>

    "I will appreciate any input as why it is not working."
    Your version of ColdFusion is too old. validateAt="onBlur"
    and similar
    are a MX 7 enhancement. From the MX 7 documentation:
    History
    ColdFusion MX 7:
    Added support for onBlur and onServer validation, including
    the
    validateAt attribute.

  • Can't view data in IT302 - Additional Actions

    Hi Gurus,
    I cannot view any data in IT302 using Ad Hoc Query.
    Correct infoset was set up which include Additional actions infotype.
    IT302 was also properly set up in t77S0> ADMIN-EVSUP set to 1.
    And in T529A all Actions set to be updated in IT302.
    There are also Additional Action entries in table PA0302 but when I search it in Ad Hoc Query for a personnel number the fields (Action Type, Reason) turn up blank.
    Do I still have to make other configurations?
    Any ideas?
    Kindly help.
    Points will be given out
    Thanks,
    Olekan Babatonde

    I was in the need of getting the output based on Additional actions, and was able to figure out the way as how to do it., I am writing this here not that you would still in need but some one in future might come to this thread and get away with the answer.
    1. First we need to add Infotype 0302 to our infoset (Going toSQ02, Menu bar, Edit -> Change infotype selection.
    2. Once you have the infotype under the Data fields.
    3. Try adding each individual field under the field group/data fields by right clicking on the necessary infotype field and selecting Add field to Field group.
    4. Once you got all your IT0302 fields under field group/data fields right side of the window, save your infoset and run the  infoset query.
    5. Now you have the input fields and output fields to be selected from infoset query.
    6. Select input fields as Pernr, and action start date and end date from IT0000
    7. Select output fields from 0302 infotype fields, you may select all the necessary fields in the output, but the required one is "Counter Field"
    8. Once you have your hitlist from the ad hoc query, refresh the list from bottom of the screen and picks up all the ones who have the counter field as 1 - they are the ones, who has additional actions on specific date.
    Hope it helps to the viewers.
    Warm Regards!
    -Kanuku

  • Service Desk - Expert Mode - Not all actions are available

    Dear SAP colleagues,
    I have just implemented the Service Desk in our SOLMAN system.
    1. I choose Incident Management
    2. I click on Queries
    3. I click on a ticket (Transaction ID).
    4. I edit the message
    5. When I select Actions, I only have the 4 following options :
        - Send Message to SAP
        - Maintain SAP Logon Data
        - Display SAP Action Log
        - Update SAP Message
    When I consult some demos, there are many differents options available in Actions menu, as, for example :
    - Open System fro SAP
    - Confirm Message to SAP
    - E-Mail to Message Creator (Mail)
    - Print Message
    - Create Change Document
    - Call Solution Manager Diagnostics.
    Is it due to an missing authorizations (roles and profiles) ?
    Thanks for your input.
    Best regards
    CP2009

    Dear Rajeev,
    First of all, thanks for your input.
    I have choosen SIVA when I have activated BC Sets.
    Should I activate also BC Sets for transaction type SLFN ?
    1. I have started SPPFCADM and follow your recommandations.
    2. I have choosen CRM_ORDER
    3. I have then click on "Condition Configuration (Transportable Conditions)
    4. There are many entries related to the Support and Service Desk
    Example : Support Desk Message Action Profile
    I have 5 actions defined -
    Action 01 : Send Message to Processor
    Action 02 : Create/Change Basis Message from CRM Procedure
    Action 03 : Send Notification to SAP
    Action 04 : Update Message from SAP
    Action 05 : Confirm Message to SAP
    I have activate BC Sets for transaction type SIVA, not for SLFN.
    Best regards
    CP2009

Maybe you are looking for