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.

Similar Messages

  • How to make a mobile content in flash

    plze does any one know how to make a mobile content in flash

    You better ask in the Flash forum; this is the Flash Player forum.

  • 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 the mobile application work with firewall and anti-virus ON

    Hi,
    I keep on receiving internal processing error when i try to login sap mobile solution 1.3.0 on my ipad and i was provided a solution, that is to turn off my firewall and antivirus. I works by turn off both of it but i cant possible turn of the firewall and antivirus on the server.
    Can anyone guide me how to make the mobile application work with firewall and anti-virus ON
    Thank you

    Dear Rajesh,
    Create a policy in your fire wall to allow the port to send and receive data.
    I believe the port for the mobile should be port 8080 and 8443.
    And your license server port 30000 and 30001
    nd.Q

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

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

  • 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 mobile agent which will search infos ?

    Hello,
    I'd like to create a mobile agent in Java. I don't want to use specials Dvpt Kits as IBM's aglets.
    I want it to browse web and to find, for example, the cheapest prices about travels, or to look after a web site and to tell me if it has been modified since my last visit.
    Has anyone already developped a such application, or anyone knows where I can find informations, tutorials, examples...
    Thanks to you.
    Yann

    Try a book called Constructing Intelligent agents with Java by Bigus & Bigus. It's very good and quite cheap. It covers pretty much what you want to do.
    Apart from that, there are literally thousands of web sites out there but very few with any decent tutorials.
    Hope this 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]

  • How to make disable/enable single item recovery effectively Immediately?

    for the following command , "it may take up to one hour to disable single item recovery",my question is how to make the disable/enable  single item recovery
    effectively Immediately by some command?
    SingleItemRecoveryEnabled $false/true
    http://technet.microsoft.com/en-us/library/ff678798(v=exchg.141).aspx
    Please click the Mark as Answer button if a post solves your problem!

    other options:
    Move the mailbox to another DB or if in a DAG, activate the DB on another server. ( the activating seems to work as far as I have seen at least).
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Maybe you are looking for

  • How to change a tip on a link

    Hi, I have trouble finding a way to change a tip on a link on a page - the one that pops up when you point on a link. I can see the link item among items listed in personalizations page but I can't find where or what governs the tip for that link ite

  • JTable Awt -Event Queue problem

    Hi I've been looking everywhere for a solution to this, but can't seem to find one. I've got a JTable with an underlying model that is being continuously updated (every 100ms or so). Whenever I try to sort the JTable using TableRowSorter while the mo

  • Apple Tv Router Compatibility?

    On my old router I could use AirPlay instantly between my Apple TV and Apple devices. I recently purchased the Belkin N750 DB N+ router and now I am having issues using AirPlay. When I go to send a video from my iPad to my AppleTv my iPad can't find

  • Edit and Create a PDF

    When I try to create a pdf or edit a pdf it says that it can't verify my license, but yet I'm being charged every month for this service that I seem to NEVER be able to use.  Please fix this or tell me how to contact someone to fix this.  It's absolu

  • Import issue with CR2 file, Lightroom 5.3 & OS X Mavericks

    Hi there, I really hope someone can help. I've just switched laptops and installed LR 5.3 on to OS X Mavericks. Upon import I get an error message saying that the CR2 files are unreadable. So I took the same card and tried to import them on the old c