ALV O/p to next Screen

Hi All,
       When i click on perticular field on ALV O/P.It should go to <final Screeen>
Where <final Screen> = VA02->Put SO->enter->Extras->Packing Proposal->Double click on Packing Material-i.e-Detailed data for HU.
Pls help me on this regards.
Thanks,
Singha

may be u can develop BDC on ALV double click
Form user_command .....
  case 'XXXX'.
    when 'VA02'.
write ur BDC code here
   endcase.

Similar Messages

  • Concept of Interactive Report by click on filed displaying next screen

    Hi,
    I want to know the concept of Interactive report i have work on simple and ALV reports, as per my present requirement of vendor outstanding balance  i have made a report as per my requirement i have data in 3 final tables  itab1  itab2   itab3,
    itab1 have all the data related to vendor bills line item wise,    itab2  have the data only as per vendor  means for one vendor one entry adding all the line item amount in one  row,   itab3 have the data as per reconcile account    
    in my requirement  firsti want to display  itab3       and after this  if vendor click on any reconcile account itab2 to be display  only those record as per selected reconcile account further to this  on next screen  if user click on any vendor  system should disply the itab1  record as per selected vendor from second screen.
    regards,
      zafar

    Hi
    call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program       = sy-cprog
          i_callback_user_command  = 'USER_COMMAND' " This is also maintained below just check further down
          is_layout                = gs_layout
          i_callback_pf_status_set = 'SET_PF_STATUS' " This form is maintained below just check further down
          it_fieldcat              = gt_fieldcat[]
          i_save                   = gc_a
        tables
          t_outtab                 = ist_final[].
    form set_pf_status using rt_extab type slis_t_extab.        "#EC CALLED
      set pf-status 'ZPP_NCO_STATUS_PTEI' excluding rt_extab.
    endform.   
    form user_command using p_ucomm    type sy-ucomm            "#EC CALLED
                            wa_selfield type slis_selfield .    "#EC CALLED
      case p_ucomm.
    * When user clicks on the Download button
        when '&DOWNLOAD'. " after you double click check the sy-ucomm (it is ONLY to the best of my knowledge )
    " again  Use The ALV FM or continue with your coding here
    " wa_selfield  contains the Line along with the contents of values of First Tab you can check them in Debug.
    Similary continue with Third Internal Table
    endform.

  • Cannot log in to Nationwide internet banking in Firefox. I get the front page but Login says internet banking is not working. Next screen says it's ok and sends you back to the first screen, which says it isn't. Works throughInternet explorer

    Question
    Cannot log in to Nationwide internet banking. I get the front page but Login says internet banking is not working. Next screen says it's ok and sends you back to the first screen, which says it isn't. Works throughInternet explorer

    That issue can be caused by corrupted cookies.
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • Two ALV Grids in a single screen are overlapping eachother

    Hi,
    I have created two ALV grids in a single screen. I have used seperate containers for them.
    But on executing them , both the ALV grids are overlapping eachother.
    Please give me a solution.

    Hi,
      IF w_custom_container IS INITIAL.
    Creating Object for the Custom Container.
        CREATE OBJECT w_custom_container
          EXPORTING
            container_name              = w_container
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e054.  "CNTL ERROR
          WHEN 2.
            MESSAGE e055.  "CNTL SYSTEM ERROR
          WHEN 3.
            MESSAGE e056.  "CREATE ERROR
          WHEN 4.
            MESSAGE e057.  "LIFETIME ERROR
          WHEN 5.
            MESSAGE e058.  "LIFETIME DYNPRO DYNPRO LINK
        ENDCASE.
    Creating object for the Splitter Container.
        CREATE OBJECT w_split_container
          EXPORTING
            parent            = w_custom_container
            orientation       = 0
            sash_position     = 30
            with_border       = 2
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e054. "CNTL_ERROR
          WHEN 2.
            MESSAGE e055. "CNTL_SYSTEM_ERROR
        ENDCASE.
    Creating Grid Control.
        CREATE OBJECT w_grid1
          EXPORTING
            i_parent = w_split_container->top_left_container.
        CREATE OBJECT w_grid2
          EXPORTING
            i_parent = w_split_container->bottom_right_container.
    Building field catalog for ALV.
    Fieldcat for the Detail Record.
        PERFORM build_fieldcat        USING:  c_1 c_code c_output c_check
                                              c_comcode c_olength,
                                              c_2 c_fileno c_output c_check
                                              c_filenum c_olength,
                                              c_3 c_dedcod c_output c_check
                                              c_dedcode c_olength,
                                              c_4 c_dedfac c_output c_check
                                              c_dedf c_olength.
    FieldCatlog for the Error Records.
        PERFORM build_fieldcat_error  USING:  c_1 c_pernr c_error c_check
                                              c_person c_olength,
                                              c_2 c_desc c_error c_check
                                              c_descp c_olength.
    ALV Display.
        CALL METHOD w_grid1->set_table_for_first_display
    EXPORTING
       i_buffer_active               =
       i_bypassing_buffer            =
       i_consistency_check           =
       i_structure_name              =
       is_variant                    =
       i_save                        =
       i_default                     = 'X'
       is_layout                     =
       is_print                      =
       it_special_groups             =
       it_toolbar_excluding          =
       it_hyperlink                  =
       it_alv_graphics               =
       it_except_qinfo               =
       ir_salv_adapter               =
          CHANGING
            it_outtab                     = t_error
            it_fieldcatalog               = t_fieldcat_error
       it_sort                       =
       it_filter                     =
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e076. "invalid parameter combination
          WHEN 2.
            MESSAGE e001. "program error
          WHEN 3.
            MESSAGE e078. "too many lines
        ENDCASE.
        CALL METHOD w_grid2->set_table_for_first_display
    EXPORTING
       i_buffer_active               =
       i_bypassing_buffer            =
       i_consistency_check           =
       i_structure_name              =
       is_variant                    =
       i_save                        =
       i_default                     = 'X'
       is_layout                     =
       is_print                      =
       it_special_groups             =
       it_toolbar_excluding          =
       it_hyperlink                  =
       it_alv_graphics               =
       it_except_qinfo               =
       ir_salv_adapter               =
          CHANGING
            it_outtab                     = t_output
            it_fieldcatalog               = t_fieldcat
       it_sort                       =
       it_filter                     =
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e076. "invalid parameter combination
          WHEN 2.
            MESSAGE e001. "program error
          WHEN 3.
            MESSAGE e078. "too many lines
        ENDCASE.
      ELSE.
        CALL METHOD w_grid1->refresh_table_display
          EXPORTING
            i_soft_refresh = 'X'.
        CALL METHOD w_grid2->refresh_table_display
          EXPORTING
            i_soft_refresh = 'X'.
      ENDIF.
    Hope it Helps,
    Jayant Sahu.

  • Is there a way for Drag & Drop answers to populate next screen?

    I'm working on a project in Captivate 7 where the user is filling out a table (1 row, 3 columns, 9 possible correct answer combinations) using drag and drop words. The user will ultimately build a table with 3 rows and 3 columns, doing 1 row at a time per screen.  I would like the user's correct answers to the rows they have already completed correctly to appear on each successive screen (but not for the entire rest of the project, just the following few screens). I have tried to get this working every which way and I can't seem to make it happen.
    The closest I have gotten is to use the "accept" panel to set each correct answer to assign its own value to a variable placed in a text caption on the following slide. However, that seems to trigger an auto-submit (I have the global "auto submit correct answers" turned off) so that the first item the user places correctly in the table advances them to the next slide even though there are still 2 more cells of the table to complete.

    Here's a shot of the intiial screen:
    As you can see, there are multiple correct combinations of answers. (Users will be children, so it does need to be very user-friendly with the ability to undo/reset answers.) In the word bank are 3 correct variable items and 6 correct values (I have it set so that only correct combinations of variables and values will be accepted as correct, so "lemonade" will never be a correct value for "age of seller", for example).
    Here's the next screen which I have made fill from selections from previous via an "on accept" advanced action (show a text caption unique to that answer and location):
    The problem with this advanced action solution is that if the user makes a selection in the first screen, then gets it partially wrong or for some other reason resets the words back to the bank, those text captions on the next screen still have been shown and will stick around, thus:
    Every solution I've attempted has had some fatal flaw in the end. What I really need to happen is a conditional action that basically says "If the contents of drop target X = drag source Y, then set VarA [on screen 2] to $text$." For example, "If the contents of drop target [Variables Cell] = Text Caption timeofday, then set $Var1$ to "Time of Day".
    I am about to throw in the towel here and just have students type in words to text boxes (these are mainly disadvantaged students I work with, so their typing skills are not great) just to utilize being able to make a user-generated variable out of text box entries.

  • How to populate the next screen based on the previous screen table control

    Hi Experts,
            Is this possible to generate the next screen values based on the table control values in previous screen.
    My Requirement is
    In my First screen i m having 5-7 regional offices in table control and also amount field for each regional offices.(amount field is editable)
    User has to enter amount field for Regional office..based on the amount field i need to process the next screen. For Ex if user is entering  amount for 3 regional offices out of 7 regional offices then i need to get the screen for the 3 regional offices..
    Pls suggest me how to do this..
    Regards,
    Zakir

    Hi Zakir,
    Do you have any button for calling the second screen after entering amount in the first table control screen or you have to call the screen on pressing enter on the table control?
    You will have to handle it in the PAI of the table control loop.Get data entered in the table control in your internal table of table control.You can prepare the data passed to the next screen from this internal table. Fill the second screen elements and Use CALL SCREEN XXX. XXX is your second screen no.
    Thanks,
    Pawan

  • In website, Firefox will not go to the next screen. Instead I have to click 'allow'. This is on sites where I never had this problem. I want it back to the way it was.

    On sites that I have been using for many months with no problem, when I click to go to the next screen (like 'continue'), it doesn't go to the screen. I get a bar and have to click 'Allow'. This is happening continuously on screens where it didn't do it before. If it were occasional I wouldn't mind. But it happens all the time. What was changed in Firefox to cause this problem. It has really been a pain paying bills online.

    What is the message to the left of the Allow button? Hopefully with that information we can advise on changes to your settings to resolve the issue.
    You also could supply a URL of a site that has this problem, assuming we don't need an account to check it out.

  • My iphone 3gs is not working properly, when switched on it says 'Update Completed' as though it has just been updated. On the next screen it says to 'Connect to iTunes'. It doesn't, however, connect to iTunes and more often than not just resets itself.

    My iPhone 3gs is not working properly and hasn't been since about September of last year. When switched on (Quite often it won't even turn on) it says 'Update Completed' as though it has just been updated. On the next screen it says to 'Connect to iTunes'. It doesn't, however, connect to iTunes and just resets itself over and over until power is gone. Occasionally after switching on and off a few times it functions normally for a few hours and some times even a couple of days but eventually always turns itself off and goes back to the 'Update Completed' screen. Does anyone know what might be causing this and/or a way of fixing it?

    Morning JordenR,
    Thanks for using Apple Support Communities.
    You can resolve many restore issues using the troubleshooting steps documented here.
    For more information on this, take a look at this article:
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/ts1275
    Best of luck,
    Mario

  • ALV Grid works in normal screen but not in modal

    Hi,
    I'm struggling with an alv control I've created.  I need to have it displayed in a modal dialog window.  It works fine in a "normal" window but when I change the screen to be modal nothing displays.
    Anyone have any ideas or hit this issue before.
    Screen is defined in a function group with a custom control.
    Classes exist for model / view and ws.
    A function module creates classes above and passes a container to the view class which creates an instance of CL_GUI_ALV_GRID.  Function module then executes:
    call screen 100 starting at 5 5.    -  ALV doesn't display
    Call screen 100.                        -  Works fine

    Helps if you populate the custom control after you have called the screen not before !

  • HT201380 Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    It's highly unlikely that the Pages update problem has anything to do with the ARD client update, since the client is not involved in any way with Software Update. I'd suggest asking for assistance with the update problem in the forum appropriate for your version of Mac OS X.
    Regards.

  • Using textfield in screen to navigate to next screen.

    Hi experts,
      I am designing a screen in screen painter. There is a Text field in the screen which is double click enabled. Now i want to use this text field to navigate to next screen when it is double clicked. How to do it. Please help.
    Regards.
    Vaibhav Tiwari.

    Hi,
    In the Flow logic of your screen under the PAI Event in the default module user_command_xxxx INPUT , use case statement to check for the sy-ucomm value for the double-click event and check then check the GET cursor value, if it is the text field(double-clicked enabled textfield), then call whatever screen you want to.
    Reward points if this is useful!
    Thanks,
    Muthu

  • Not able to display PA30 next screen when I say create for a custom info

    i have created a custom infotype, when i run the transaction PA30 to create a record for that in one client the screen is displayed, when i run the transaction in different client and say create, the next screen is not displayed,  remains in the first screen. what could be the reason, how do i slove it.
    Urgent Please..

    It will transport your custom infotype automatically if you assign a transport request number in client1.  I think you did manually in client2 and missed to generate the module pool/screens while using tcode PM01.
    If above case is true then you will have to re-generate the steps for module pool screen(s) with your structure fields.
    Thanks,
    Kiran.
    Reward points are appreciated.

  • Batch-input on F-02, how to know next screen?

    Hi people! I have a program that read a excel file and load data to Sap with F-02. The problem is if in first screen is used PStKy 11 the next screen will be 301, if I use PstKy 31 the next screen will be 302, if I use PstKy 40, the next screen will be 300...How I can do to know the next screen with PstKy?
    Thanks a lot!

    can  you use LSMW
    Object               0100   Financial documents
    Method               0000
    Program Name         RFBIBL00
    Program Type         D   Direct Input

  • HT1595 Trying to connect my new apple tv to the wireless network. When I try to use the remote, the Apple TV doesn't respond (doesn't go to the next screen). Could this be caused by a weak wireless signal?

    Trying to connect my new Apple TV to the wireless network. When I try to use the remote the Apple Tv doesn't respond ( doesn't go to the next screen). Could this be caused by a weak wireless signal?

    It is not properly connected to the network.
    Make sure location is set correctly
    DNS should be on auto (settings - general - network)
    Try ethernet
    Signal strength on device won't account for issues, you would need a network report from istumbler, netstumbler or similar. This will show accurate signal strength along with noise and nearby networks

  • Hi guru,s in reports we give single click on it go to next screen how is it

    hi guru,s in reports we give single click on it go to next screen how is it

    Hi,
    actually when we double click then AT LINE SELECTION event gets triggered in order to navigate to secondary lists by getting value PICK in the sy-ucomm if u want it only for a single click simply keep the hotspot then it behaves single click same as double click
    plzzzzzzzz reward if useful
    my mail id [email protected] feeel free to ask any quiries

Maybe you are looking for