HTML Controls in ABAP (not ITS)

Hello...   
How to build a HTML form and post it by internet inside SAPGUI (ABAP Program)....???  It's possible....???

Yes, its possiable.   Check out the demo program
SAPHTML_EVENTS_DEMO.  This uses an "internal" html page which interacts with the ABAP program using HTML control.
I've never done it, so I can't offer any simpler examples.
Regards,
Rich Heilman

Similar Messages

  • ESS Time Statements (PZ04) does not display HTML control

    Hi guys,
    I'm implementing ESS Time Statement service (PZ04) with custom templates and ran into the following problem:
    if i just run PZ04 using webgui - everything works fine and i can see the generated smartform report, but when i force ITS to use custom generated template for SAPLESS00_REP screen 100, the custom HTML control that displays the time statement smartform report is not coming up...
    Has anybody came across this issue before?
    The generated HTML template has statement SAP_ControlContainer("HTML_CONTAINER") which is supposed to display the report, but apparently it does not work...
    Thanks a lot in advance, any help is appreciated.
    Serge

    standalone. We are on 4.7 with 6.4 kernel and standalone ITS.
    I'm getting the option subscreen (period specifications), but the custom container which is supposed to display the smartforms reports (displays "Welcome to reports online") is not coming up at all...
    As to the custom templates: i have generated them in SE80 using "Business HTML" style and have not touched after -  here's the default code:
    `include(~service="system", ~language="", ~theme="dm", ~name="TemplateLibraryDHTML.html")`
    `SAP_TopInclude()`
    <html>
      <head>
        `SAP_PageTitle()`
        `SAP_Stylesheet()`
        `SAP_JavaScript()`
      </head>
      <body `SAP_BodyAttributes()` onload="`SAP_OnloadJavaScript()`">
        `SAP_TemplateHeader()`
        `SAP_BodyContentBegin()`
        `SAP_FormBegin()`
          `SAP_DynproLayerBegin(002,002,096,009)`
          `SAP_DynproSubScreen("SEL_OPTIONS")`
          `SAP_DynproLayerEnd()`
          `SAP_DynproLayerBegin(002,012,030,001)`
          `SAP_Button("PB_DISPREP")`
          `SAP_DynproLayerEnd()`
          `SAP_DynproLayerBegin(001,014,002,001)`
          `SAP_Button("PB_MAX")`
          `SAP_DynproLayerEnd()`
          `SAP_DynproControlLayerBegin(001,015,101,022)`
          `SAP_ControlContainer("HTML_CONTAINER")`
          `SAP_DynproControlLayerEnd()`
        `SAP_FormEnd()`
        `SAP_BodyContentEnd()`
      </body>
    </html>
    Thanks Again for any suggestions,
    Serge

  • I'm having a ipod nano which vl b in rectangular shape of 2" and when i connect my iphone's earpods d control keys are not workin. may i know d reason y its nt supporting?

    i'm having a ipod nano which vl b in rectangular shape of 2" and when i connect my iphone's earpods d control keys are not workin. may i know d reason y its nt supporting?

    I can't tell which iPod nano model you are describing.  The EarPods listing at the Apple Store
    http://store.apple.com/us/product/MD827LL/A/apple-earpods-with-remote-and-mic
    Says (under Compatibility) that iPod nano 4th gen and later are supported ["Requires software version 1.0.3 for iPod nano (4th generation)"].  If your nano is 3rd gen or earlier, it will still work for audio, but some control buttons may not work.

  • Flash Player Settings Manager does not response in AIR HTML control

    Hello All,
    We are working on a AIR application which is quite big and have around 22 modules. We have some of the functionalities which open an URL inside a browser (HTML control of AIR SDK). Most of the URL related functionalities are working fine in AIR HTML control but have a problem with one functionality. The functionality opens an URL of Flash based application in AIR HTML control which on launch shows the followuing screen
    and when I try to click on either allow or deny button they do not respond however you may close this NativeWindow Object. Actually we are putting AIR HTML control inside NativeWindow obejct and then opening it. when we tried to open this application directly from browser (IE 9.0) it was working perfectly. the settings box came and allowed me to click on allow and behave accordingly.
    Please suggest some workaround.
    Regards,
    Ashish.
    9880536981

    Just registering that I have the same problem as well.  Tried flash 10.0.42 on Firefox 3.5.5 and IE 8.  I had this problem on two seperate windows XP machines, both running SP 3.
    Anyone have an idea as to what's up?
    Andy

  • I use a brower to control a VI ,but what display in the brower is only a HTML,and I can not control it.

    I want realize remote controling.So I use a brower to control a VI ,but what display in the brower is only a HTML,and I can not control it.

    > I use a brower to control a VI ,but what display in the brower is only
    > a HTML,and I can not control it.
    >
    > I want realize remote controling.So I use a brower to control a VI
    > ,but what display in the brower is only a HTML,and I can not control
    > it.
    You don't say what version you are using, but LV6.1 added remote control
    of panels.
    If already using LV6.1, look it up in the help and try out the examples.
    Greg McKaskle

  • [AIR] Drag Problem (parent & children can receive d&d and HTML Control)

    Hi,
    I have a problem regarding drag and drop in AIR. The d&d involving parent & children that can receive d&d event and the children can contain HTML control. You might want to copy and paste the code below to get a better idea.
    The objectives are:
    1. If you drag the green object and drop it in the black area, it should alert "Parent Drop"
    2. If you drag the green object and drop it in the magenta (purple) color, it should alert "Child Drop"
    3. If you drag the green object and drop it in the white (HTML control) color, it should alert "HTML Drop"
    The problems:
    1. drag green object to black area, to magenta area, and back again to black area. Drop it, the alert is not shown
    2. drag green object to the white area (HTML control). Drop it, the alert is not shown
    Many thanks.
    The Code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init()">
         <mx:VBox verticalGap="0" x="50" y="50" width="200" height="200" backgroundColor="#000000" horizontalAlign="center" dragEnter="onParentDragEnter(event)" dragDrop="onParentDrop(event)">
              <mx:Canvas id="canvas1" width="50" height="50" backgroundColor="#00ff00" mouseMove="onMouseMove(event)"/>
              <mx:HTML id="html" width="50" height="50" dragEnter="onHtmlDragEnter(event)" dragDrop="onHtmlDrop(event)"/>
              <mx:Canvas id="canvas2" width="60" height="50" backgroundColor="#ff00ff" dragEnter="onChildDragEnter(event)" dragDrop="onChildDrop(event)"/>
         </mx:VBox>
         <mx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.events.DragEvent;
                   import mx.managers.DragManager;
                   import mx.core.DragSource;
                   public function init():void
                        html.htmlText = '<div style="font-size:small">HTML Control</div>';
                   public function onMouseMove(event:MouseEvent):void
                        var dragInitiator:Canvas = event.currentTarget as Canvas;
                        var ds:DragSource = new DragSource();
                        ds.addData("item", "item");
                        DragManager.doDrag(dragInitiator, ds, event, dragInitiator);
                   public function onChildDragEnter(event:Event):void
                        trace("onChildDragEnter");
                        DragManager.acceptDragDrop(event.currentTarget as Canvas);
                   public function onParentDragEnter(event:Event):void
                        trace("onParentDragEnter");
                        DragManager.acceptDragDrop(event.currentTarget as VBox);
                   public function onChildDrop(event:DragEvent):void
                        trace("onchilddrop");
                        Alert.show("Child Drop");
                   public function onParentDrop(event:DragEvent):void
                        trace("onparentdrop");
                        Alert.show("Parent Drop");
                   public function onHtmlDragEnter(event:DragEvent):void
                        DragManager.acceptDragDrop(event.currentTarget as HTML);
                   public function onHtmlDrop(event:DragEvent):void
                        Alert.show("HTML Drop");
              ]]>
         </mx:Script>
    </mx:WindowedApplication>

    The parent drop issue is because there can only be one drag acceptor and you don't get another dragEnter event when the mouse leaves the child (since technically, it never left the parent). This isn't as big an issue as it might seem, since generally you wouldn't have both a parent and a child that could take the drop. The ways to fix this are to use the dragOver event in addition to dragEnter or you could handle the dragExit event dispatched by the child and set the drag acceptor back to the parent.
    The HTML control issue is a bit trickier. HTML content has its own drag-and-drop system that operates a bit differently than the ActionScript version. I don't think there is a way to intercept the events before they are handled by the WebKit HTML engine. You can accept a drop in HTML/JavaScript code as described here: http://help.adobe.com/en_US/as3/dev/WS6717AA0A-2B7D-4728-86DC-7D60F919E6B4.html.

  • CHECKED "Disable Remote Control Infrared Received" not working

    Hi,
    I have an iMac and an Apple TV in the same room. I want the remote for the AppleTV to stop controlling the iMac.
    Yes, I have already checked the box in System Preferences/Security & Privacy/General/Advanced.
    Yes I have clicked OK and closed the lock to prevent further changes.
    But the remote STILL CONTROLS the iMac. Its annoying.
    On another discussion forum, a user mentioned a file called "/Library/Preferences/com.apple.driver.AppleIRController.plist" which my computer in fact does not have. Does anyone know, with Mountain Lion 10.8.4, should I still have this file?
    Any other ideas what might be causing this?
    The remote works and is paired with the AppleTV. But its still changing the iMac.
    Any help would be much appreciated!
    Many thanks,
    ponderosa_74

    Sorry to ask, but did you Unpair the Remote when you disabled the IR receiver...?

  • Main "Play Control" volume changes on its own when I open and close WinDVD or Winfast

    Main "Play Control" volume changes on its own when I open these programs, and when they're closed the main volume resets to where it was before the program was opened.
    Surely I'm not the only one who has had this problem before.. I've had the problem with both Creative soundcards I've owned, before and after different drivers installations.
    It can be very irritating and can potentially lead to damaged speakers if I'm not paying close attention to what my various volume knobs are set at before and after I open these programs.
    I appreciate any and all input, thankyou.

    I had to edit to reflect its Mavericks 10.9

  • How to restore a control file without having its backup

    Hi,
    Can any one please suggest me how to restore a control file without having its backup.
    Thanks

    To add to what SB said, in years past the instructions for re-creating the control file manually were contained in the DBA Administration manual. It used to be and may still be common to be taking and saving a "backup control file to trace" for this purpose.
    If you lost only the primary copy of the control file and it is an OS file then while the database is shutdown you can copy the secondary over the primary and then use if to start the database. If the control file is stored in ASM then there should be a way to perform the copy via ASM.
    If you use rman for backups then a copy of the control file should be part of the backup process and you can retrieve it from the backup set then perform recovery using the backup control file though I do note the OP said something to the effect no backup exists. Still, I have knows of instances where the DBA did not realize that the backup set contained the control file and the spfile so I think this is worth mentioning just in case.
    HTH -- Mark D Powell --

  • Display PDF Dokument in HTML control with Adobe Reader X - hide toolbar

    Hello,
    I am reading a document from a content repository via Archive Link Interface. I get the content by the function module SCMS_HTTP_GET. Afterwards the content will be displayed in a html control in the method SHOW_URL  in class
    CL_GUI_HTML_VIEWER by calling the url SAPR3://SAPR3CMS/get/012/XX/0050568700A51EE0BDC6F305DFEDDF57/ with the following code.
    CALL METHOD call_method
       EXPORTING
         method  = 'ShowUrl'
         p_count = 2
         p1      = url
         p2      = frame
       IMPORTING
         RESULT  = m_result.
    If I had a standard url like http//:...test.pdf it would be possible to hide the Adobe Reader X toolbar by the additional command &#toolbar=0
    The SAP url SAPR3://SAPR3CMS/get/012/XX/0050568700A51EE0BDC6F305DFEDDF57/&#toolbar=0 is not working. Can anybody give me a hint how to get the toolbar hidden?
    Thanks and regards
    Joerg

    I don't believe you answered the question. I have the same problem in that when I upgraded to Reader X my Toolbar disappeared and you responded to my post with a fix. Last week I installed updates to both Acrobat 8 and Reader X and in the process lost my toolbar and the floating toolbar. After "repairing" both Reader and Acrobat numerous times I find that at least the floating toolbar is back and F8 will of course deliver the traditional fixed, top of the page toolbar, but only for that specific open document. When I open a new document (from the web) I must F8 to get my traditional toolbar back. Below are the settings I am using to achieve this (I have tried every combination to try and make this work). Any help to get my toolbar back is very much appreciated.

  • RoboHelp HTML v9 - Browse Sequence not appearing when generated

    RoboHelp HTML v9
    New project - eg not converted from previous version
    Added a browse sequence as per the help documentation - I've followed the help documentation however when I get to view result of the generated WebHelp - the browse sequence is not present on the topic pages that were added to the browse sequence.
    I read previous forum postings for RH8 - where reinstalling or repairing the software seemed to assist - however when I access through control panel - add/remove programs the only option in to Remove RH9.
    So I thought I'd ask the question here before uninstalling.
    There was also mention of a dll file that needs to be registered on the viewers pc before the browse sequence would appear and if this is the case due to the possible audience for the publish I would not be able to control that.
    Any help is appriciated, thanks.

    Hi
    Thanks - I guess I was looking for the page icons that visualized the
    sequence for the viewer.
    That being said - the navigation arrows are present in my published file
    however seem to hold no functionality - while on a topic that is within
    the browse sequence clicking the arrows does not move through the
    sequence.
    I was initially looking for onscreen navigation  for a series of topics -
    I though browse sequence would do the trick but I think I will move to
    another method.
    Karen Voycey, BSc
    Learning Solutions Specialist | Human Resources
    10 Wellington St. E. | Toronto, ON | M5E 1L5
    t. 416 366 7600 x 2451|1 800 569 1163 | cell +416 568 2551
    [email protected]
    Proud national insurance sponsor of the AIR MILES® Reward Program. For
    more information go to www.rsagroup.ca.
    RSA is a registered trade name of Royal & Sun Alliance Insurance Company
    of Canada.
    From:   Captiv8r <[email protected]>
    To:     Karen Voycey <[email protected]>
    Date:   13/07/2011 04:52 PM
    Subject:        RoboHelp HTML v9 - Browse Sequence not appearing
    when generated
    Hi there
    Your mention of: "the browse sequence is not present on the topic pages
    that were added to the browse sequence" seems to imply that you are
    expecting to see the sequence directly on those pages. But that usually
    won't happen.
    Perhaps it will help to start by viewing the link below:
    http://www.robowizard.com/RoboWizard/NewProject.htm#MonthlyScry/012006.htm
    Then come back with any questions you may have.
    Cheers... Rick
    http://www.robowizard.com/pc.gif
    Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    http://www.gooberguides.com/ProductPages/RoboHelp/RoboHelp82Day.htm
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com

  • Officejet J3680 Control Panel does not respond to buttons, just make "beep sound"

    Hi everybody, thanks for reading.
    The problem is that my (brand new) J3680 control panel does not work until I press all the buttons, yes its weird.
    Note #1: The printer works perfect when used through the computer (I am Linux user).
    Note #2: Once I have pressed all the buttons at control panel the control panel (kind of) works.
    Heres how this happens:
    I plug the power cord
    Now, the printers start and not even the Power button works, so I cant turn it off, each time I press any button it just do a “beep sound” and the LCD screen keeps the same
    The LCD shows this:
    0 Speed Dial
    <One-Touch 1>
    Now I have figured out what the LCD screen initialization means:
    0: Thats the times I have pressed the “Speed Dial” button
    Speed Dial: Thats the button I have to press to make the Control Panel works
    <One-Touch 1>: This is the next button I have to press after the “Speed Dial” has been pressed
    The printer then makes me press all the buttons (...)
    I think this is kind of some “Control Panel button calibration", because the LCD respond perfect when I press the button the printer ask
    The other problem is that I don't know how to finish this calibration or whatever this is, because I reach a point where I cant find the button it ask
    The LCD ends showing:
    1 Color Start
    <Hidden 1+Black>
    Where “1 Color Start” was the last button it asked me to press, and the <Hidden 1+Black> is the next one combination.
    Note that “Hidden 1” is not “1” not “Speed Dial 1”, I have just tried that combinations, but does not work.
    Please help I have to do this each time I turn on the printer to make the control panel work. Thanks a lot.
    Message Edited by NxGTR on 08-14-2009 07:15 AM

    Nao    Consigo  estalar   impressoura   HP  Officejet  J3680   Faz  horas   que estu tentando  estalar  nao  sei se  esuporte   ou provedor  gostaria  muito  de ajuda  para  italar.  obrigado  Rui

  • How to dynamically load data from DB in an HTML control present in jsp

    Hi Friends,
    Can anyone help me with this problem:
    I am working on a portal application. My requirement is to dynamically load data in an HTML control present in my JSPs. The controls are combo-boxes, text-fields, list-boxes etc. . Also, the events to load the data are like On Form load, On selecting a value from the combo-box, on clicking on a text-field etc.
    If any one can help me with a code snippet, than that would be highly appreciable. If not then the approach to achieve this will also be helpful.
    Thanks and Regards,
    Gaive.

    Refer
    http://www.developer.com/db/article.php/3384201
    http://www.developer.com/db/article.php/10920_3399331_1

  • ORA-01103: database name 'ORDB' in control file is not 'ORCL'

    hey there !!
    11.2.0
    win 7 pro
    let me tell u whole scenario for how i reach to this error - ORA-01103: database name 'ORDB' in control file is not 'ORCL'
    -installed new 11g ( test/ practice environment )
    -by default database created 'ORCL' while installation
    -created another instance 'ORDB' ( my aim was to create auxiliary database/duplicate database )
    -done well according to oracle documents and SUCESSFULLY created a duplicated database
    -i thot of sycnronization to auxiliary to target db , so i read docs and learn that you can issue
    DUPLICATE TARGET DATABASE TO dupdb ( its an oracle Doc's exmple so i put my db name and path accordingly )
    SKIP TABLESPACE tools
    LOGFILE
    GROUP 1 ('/duplogs/redo01a.log',
    '/duplogs/redo01b.log') SIZE 200K REUSE,
    GROUP 2 ('/duplogs/redo02a.log',
    '/duplogs/redo02b.log') SIZE 200K REUSE;NOW, process was Failed , above command didn work bcos of some syntax error .
    BUT what happned is - now whenever i connect both target and auxiliary database from RMAN it shows this -
    C:\Users\Administrator>rman target /@orcl auxiliary /@ordb
    Recovery Manager: Release 11.2.0.1.0 - Production on Fri Apr 5 10:54:04 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    connected to target database: ORCL (DBID=1339650140)
    connected to auxiliary database: ORCL (not mounted)
    RMAN>and also whenever i connect Target ( main , not auxiliary db ) from SQL it shows the error that i described in title .
    I feel like something BUG because this happned to me 5th time , in that 5 times 4 times i got this error while i was duplicating a database . and also after sucessfully duplicated DB ( that was 5th time )
    Thanks
    Regards

    Hi ,
    check the db_name parameter in init parameter file.
    Edited by: Jamsher on Apr 4, 2013 10:33 PM

  • Grid Control url is not loading 10gR2

    Team,
    DB = 10.2.0.1
    OS = RHLE 4
    Grid = 10.2.0.1
    I have installed Grid Control on the same machine where my database running. I followed all the steps and its successful. After all, my grid control url is not loading..
    The following URL shows
    http://localhost.localdomain:4889/em
    ERROR:
    503 Service Unavailable
    Servlet error: Service is not initialized correctly. Verify that the repository connection information provided is correct.
    I have started all the process successfully. Could you please anyone help me out on this issue ?
    Thanks,
    Hari

    Harry wrote:
    Team,
    DB = 10.2.0.1
    OS = RHLE 4
    Grid = 10.2.0.1
    I have installed Grid Control on the same machine where my database running. I followed all the steps and its successful. After all, my grid control url is not loading..
    The following URL shows
    http://localhost.localdomain:4889/em
    ERROR:
    503 Service Unavailable
    Servlet error: Service is not initialized correctly. Verify that the repository connection information provided is correct.
    I have started all the process successfully. Could you please anyone help me out on this issue ?
    Thanks,
    HariFrom what machine are you trying to run your browser?
    localhost always means the local machine. It is not routed to some other server.

Maybe you are looking for