How to Configure the Buttons on the QAF for Mobile UI Screens...

Hi Experts,
I am in a serious need of help from the experts who already designed the Mobile UI screens.
I have built a add-on where now we are looking this add-on to be available to use in mobile applications also. Now here what I did is I have developed OWL and QA floor plans which will be used for Mobile Only. This option of selecting only for mobile is available to us while we are creating screens. In this way I have designed the screens and attached them to the work center views.
These views are attached to the work center floor plan and this is been assigned to my user. When I tried of viewing the designed screens using my android mobile I am able to see the screens owl and Qaf as of designed, but  now the problem is existing here.
When I am trying to perform one of the custom action which i have configured on the QAF floor plan the button which is configured with this custom actions is not visible at all. Not only this the standard action button on the tool bar of the Qaf like "Save" "Close" those are also not visible. I am not at all seeing any of the button on my QAF screens. With out these button I cannot go further to complete my process and complete transaction will not be done untill unless some of the custom actions which were configured on the screen. These custom actions are the action which I have declared in the custom Bo and developed with some code over there with the help of ABSL script.
I have followed the SAP 1402 documentation  but there it is not clear how to do it. I have done every step of the document but no use with it. Please needed any other real time expertise help who worked already on this mobile screens.
Regards..
Hanu K

Sorry but your posting is pretty confused for me.
At first you wrote:
>I can use Play/Pause, Stop, Forward and Back in Winamp
Later you wrote:
>and WINAMP to the MEDIA BUTTON
What now? Can you use media buttons with Winamp or not. As far as I know something like this is not possible because Toshiba has designed tool that controls WMP only

Similar Messages

  • In popup step how do I get the "text on the button" in the report rather than button index?

    (1)
    How do I configure the POPUP step in "SEQ MAIN.seq" to execute the second
    step (IS OUT PUT IS 20?) in "SEQ 1.seq" when "IS OUT PUT IS 20?" button
    hit and execute the third step (IS OUT PUT IS 30?) in "SEQ 1.seq" when "IS
    OUT PUT IS 30?" button hit.
    (2)
    In popup step how do I get the "text on the button" in the report rather than button index?
    File attached
    Attachments:
    test_stand.zip ‏32 KB

    The handle to the Step.Button1Label gets you the data, but there are several ways to get it into the actual report.
    The easiest is to use the reporttext.
    In a post expression, you can use something like
    Step.Result.ReportText = Evaluate("Step.Button" + Str(Step.Result.ButtonHit) +"Label")
    and then the default report generation will include it in the report. Otherwise, you need to get the text into the Resultlist by various means (check the user manual, or the TestStand II customisation course) and handle the report generation yourself inside of the appropriate sequence in the process model.
    Just my 2cents
    S.
    // it takes almost no time to rate an answer
    Attachments:
    IncludeButtonTextInReport2_0.seq ‏18 KB

  • How to insert a button on the column header of a table in webdynpro java

    Hi
    Can anyone tell me how to insert a button on the column header of a table in webdynpro java?
    regards
    sunit

    Hi sunit,
    Instead of adding button in the column header , in the column
    add a fixed top cell.
        right click on the column
        Insert FixedTopCell
        Right click on the fixedTopCell
        insert Editor.
       select button.
    then button will be only in the top most row.
    Hope it will satisfy ur requirement
    Regards
    Smitha

  • How to add a button to the grouped data in an AdvancedDataGrid?

    Hi,
    Can anyone please suggest how to add a button to the grouped data in the AdvancedDataGrid?
    I have tried extending the AdvancedDataGridGroupItemRenderer and using it as the groupItemRenderer but its not reflecting.
    For the leaf node the itemRenderer property works just fine.
    Please help!

    HI ,
    I want to add a push button on the ALV list out put which is comming as a pop up and I want this using classes and methods.
    I have got a method IF_SREL_BROWSER_COMMANDS~ADD_BUTTONS from class cl_gos_attachment_list  but still I am unable to get any additional button on the output ALV popup.
    Please help.
    Regards,
    Kavya.

  • How to associate a button with the selection/unselection of a JTable?

    hi,
    how to associate a button with JTable in this manna? i want to disable a button once there is no selection in the JTable, and enable the button when there is a selection. to associate the selection it is easy: just make an eventAction for the button on the click in the JTable and check whether there is a selection. but how to do this with the unselection? hope anyone can give me any hint. thanx!

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Test extends JFrame {
        String[] head = {"One","Two","Three"};
        String[][] data = {{"1-1","1-2","1-3"},{"2-1","2-2","2-3"},{"3-1","3-2","3-3"}};
        JTable jt = new JTable(data,head);
        public Test() {
         setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
         Container content = getContentPane();
         content.add(new JScrollPane(jt));
         jt.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
             public void valueChanged(ListSelectionEvent lse) {
              if (lse.getValueIsAdjusting()) return;
              if (jt.getSelectionModel().isSelectionEmpty()) {
                  System.out.println("Nothing Selected");
              } else {
                  System.out.println("Something Selected");
         setSize(500,500);
         show();
        public static void main( String args[] ) { new Test(); }
    }

  • How to send a command from a vc++.exe to LABVIEW.exe in order to control the button on the LABVIEW.exe

    Hello, everyone. Using VC++, I have gotten the handle of a *.exe(built by Labview), but I cannot get the button handle. I want to get the button handle and post the message to control the button. How can I do that? When I use the SPY++, the *.exe(built by Labview) have not any child windows which is very different from the *.exe(built by VC++). In SPY++, what is the LVDChild class? How can I send the message to control the button on *.exe(built by Labview)???
    That is  to send a command from a vc++.exe to LABVIEW.exe in order to control the button on the LABVIEW.exe. How can I get it ?
    Thank you!

    hummingbird wrote:
    Thank you! But I dont kown how to use vi server to raise a value signalling event. Can we put vi server into the vc program? Can you give me some more information or some examples, hehe!
    hummingbird
    Checkout the LabVIEW ActiveX server interface in the User Manual in Chapter 20, Windows Connectivity and the VI Server Reference in Chapter 17, Programmatically Controlling VIs.
    There is a sample for Visual Basic under examples/comm/VBtoLV.frm, which should be quite simple to translate to Visual C as long as you can figure out the basics of ActiveX programming in VC (I have never done anything with ActiveX in VC). For those basics I would recommend some text book or MSDN.
    Rolf Kalbermatter 
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Let's say I'm in my email, and I double click the button to the left of the screen and it then shows the multiple screens I've looked at already. How do I clear those already seen pages?

    If I'm in my email acct, I click a hyperlink to another page and then to go back to my email page, I double click the button to the left of the screen and it shows a slide list of pages I have recently been to. How do I get rid of that? Or clear the pages?

    You mean the multi task bar at the bottom?  In iOS7 there is a big preview box above each app in the bar.  Just swipe it up and away.

  • How to Add Print Button in the Online Payslip

    Dear Friends,
    How to Add Print Button in the Online Payslip (Employee Self Service). Can anyone pls let me know about this ..
    with regards
    Swpana

    Hi,
    Please review the following documents.
    Note: 332402.1 - Can You Mass Print Of Online Payslips?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=332402.1
    Note: 256072.1 - Payslip V4.0 Print Button Is Missing
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=256072.1
    For details about Deposit Advise and Checkwriter, please refer to:
    Note: 459306.1 - XML Checkwriter/Deposit Advice
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=459306.1
    Regards,
    Hussein

  • How to configure which changes in the document triggers Event Handler again

    Hi Experts
    Due to some reason after creation of Purchase Order, the event handler is not created in EM system. Now is there any way to resend this PO to EM? For example, is it possible to trigger Event Handler by changing some field in PO? If it is possible that way, Could you guide how to configure which changes in the document (PO/SO/Delivery/Shipment) can trigger Event Handler in EM system?
    Thanks
    Ravi

    Hello Ravi,
    if you change the PO Header/Item the respective EH  should be created if the Relevance condition is fullfilled.
    I'm not sure if it also works in the case that you change the PO Header and EH for PO Items will be created.
    Best regards,
    Steffen

  • How to configure GB P60s in the SAP Portal?

    How to configure GB P60s in the SAP Portal, so that they can be viewed and printed/reprinted by the employee themeselves? Will HMRC accept P60s printed on any stationeries? Also, Client does not want employee address to be available in the address section, but just the office location.

    Hello
    Please refer SAP note 1542870 -Electronic P60 ,where  HMRC have given employers the option of providing an electronic P60 to their employees.
    Please let us know incase you know any further information.
    Thanks and Kind Regards
    Ramana

  • My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this?

    My laptops QWERTY row of keys does not work for long periods at random intervals and only after pushing all the buttons on the row does it eventually turn back on and then will still cut out every now and again, anyone know how to solve this? If not is there any way to actually get a genuis appointment lol to get one of them to have a look at the hardware on the keyboard?

    Apple Support (formerly ExpressLane):
    https://getsupport.apple.com/GetproductgroupList.do
    https://getsupport.apple.com/GetSASO?SG=SG001&locale=en_US

  • On I tunes the buttons at the bottom of the screen have all gone to Spanish how do i return them to english

    I have just purchased an i pad 2 . When opening I tunes the buttons at the bottom of the screen such as "podcasts music" etc have all gone to spanish how do i change them back to english which they were when i bought it

    I see. You switched iTunes stores willingly and on your own and now you cannot get the store to change back to what you want it to be. You did change the credit card and billing address back to the store/country that you want to use now is what I gather from your last post. And I assume that it was working OK previously.
    I don't know what else to tell you other than to try quitting iTunes and restart the iPad - or reset the device and see if that triggers the iTunes store back to the one that you want to use.
    Quit iTunes and restart. In order to quit or close apps - Go to the home screen first by tapping the home button. Double tap the home button. The task bar will appear with all of your recent/open apps displayed at the bottom. If you are using multitasking gestures in iOS 5 - you can swipe up from the bottom of the screen to reveal the task bar. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Or try a reset. Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • How to use customised buttons in the menus

    Hi John,
    In the forms menus i have seen some customised buttons in some of the wrkforce forms. I would ike to knw how to enable these buttons.
    For example in form to add a TBH in menu there is a button ADD. How can we put those buttons.
    And also, there is button VALIDATE in the form where we have GO button. How to populate it. Even when the validate button is clicked, there is a popup menu saying that the entered amount is more than the budgeted amont. Is this done using the alerts?
    Please help regarding these issues

    Hi,
    I take it you are talking about when you right click and a menu appears.
    This is achieved by menus, Administration > Manage menus
    Or read about it here > http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_hp_admin/menus.html
    I think the example you talking about is menu "WFPMenuNewHires", if you want to know how it works you can edit it.
    It basically runs a business rule when you select an option like "Add To-be-hired" > Salary, you can customize the label on the buttons in the business options section of the menu set up.
    Once you have created a menu you can add it to a form when you design the form, it is part of the "Other Options" tab.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How to let the button in the toolbar more distinct when its be selected?

    hi.
    How to let the button in the toolbar more conspicuous(distinct) when its be selected?

    Chnge it's backgroung color, it's border, it't icon if has one.... Coice the way you more like.
    Abraham.

  • How to disable maximize button of the java.awt.Window ????

    How to disable maximize button of the java.awt.Window !!!!
    Help needed

    How to spam the forum with the same fuqin question. Please get lost.

Maybe you are looking for

  • Message Mapping Issue with data without namespace

    Hi, I have a common xsd imported which has its own target namespace into my SWC namespace. Based on this xsd I have generated a Message Interface and webservice and given the wsdl to third party system for invoking my webservice. The problem is I hav

  • Acrobat Reader 9

    Hi, Could someone please clarify and explain if it possible how to achieve the following:- I am lead to believe that with just the installation of Acrobat Reader 9 it is possible to load a PDF form, populate the fields on that form and save the PDF p

  • IAS 17 (FASB13) in foreign currency

    Hi, Do anyone know wheter the IAS 17 functionality for RE-FX works for conditions in foreign currency?. The IAS 17 functionality was implemented in my client succesfully and it works properly since 2 years. However, now, my client requires it but for

  • 0IC_C03 Cube Enhancement

    I am having an issue with updating the cube with new infoobjects and key figures. I am using 7.0 features and have converted the transformations properly. The data is fine and i can tie it out to r/3, but when I attempt to add a infoobject to the cub

  • Cisco ISE installation on VMware Workstation ?

    I am trying to install Cisco ISE image through Vmaware Workstation , but after starting VM getting redhat console but not the same console required for setup of actual ISE . Would like to know whether VMware workstation supported for ISE installation