How to enter a transaction by double-clicking output ?

I have an itab with fields vbeln etc etc.
I have a simple list on the output table based on this itab. Now if the user double clicks on this list, he/she should be able to enter VA02 transaction after which if he/she makes changes and save, he/she should be able to come back to the output screen.
Can you please tell me where should I modify reg. this?
Thanks a lot.

Hi
Try this
DATA: BEGIN OF ITAB OCCURS 0,
       VBELN TYPE VBELN,
       MATNR TYPE MATNR,
       NETWR TYPE NETWR,
     END   OF ITAB.
START-OF-SELECTION.
  PERFORM ACTION.
AT LINE-SELECTION.
  SET PARAMETER ID 'AUN' FIELD ITAB-VBELN.
  CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.
*&      Form  action
      text
FORM ACTION.
  IF NOT ITAB[] IS INITIAL.
    LOOP AT ITAB.
      FORMAT HOTSPOT ON.
      WRITE: AT /10 ITAB-VBELN,
                    ITAB-MATNR,
                 39 ITAB-NETWR.
      HIDE ITAB-MATNR.
      FORMAT HOTSPOT OFF.
      AT LAST.
        SUM.
        WRITE: /39 ITAB-MATNR.
      ENDAT.
    ENDLOOP.
  ENDIF.
ENDFORM.                    "ACTION
Max

Similar Messages

  • How to invoke system editor by double click a file(windows)?

    how to invoke system editor by double click a file(windows)?
    Just like that, double click a file named a.doc, windows will open it by word.exe.

    I try that:
    exec("cmd /c start winword \"c:\dir\a b.doc\"");
    like this posting(http://forum.java.sun.com/thread.jspa?forumID=57&threadID=634576 ), and It is ok.
    But now I make a file list with different files, .pdf,.xls,.doc and so on, I wanna double click to open one with its default system editor.
    if no space:
    exec("cmd /c start " + file);
    will invoke the default editor to open it. if space, it can't do it.
    And now I rename all files, replace space to _.

  • How do I change: when I double click on a day to add a new event it defaults to All Day and Busy

    iCal 5.0.2 (1571) Is there any way to change this? I can't do it in preferences.
    This is a real pain. To make an event for a specific time I have to double click again, uncheck "All Day" and then put in the time for the start of the event. Even then, if I put in the start time, the end time remains at 6:30 PM, so I have to change that too.
    If I really do want an All Day event, why does it sometimes default to Busy, rather than always to Free?
    The old iCal was far superior in this regard; double click once on a day and the add an event dialogue box appears, defaulting to a time close to when you were making the event, and, if my memory serves correct observing the preference I set with respect to default length of the event.
    I'm aware that Command N gets me a new Quick Event, its a bit better in that if the event i enter opens the big "add an event dialogue box", it has defaulted to an hour long event. But, if I click on a day, and then hit Command N, the new event is put in Today, and not the day I had selected. It also defaults to All Day, unless I put in a time for the event in the Quick Event box.  Why would I do that when I know I want to enter info into a number of fields, and doing so is easiest from the big dialogue box. If i don't enter a time in Quick Event, or enter a day, I still have to double click the event that was created by Quick Event to open the big dialogue box, and start fresh entering everything.  So, I find Quick Event's implimentation cumbersome, overall ending up with more keystrokes and clicks to enter the details I normally enter, than the old iCal.
    So, if someone knows how to change the double click behaviour back to the old way, or how to get Quick Event to open the dialogue box on the day i have already selected, any help will be appreciated.
    Also, is there some way to get this feedback to Apple? Support SiteMap doesn't show a link for feedback.
    Thanks
    Ian

    I have sort of the exact same problem. Extremely far away from user friendly
    I have an second issue as well: When I hook off all-day it comes up with an 8 hour event!
    And then if I put in a late start hour it pushes end time to next day due to the 8 hour event suggestion.
    All in all this gives a lot of changes just to enter an event.
    Command N
    I learnt from your input to use this fuction. At least that comes up with a one hour event as default.

  • How to do lead select and double click on a row of table simultaniously ?

    Hello All,
    I am creating a freely programmed search help to search Material Number.
    i am displaying the values in normal table ( Not ALV ) on the search help popup.
    My requirement is
    when I select a row and click on OK button the Material number in that row is getting captured ( This is working fine for me)
    At the same time I also want to capture the value when user double cluck on the particular row.
    I am not able to do both on action methods simultaneously as I am getting syntactic error.
    i.e. When I create action method on the event "on_lead_select" and the event "On select"  and try to save Check & activate it throws error.
    Please find the screen shot below.
    Standard webdynpro component WDR_F4_ELEMENTARY was able to achieve this functionality some how, I have debugged it but didn't get the solution

    Hi,
    There is no double click provision. In the table you could change the cell editor of column to LinktoAction UI, then onclick of that you can set the selected value.  And in the component WDR_F4_ELEMENTARY its not a normal table UI but its a CTable UI, you can try creating a CTable and create an Action for onSelect.
    Regards,
    Kiran

  • Iview calling R/3 transaction with double click to call url

    Hello,
    I have create a bespoke transaction that displays EH&S incidents, the user has the option to double a line which calls a web dynpro and displays in a new window. (FM CALL_BROWSER is used to open the URL)
    This functionality works in R/3, if a user double clicks 1 item a new window opens and when he double clicks another item an new window opens as expected.
    However when this action is carried out in the portal using the iView, the first time the user double clicks and item a new window opens, but when another double click is executed, no new window is opened.
    To me this sounds like a setting is missing in the Iview (by the way, this is my first time using iViews, so be gentle) or something is not being cleared.
    any help would be appreciated.
    Regards
    J-J

    Hello James....
    This might sound stupid to you...but just I need to suggest one thing...
    This happens if you double click on a link...it opens a new window...
    now before you double click a new link.....you need to close the earlier window....
    then only new window will be opened....
    well this happened once to me...so i thought to suggest the same to you also...
    but their are minimal changes that this could be the reason.....

  • How to start a function when double-clicked in a JTable

    hi there,
    i got a problem, i want that my JTable reacts when i make a double-click on any row... so that i can start a method that does the things i want to...
    how can i realize that?
    thx anyway
    Errraddicator

    i got a problem, i want that my JTable reacts when i
    make a double-click on any row... so that i can start
    a method that does the things i want to...
    how can i realize that?Easy, just put a mouse listener on it the same way you would a button! In the listener method, you can use
    if ( event.getClickCount()>1 ){
    doWhatever();
    doug

  • How to match an action after double click

    Hi, assume we do submit() within a js double-click listener. How do we associate a bean event/action to this operation ?
    I noticed that submit succeeds and page is refreshed, but I can't see any way to intercept this event as it would come from a real button (with associated action).
    Any suggestion ?

    Nice trick, thanks. I missed the click() delegation to another button.
    I just have an objection: assuming to use a h:commandButton, there is no "visible" attribute to set from page source. So I guess I have to hide it by some js initialization code, right ? Or is there anything else ?

  • How to open a file by double clicking in an RUNNING exe built by LabVIEW

    I am developing an applicationg using LabVIEW. But found some difficulties.
    This is an editor, and I link this app to a certain file format.
    So I hope when I double click this file, My exe will load it. This could be done by read application command line.
    But if my exe is runing already, I double click the file, I could not get the latest command line information.
    When the exe is running, How doule click the file to send some sort of info the this exe so the exe could open a new one.
    How to do this in LabIVEW?
    Solved!
    Go to Solution.

    Hi,
    You have to make the Vi reentrant so that it does not share the same memory location:
    Regards,
    Even
    Certified LabVIEW Associate Developer
    Automated Test Developer
    Topro AS
    Norway

  • How to zoom into movieclip with double click and pan around?

    i found a tutorial to make a clickable map using timeline animations.
    i'd like to nest the original timeline into a movieclip and then allow users to double click to zoom in 200% and then double click again to zoom back to 100%. Id' also like to be able to pan around dragging while zoomed in.
    any tutorial link for this?

    lrosenth, Thanks for your reply!
    when I received the notification of AVPageViewDidChange
    How can I get the Scaling rate?

  • How to get the event on double click the Matrix(#)?

    There is a <b>#</b> on Matrix(0,0) in most SBO Form, I want to double click it, then it will respond with a dialog box, I don't know how to do in VB6, who have some code sample? thank you.

    Hello Adele,
       No, I did not add a breakpoink in my coding, I try to wake up the double click events, but as below sample, I also remove the <b>Case et_CLICK:</b>, could not get the double clikc event either, I don't know why?
      Select Case pVal.EventType
                '// every event will open a message box with the event
                '// name and the form UID how sent it
    <b>            Case et_CLICK:
                '// Specifies Mouse Up on editable item.
                    SBO_Application.MessageBox _
                    "An et_CLICK has been sent by a form with the unique ID: " + FormUID</b>
                Case et_DOUBLE_CLICK:
                '// Specifies Mouse Up on editable item in time interval define by
                '// SAP Business One as double-click.
                    SBO_Application.MessageBox _
                    "An et_DOUBLE_CLICK has been sent by a form with the unique ID: " + FormUID

  • How to enter the transaction data in Environmental Compliance 3.0

    Hello Experts,
    Is it possible to enter the transaction data like Emissions for a specific material / Plant manually in EC 3.0 ?
    I need this to configure the reports. Kindly guide me though the path if it is possible.
    Thanks in advance
    Srinivas

    Hello Srinivasa,
    Yes it is possible to maintain emission data - manually.
    Navigate to Emission Management --- Select the facility object for which you want to assign emissions --- select Emission Tab page and -
    Create emission Information. Ensure before entering manual emission data, assign Consumption Maerials - Otherwise you can not maintain data.
    To create materials navigate to Master Data Management and select materials
    Thanks
    Jayakumar

  • How to get bigger versions of double-clicked photos?

    double-clicking a photo opens an image which is not exactly big.
    Is there any way to make them open bigger than they currently open up ?
    Thanks!

    Well, Snappir, there are a few ways to try this:
    there's *'fancy zoom'* and 'rollover'. If you search the forum here you'll find the threads that discuss these methods.
    You could also create a blank page, put the large version of your photo on it. (Don't let this page show in the navigation menu, but title it anyway).
    Then, back on the page with the small images, select your photo and in the Inspector, Hyperlink tab: enable this photo as a hyperlink and link it to 'one of my pages' and select the large photo page you just created. It's a good idea to create a text box 'back to photos' and link it back to the original photo page.
    Note: this *+doesn't work+* if you've put your original photos onto an iWeb +photo page+, only if you've added them as separate elements to your first page. You could see my example here:
    http://www.stjamesanglicanchurch.ca/StainedGlassWindows.html
    Just one suggestion
    Elizabeth

  • Call Transaction in ALV Tree Display on Double Click

    Hi Experts,
    How can i call any Transaction on Double clicking  a field in ALV Tree?
    I'm able to call the transaction when Double clicked a field but it is not reading the value of the field on which i double click. It calls the transaction skipping the first screen with always the same value of the field.
          E.g : Whether i click on Purchase order no.  450000010 or 450000003 it displays the purchase order 4500000010 after it goes to ME23N transaction skipping the first screen.
            I am Trying Method ITEM_DOUBLE_CLICK of Class CL_GUI_COLUMN_TREE
    by passing the parameter NODE_KEY.But it's not working.
    Thanks & Regards,
    Vinit Ranjan

    hi
    (also check u have refresh the field)
    Check the demo program,In this double click the data fields it will display some field in screen,You can check it
    BCALV_GRID_DND_TREE
    Thanks
    Edited by: dharma raj on Jun 17, 2009 7:41 PM

  • Double Click ALV record to open transaction with out setting  parameter Id.

    In an  ALV  GRID report I want to navigate to the transaction by double clicking on a value in the ALV and skip the first screen.
    But if  paramater Id is not given by SAP then how to do this task....The transaction which should be opened for the respective value after double click are VL33N HU03 VTRK VA03 ME23N.

    hi if no parameter id is there than use recording and use it.
    use call transaction XXX using bdcdata mode 'E'.
    like this.
    reward if useful.

  • If I got one of the free books off of Itunes, how do I read it? I double click and it does nothing. Is it only to hook up to Iphones or Ipads?

    I got one of the free books of Itunes and I'm wondering how I read it.  I double click and nothing happens.  Is it only for Ipads and Iphones??

    If you have one of the public-domain books provided by Project Gutenberg (these are books published many years ago and which have therefore fallen out of copyright, such as the Dickens and Jane Austin books), you should be able to open it using Calibre:
    http://calibre-ebook.com/
    or one of the other applications that can open ePub format. Launch the app and point it to the book file, which will be in your iTunes folder, in iTunes Music (Media) -> Books.
    Regards.

Maybe you are looking for

  • Payment block type from  R  to  A  in MIRO when QA fails

    Hi all, After maintaining all the settings , i am able to block the payment in MIRO if QA fails. but here the block type is 'R' which is 'Invoice verification'. but user want some other block type like 'A' as block type 'R' is used for some other rea

  • Error in "Withholding tax report" (?)

    Hi, I've a problem in startdard report "Withholding tax report"... not correct Amount. I run this report with this parameters: http://img123.imageshack.us/img123/6303/24618497sr6.gif The result: http://img161.imageshack.us/img161/4273/74267634ep8.gif

  • Deleting e-mail boxes in the messaging folder

    Hi, i hope someone can help, is it possible to remove e-mail boxes thet i have created in the messaging folder of my n81 8gb. While setting up my e-mail i somehow managed to open 3 mail boxes in the messaging folder, the one i ment, "aol" plus two ot

  • How long should "Disk Repair" take?

    I have a G Raid 4 T external drive that I recently had shipped back from my editor. She did not use the original packing box and I fear the drive could be damaged. It starts up okay and doesn't make any suspicious noises - but it doesn't mount. I ran

  • I keep having a youtube video come up on Facebook when I open ithe APP.

    I have the FaceBook app installed on my iPad (phone app) & today everthing I go into it a YouTube video comes up for me to play. I HAVE NOT PLAYED IT. Does anyone have any idea what is happenind? This just started today. Ia ir pssible that this could