How to make XE Transaction enabled

Hi,
it seems that XE is not transactin enabled by default and we need to run some scripts to make it Transaction enabled.
Can any one let me know what are the scripts and where to find them?

Hi ,
Call transaction SICF and Navigate to "webgui" service; then right-click and select option "Activate".transaction will work definitely.
This should enable the WebGui functionality in your WAS.
ITS WEBGUI in ECC6.0
for more information , check below thread
MY FEW QUESTIONS
SSO with ITS & Webenabling WEBGui
Koti Reddy

Similar Messages

  • How to make "Remove" being enabled in menu?

    Dear All,
    Just a simple top question, how to make "Remove" being enabled in Edit Menu? I couldn't find any UID on it.
    You could find it out under "First Record, Previous, Next and Last".
    Thanks in advance!
    Jemmy

    Hi Jemmy,
    don't know if if this what you are looking for:
    When opening an order form (or and other document),
    under menu "data" there are the options "add row", "duplicate row" and "delete row". Since these methods manipulate the rows in a matrix elements. For obvious reasons the methods seem to be only active when focus resides in  the row of a matrix.
    HTH Lutz Morrien

  • How to make omniportlet mobile enabled

    while creating a new page on portal, i am selecting page type as Mobile and when i am adding portlet on this page,very few portlets are shown,i want to add omniportlet on this page.How can i do it?

    You simply can't
    There is a few built in mobile enabled portlets. When you view your page in mode 25 (mobile preview) you'll see only portlets that are developped with mobile support.
    Except the mobileXML and a few other, you won't fond anything interesting.
    You got to develop your own portlets for mobile access.
    See section 8.12 (Enhancing Portlets for Mobile Devices) of the portal developer guide. It will explain how to make your portlets enable for mobile.
    By the, if you start developping mobile portlets, make sure you use the correct technologies.
    You wont do the same if your target is IE/Opera on pocketPC or palms or if your target is the WAP on a standart mobile phone.
    the standarts :
    MobileXML is a deprecated standart, not supported by oracle that produce WAP content.
    The current standart is the XHTML MP (mobile profile). using this standart means that you will develop a JAVA portlet.
    An alternative is to use JSP with simple XHTML / HTML or whatever else. This will be enough to generate pages for mobile with modern browsers (IE or opera on Pocket PC or palms )
    I hope I've been clear, mobile enhancement in portal isn't a small part, difficult to synthetize in a single post.

  • How to make screen field enable when table control gives an error

    Hi,
        I had a scneario like when table control data wrong then one parameter of the screen should be enabled for the input, i knew that screen-name will not work since it will have always table control fields only when table control gives an error.
    How to make the other parameter enable when table control throws an error.
    Regards,
    Jaya

    Hi Gobi,
         Thanks for your response, but issue is - how to make other screen fields enable when there was an error in the table control data.
    For table control - lets say we will use the code as i mentioned above.i am sure that we cant write the code for field enable in between loop & endloop.
    as you said if we right outside the loop-endloop, the module wont be triggered when table control throws an error, because that statement was not there in the loop-endloop.
    please let me know if you need any more information on the issue. I hope there is alternative for this in SAP.
    Thanks
    Jaya

  • How to make a row enabled for lead selection and make other Rows disabled?

    Hi,
    What I require is:
    In a webdynpro table , which can have multiple rows, I want to make the rows which are retrieved fom backend as disabled for selection.
    And when I add a new row (using an ADD functionality) , this newly added row should only be enabled for lead selection.
    The Table property "enabled" can be assigned a context , and can be used to control the disabling of whole table.But then if I add the new row to this table, even this will be disabled.
    I can set lead selection to a the new row, but if the whole table is disabled, this won't work.
    Please suggest a solution for this.
    Thanks,
    Richa

    Do not set the enabled flag to the whole table but to the editors of each column. Bind the enabled property to a calculated boolean flag in the data source node. In the get method of this flag add a code that will make the editor enabled only if it belongs to the lead selection element.
    Now do not allow the selection of rows in the table (there is a property for this, perhaps is named rows selection I don't remember well now), but change the lead selection of the data source node to the desired element when you add the element programatically.
    Hope it helps.

  • How to make Netbeans CAPS enabled ?

    Hi,
    I am using Netbeans 6.5. Could someone explain me, how to configure Netbeans 6.5 with java CAPS 6 ? In java CAPS it is talking about a repository, how to create a repository ?
    I want to make Netbeans 6.5 CAPS enabled.
    Thanks.
    Kosala

    Repository-based projects is for CAPS 5.x projects (this product is not opensource). You can download GlassFish ESB but it doesnt have repository-based projects

  • How to make Jspinner real enabled?

    Hi,
    I need to set a jspinner non-editable, that is the jspinner can change value thought directly input value or use buttons.
    The setEnabled method can not archived this aim, how can i real enable the jspinner?

    I want to make one of the table column renderer to be Jspinner, then I write a cellEditor to do that. Inside of the cellEditor, I make wirte jspinner.setenabled(false), that just make the jspinner become to gray, the jspinner also can work as normal.
    Follow is my celleditor:
    import java.awt.*;
    import javax.swing.event.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.table.TableCellEditor;
    public class cell3 extends AbstractCellEditor implements TableCellEditor {
         private SpinnerNumberModel model = new SpinnerNumberModel(0, 0, 1000, 1);
         private JSpinner component = new JSpinner(model);
         private JTable table2;
         private int row2, column2;
         public Component getTableCellEditorComponent(JTable table, Object value,
                   boolean isSelected, int row, int column) {
              table2 = table;
              row2 = row;
              column2 = column;
              if(table.getValueAt(row, column - 2)==null||((String)table.getValueAt(row, column - 2)).equals("")){
                   component.setEnabled(false);
              else {
                   component.setEnabled(true);
              if(table.getValueAt(row, column)== null)
                   component.setValue(0);
              else component.setValue(table.getValueAt(row,column));
              component.addChangeListener(new ChangeListener(){
                   public void stateChanged(ChangeEvent e){
                        if(table2.getValueAt(row2, column2-1)!=null){
                        double v = Double.parseDouble(table2.getValueAt(row2, column2-1).toString());
                        double value = v * Integer.parseInt(component.getValue().toString());
                        table2.setValueAt(Integer.parseInt(component.getValue().toString()), row2, column2);
                        table2.setValueAt((float)value, row2, column2+1);
              return component;
         public Object getCellEditorValue() {
              return component.getValue();
    }If not clear yet, u can ask me some questions . Thanks!

  • BLOB - How to make it transactional?

    Hi All,
    Hope some of you can give me some insight into this problem. Thanks!
    I have column in a table w/ oracle's BLOB datatype. It is used to store Java's serialization objects. The problem I am facing is, when a java object is being serialized into the column, the app-server is shut off due to some error or other reasons, the serialized object in the column is corrupted, because it has not been serialized completely. I am wondering if there is a way I can make this serialization into the database transactional. Therefore, it is either all or none, but not half way. I will append the section of the codes that does the serialization. Am I using the correct way? Can you give me some suggestion? Thank you so much in advance!!
    - Vince
    Here is the section of the codes:
    ==================================
    Statement stat = conn.createStatement();
    String sql = "SELECT blob_data FROM blob_table WHERE blob_id=1 FOR UPDATE";
    boolean autoCommit = conn.getAutoCommit();
    conn.setAutoCommit(false); //error "out of fetch sequence" if this were not called.
    ResultSet rs = stat.executeQuery(sql);
    if(rs.next()){
    BLOB blob = (BLOB)rs.getBlob(1);
    OutputStream os = blob.getBinaryOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(os);
    oos.writeObject(newData);
    oos.flush();
    conn.setAutoCommit(autoCommit);
    rs.close();
    stat.close();

    just a thought...
    get rid of your final: conn.setAutoCommit(autoCommit);
    and do a manual commit. that way your commit won't happen
    until your code has completed the stream and expressly
    requests a commit, rather than having the database commit
    when it perceives the data flow is complete.
    good luck,
    rich

  • How to make online transactions using java?

    I am living in Dubai. I am unable to use java enabled pages of websites especially when I try for any online transaction. Someone said that I can use Cloud browse to fix this issue. But it is not available in this region,s App store. Can anyone suggest me a suitable solution for this.

    when i double click ii got the msg
    Failed to lad main class manifest attribute from
    x/x/xyz.jar
    what exatly it meansIt means that your Manifest.MF for the JAR file should contain an attribute called Main-Class pointing to a class containing the main() method.
    Something like this should be present in META-INF/Manifest.MF :
    Main-Class: MyApplicationMain

  • How to make a transaction call via https protocol

    Hi,
    Recently we have got a new requirement that requires the protocol to be used for a particular transaction as https.
    Is there any way that we can use https for only few transactions instead of all the transactions on MII (12.x)?
    For Example :
    Instead of
    http://<servername>>/XMII/Runner?Transaction=<transactionpath>
    We want to make call as
    https://<servername>>/XMII/Runner?Transaction=<transactionpath>
    Thanks in Advance
    Amit

    Amit,
    Since this is a NetWeaver setting to use https, it is either all or nothing for MII.  So if you have https turned on all of your MII Runner calls will need to use https and vice versa.  You are not able to pick and choose.
    Also to note if you are on MII 12.1 a new Service Pack (SP8) for MII is coming out soon, most likely by the end of the year.  This service pack takes advantage of the new security features (including https) that have been added in NetWeaver EHP1 SP5 or greater.  I would highly recommend moving to this if you are using https.  I'm not sure of all the pros but a SAP Note will be delivered with this release explaining in more detail.
    Thanks,
    Erik

  • How to make checkbox option enable/disable

    Hello,
    i am newbie in coldfusion...i want to make an option answer after my first check box answer is true
    code :
    <tr>
        <td><table width="100%"  border="0">
      <tr>
    <tr>
        <td>Do you have a car? </td>
        <td><input name="car_type" type="checkbox" value="1">Yes<input name="car_type" type="checkbox" value="0">No</td>
    </tr>
    <tr>
        <td width="100%"></td>
        <td><strong>(Select your car type)</strong></td>
    </tr>
      <tr>
        <td></td>
        <td><input name="car_bmw" type="checkbox" value="1">
          BMW</td></tr>
       <tr><td></td>
        <td><input name="car_mercedes" type="checkbox" value="1">
          Mercedes</td></tr>
        <td></td>
        <td><input name="car_toyota" type="checkbox" value="1">
          Toyota</td>
         <td></td>
        <tr><td>
        </td><td>Others<input name="car_others" type="text" size="20" maxlength="100" /></td>   
      </tr>
      <tr>
    Thank u

    What have you tried? 
    This is a client-side interaction, not server-side, so it should be fairly straightforward to do in JavaScript (I'd recommend using jQuery as it will make things a bit easier).
    -Carl V.

  • How to make Insert panel enable?

    Is it possible to enable Insert panel in other type files than default,  for example in JavaScript?
    I have some plugins installed like jQuery Utilities Toolset that put new icons into Insert panel for jQuery objects. Obviously I would like to insert them in JS files, not in HTML or PHP.

    Hmm. That's obviously a show-stopper for using the Insert bar. Commands work in Code view.
    Another possibility is to create your own floating panel. The Floating Panel API has an isAvailableInCodeView() method.
    Does it mean Adobe made this panel customizable but didn't predict that somone may need it in JavaScript or XML files to create own insert objects?
    The Insert bar has been part of Dreamweaver for as long as I can remember (it was certainly part of Dreamweaver 3), so its history goes back 10 years or so. In those days, few people were writing their own JavaScript or XML. Why not submit a feature request? https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform.

  • Portal WorkProtect mode: How to make a global enablement

    Hi Experts,
        Where can i make WorkProtect mode setting for all Portal Users in one go??

    Hi
    You can do it centrally as mentioned below
    There is a property known as workprotect.mode.personalize which can be set as ON or OFF. You can also set the value of the property - workprotect.mode.default, which affect the value globally.
    Check this for more details
    http://help.sap.com/saphelp_nw04/helpdata/en/37/50fb5066f9db43b3b5d5fc8de0c051/frameset.htm
    Regards,
    Praveen Gudapati

  • How to make a transaction appear like a folder structuee in SRM Web gui

    Hi,
    SRM 5.0
    We have a transation assigned to a role. Now in PFCG we have maintained the folder structure in MENU tab.
    In SRMGUI when the user logs in it shows up as folder structure.
    In the WEBGUI when the user logs in folder structure is missing.
    Any idea of what needs to be done here!
    Thanks
    Krishna

    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70ecae97-ca1e-2d10-3280-90e975cd6ff3?quicklink=index&overridelayout=true
    i could not understand your question fiully ..however see the above link helps.

  • How to make icon_checkbox enable in ALV list

    Hi,
    I am using the checkbox icon (icon_checkbox) to write into my ALV by using this FM REUSE_ALV_HIERSEQ_LIST_DISPLAY.
    The output of the ALV will be like this:-
    header-                        | Col A    | Col B      | Col C      | Col D
    line item1-                     chkbox   1               456          789
    line item2-                     chkbox   2               xyz          kkk
    The first coloumn (Col A) is the checkbox.
    I am facing problem when using icon_checkbox to display it at the ALV. Currently my checkbox is showing all check in all item and I can't check and uncheck it.
    My question is:
    1. Is it possible to make the checkbox enable/editable by writing the icon_checkbox?
    2. How to make the checkbox enable/editable?
    Thanks for your time for reading this. Let me know if more info is needed.

    This can be done one of two ways:
    1. Customize the form in Infopath, right click your field and disable the control.
    2. Use JavaScript/jQuery on the page to disable the element.
    Andy Wessendorf SharePoint Developer II | Rackspace [email protected]

Maybe you are looking for