Is it possible to control a BSP with function keyu00B4s ?

Good morning,
I´ve got a BSP application.
Now i want to change some things.
I want to controll the BSP page by the function keys F1-F12.
These keys should start some actions like going foreward or backward.
Has so. did this bevore? Can someone help me please ?

hi
good
yes you can control a BSP application using the function key.
go through this link
http://help.sap.com/saphelp_nw2004s/helpdata/en/d7/446f3b19d99b0de10000000a11405a/content.htm
http://help.sap.com/saphelp_nw2004s/helpdata/en/16/ac1e3a0088e042e10000000a11402f/content.htm
thanks
mrutyun

Similar Messages

  • How can i control a slider with a button.

    Is it possible to control a slider with a button? It works like a automatic sliding gate. Is it possible? Where when you open the gate, it will slide slowly.. And can anyone help me with this..

    I was bored...
    The way this usually works is that I think of a simpler implementation once I click the Submit button... 
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice
    Attachments:
    gate.vi ‏15 KB

  • Is it possible to control the parallel port with Lookout 5.0

    I want a simple demo setup on a PC, so I can control the 8 data bits of the parallel port. Example, to use START p/b that would toggle bit 0 and data returned on bit 1.

    It is possible to send bytes to the parallel port using the ASCII object within Lookout. However, it is presently not possible to control the state of the individual bits on the parallel port with Lookout.
    If you need to control the individual bits on a parallel port, consider using LabVIEW. It is much more powerful when programming serial and parallel ports.

  • Controlling screen size with DVI to HDMI

    I have a Mac mini attached to my 50 inch Pioneer plasma via DVI to HDMI cable. I also have an Apple TV, but I brought the Mac, because I can use iTunes to play video playlists (The Apple TV can't do this yet). And for the most part, the Mac/Plasma hookup works excellent. However, once in a while, when I switch HDMI inputs, or the Mac goes to sleep and awakes, the screen gets off 'kilter' (e.g., the desktop overshoots the borders of the TV). The only way to get it back to normal again, is to power everything off and unhook / rehook the DVI to HDMI cable. I would use VGA, but the screen looks clearer, brigher with HDMI, and I the videos through iTunes fill the screen better. I tried the Gefen DVI detective, but that didn't seem to work. Is there anything else I can try ? I see the Res X program listed here in many posts, but not sure if this would help and not sure how to configure to solve issue....Thanks.

    It sounds to me like it is the TV that is failing to hold onto a setting, not the Mac. Can you find evidence of this? There must be various modes controlling the size/aspect ratio of how video is displayed on the plasma. I would check the settings before and after the problem occurs to see if, in fact, the setting is changing under the conditions you describe of either the Mac waking from sleep or the HDMI input on the TV being switched away from and then back to. If you can confirm it is the TV that is behaving this way, then you need to find out why, possibly taking the matter up with Pioneer.

  • Using function key instead of mouse click to control as bsp form

    Hello,
    Is it possible to use functionkeys or a keystroke (the arrowkeys) to control a BSP form?
    Greetings, Edwin

    you can use javascript to capture which key is pressed and act on it. do a google search on "javascript caputre key stroke" and you will find lot of code samples.
    here is one such link
    http://www.geekpedia.com/tutorial138_Get-key-press-event-using-JavaScript.html
    Regards
    Raja

  • Is it possible to process audio tracks with compression, eq, etc....in Logic Express, similar to the way you can do it in Protools?  If so, how do you do it?

    Is it possible to process audio tracks with compression, eq, etc....in Logic Express, similar to the way you can do it in Protools?  If so, how do you do it?

    Hello,
    Yes, add such effects using the insert slots on the track strip.
    Click on the slot, choose your plugin from the list. Double click to bring up its control window to set parameters.
    Alastair.

  • Control VIEW cursor with SUD Dialog

    Hello,
    I've developed a little SUD dialog and sticked into the bottom of VIEW. I the TopArea I've "CurveChart2D".
    With the dialog I want to change the cursor type and mode (see code below)
    If I try to change the cursor from this script (the script is inside the embedded VIEW dialog I get the message of DIAdem "error"
    If I try now to change the cursor with the VIEW buttons I get the message "Schwerwiegender Fehler".
    In fact this little script crash DIAdem. I've to restart.
    If I use the Dialog standalone (not as a part of VIEW), everything works fine.
    I believe the problem is, that you can't change something from an ActiveArea (Dialog in Area : 2) inside an InactiveArea (2D Graph in Area :1)
    But this works (graph change something inside the dialog)
    Sub ViewConnector_EventCursorPosChanged(ByRef This) 'Erzeugter Event-Handler
    'todo change the label and value controls for the different cursor and trim methods
     edtXPosVal.Text = View.ActiveSheet.Cursor.X1
     edtYPosVal.Text = View.ActiveSheet.Cursor.Y1
     edtChnPos.Text =  View.ActiveSheet.Cursor.P1
    End Sub
    So the point is,
    1. how is it possible to control VIEW with an embedded SUD dialog?
    2. The script engine shouldn't crash DIAdem. It should just abort or shouldn't be executable.
    Sub Button1_EventClick(ByRef This) 'Erzeugter Event-Handler
    iTrimMethod = rdbtnTrimMethods.Value
    Dim oSheets
    Dim oChart
    oSheets = View.Sheets
    sSheetName = View.ActiveSheet.Name
            Select Case iTrimMethod
                  Case 0
                   MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                     Set oChart = View.Sheets(View.ActiveSheet.Name).Areas("Area : 1").DisplayObj
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Crosshair"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
                  Case 1
                  MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                      View.ActiveSheet.Areas(1).Active = True
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Band"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
                  Case 2
                  MsgBox View.ActiveSheet.Name & " Index= " & View.ActiveSheet.Index
                      View.ActiveSheet.Areas(1).Active = True
                      View.Sheets(View.ActiveSheet.Name).Cursor.Type = "Crosshair"
                      View.Sheets(View.ActiveSheet.Name).Cursor.Mode = "GraphPoints"
                      View.Refresh
            End Select
    End Sub
    Best regards
    Thomas Plöger
    BASF Catalysts Germany GmbH

    Hallo Mr. Plöger,
    I've double-checked the described behavior. In general, the script code you've developed is OK. But there was a bug in DIAdem that causes the problem. It will be fixed with the DIAdem 2010 service pack that we can provide soon.
    Greetings
    WalterRick

  • Trigger&Ga​te Express VI. Is it possible to control Dialog Box parameters on the frontal panel?

    When you use a Trigger&Gate Express VI the Dialog Box Options permits you to configure the VI. I am asking if it is possible to control Dialog Box parameters with controls on the Frontal Panel. I am especially interested on Start Level Threshold.

    open the VI that the trigger and gate is in. Right click on the express VI and select open front panel. Then find the control that you want and edit the connector pane to be able to input the parameter that you want. Attached is a modified version that I came up with for you.
    Hope this helps you.
    Joe
    Joe.
    "NOTHING IS EVER EASY"
    Attachments:
    example_trigger_and_gate.llb ‏92 KB

  • Is it possible to create purchase order with zero value ?

    Is it possible to create purchase order with zero value ?

    Hi,
    There are two scenarios where the purchase order is created with zero value.
    1. Standard Purchase order with Free tick indicator.
    Whenever we expect a material with free of cost from vendor, we use to put the free indicator in item overview.  This means the material is valuated at zero price irrespective of price control in material master. Quanitiy is updated while receipts.
    Conditions tab in item detail doesnt appear.
    2. Consignment PO.
    While creating a purchase order for consignment, the system doesnt ask us the price and the condition tab doesnt appear in item detail.
    An info record for consignment must be maintained before making the GR.
    Hope i have clarified.  If you want any further clarification. please do reply.

  • Controlling Flash timeline with Javascript

    I have a project I'm taking over from a Flash designer. The
    way he created the project isn't the way I would have done it, and
    I'm trying to salvage what is there. My question: Is it possible to
    control the timeline of an .swf from Javascript?
    Basically, the movie has four different sections, each noted
    with a frame label. I'd like to be able to have the user click on a
    text link in HTML, and using javascript, load the movie in a new
    window, and immediately go to the frame label specified.
    Is this possible?

    Yes, Flash and Javascript can communicate. I would try using
    the toolkit from
    http://weblogs.macromedia.com/flashjavascript/

  • Is it possible to call a BSP on custom Tab created in different BSP

    Hi Group,
       i created a custom tab: ZIBASE in CRMM_ACCOUNTS. where i have to integrate "CRMM_PRD_IOBJECT" BSP. is it possible to load this BSP whenever i click on ZIBASE Tab?
      1) IF it is please let me know the steps i need to take.
      2) If not let me know if i can atleast bring up this BSP: "CRMM_PRD_IOBJECT" in different window by clicking on a custom button in CRMM_ACCOUNTS.
    Please help me resolve this.
    Anu.

    Hi Anu,
      I try to explain clear:
    1 - Check if you have Navigation Link to IVIEW with application CRMM_PRD_IOBJECT.
    2 - If you havent it. Create one.
         - Create a method : SPRO->CRM->Layout of User Interface (People-Centric UI)->Navigation (URL Generation)->Define Method for Navigation.
         - Assing the method with your object type SPRO->CRM->Layout of User Interface (People-Centric UI)->Navigation (URL Generation)->Method for Object Type (Navigation)
    Assing the priority
    Assing implemention type: S Bsp external (Depending of your requirements)
    Assing application: CRMM_PRD_IOBJECT
    Assing view
    Assing ID Page/Service: Value of variable PCD of your iview
         - Assing the method with your crm roles. SPRO->CRM->Layout of User Interface (People-Centric UI)->Navigation (URL Generation)->Assign Object Method to Role
    3- Your ZIBASE tab has a event. With the name of your event go to SPRO->CRM->Layout of User Interface (People-Centric UI)->Application Element->Event
         - Assing the object, method and the field( with guid of your b.object(product)).
    Regards.
    Manuel

  • Is it possible to control a GPIB instrument by the instrument through GPIB

    I'm having a Function generator, it has an in built GPIB, I'm writing an application on oscilloscope which also as GPIB, I have connected the GPIB port of oscilloscope to the FG GPIB port. I tried to send a GPIB command from the oscilloscope to the function generator. I wanted to know whether it is possible to control an instrument from a instrument through GPIB.

    The answer is yes and no. There are three categories of devices:
    talker/listener
    talker/listener/controller
    talker/listener/controller/system controller
    Most instruments are "talker/listen-only". All they can do is act like a device on the GPIB.
    You do run across a few instruments that are "controllers' as well. These instruments can be passed control from the system controller to temporarily control the bus, perhaps to calibrate themselves with a collaborative instrument. To find out if your instrument supports this, you probably need to look in the instrument's user manual.
    The other option is for the device to be a system controller. This means that the device can control the bus at bootup (system controller) and run a host-side API (i.e., NI-48
    8.2) to control an instrument. This sounds like what you are interested in.
    I hope this helps.

  • In BD87  T /c  is it possible to control user based in Comp code...?

    In BD87  T /c  is it possible to control user based in Comp code...?
    Thanks
    Mahi

    BD87 is a transaction to work with IDOCs.
    one IDOC e.g. for vendor master can have several segments with different company codes.
    But you cannot post an IDOC only partially, that is technically not possible and does not make much sense.
    Further the IDOC segment in the table is just one huge field, It does not have single fields like company code.It is a generic field that can keep the segments of any IDOC.
    In my opinion there is no way to control it at company code level.
    In any case you posted it in the wrong forum. BD87 is not a MM transaction.
    Hence, moving it to the Abap Connectivity forum

  • Controlling Hamamatsu Camera with LabVIEW

    I am using a Hamamatsu 1394 ORCA-ERA Camera in order to save microscope images on a PC. Im my lab, we are attempting to automate the process of saving an image from this microscope, and coordinate the time of the image capture with a function performed with LabVIEW. 
    As the 1394 name implies, this camera is connected to our PC using a firewire port. Is it possible to control the function of this camera with LabVIEW through a firewire port? What additional LabVIEW libraries would I need in order to perform this task, if any? Finally, is it possible to use LabVIEW to control a program called micro-manager that we currently use to save images? I know the Hamamatsu API supports both programs, but I am not sure if cross-communication between them is supported. 
    Thank you for reading, any response is greatly appreciated. 

    You say the API supports LabVIEW.  Does it have any example code for you to start with?  Typically driver sets include examples to make it easier to work with their API.
    If it works with that API, I'd see if you can get that to work with taking the images without using the second program.  You can typically use something like system exec on a Windows machine to run programs.  I'm not sure of anything that works similarly for a Mac.  Does micro-manager have an API you can use to make calls to it?

  • How to handle the table control While working with LSMW?

    How to handle the table control While working with LSMW?

    its possible in lsmw,
    Hi,
    LSMW will have a Indicator for headr and itam, i do not remember the correct field, but it will have an indicator, check the fields, there will be a single charecter lenght field, that should be the indicator, and using that we can write the logic.
    check that single charecter field, it that is X that means the header record is processed, and do the items.
    and, this is another way, try this out also
    YOu can do this in "Define Source Structures" step,
    the HEADER is defined first,
    then the DETAIL below the HEADER.
    add the fields to the structures.
    Both should have some common key field
    Please take care that the name of the common field is the same.
    Once you do this it is linked. The you have a header and item corresponding to that header. then run the LSMW as you would.
    Thanks

Maybe you are looking for

  • How do we prevent uncaught exceptions in our web role from causing 502's across our entire service?

    We've recently migrated our web service to Azure. Part of it is running on an Azure Cloud Service. It serves around 5000 requests per minute, lots of dynamic image generation and various types of data feeds. We're currently running two Standard D4 in

  • Get Message ID in Function Module Endpoint

    Hi, I need to retrieve the message ID of an incoming web service call that has a remote function module as its endpoint.  This is a direct call to the web service and does not come via PI.  I have tried the following code with no success:   data:  lo

  • 1st package on AUR: ncmpc++

    Hi, i just submitted my first package to AUR and would be grateful if some experienced people can take a look at it. http://aur.archlinux.org/packages.php?ID=19193 And btw: how do i handle the arch keyword if i expect the package to run on i686 and x

  • User Exit for Transaction V/76

    Hello Gurus, I'm looking for user exit for transaction V/76, Basically I just need to add an additional checking for the value entered in the product hierarchy using a check table (custom table) functionality. However I can't see any user exit that c

  • SharePoint 2013: hover on search result automatically starts downloading document

    Hi All, As soon as I hover on any of the search result item, it automatically triggers download and asks whether to save the document or open it directly. SharePoint 2013 Awaiting for help.