ALV table issue after patching.

Hi Experts.
In our applications, there is a button. On click of that button an ALV list will be displayed in the POP-UP.
First time when we click the button this works fine. After that the ALV list does not get displayed in the POU-UP.
Every time we have to re login and do the process.
Note: This is happening only after patching.
Thanks.

Hi i have attached the piece of code. This code is written in DOINIT Method of the view in which the ALV is embedded. Everytime the table lt_locations will have the data which needs to be displayed in the ALV. The ALV gets displayed only first time and next time if we click the button, the ALV list is not displayed.
DATA lo_nd_srlocations TYPE REF TO if_wd_context_node.
DATA lo_el_srlocations TYPE REF TO if_wd_context_element.
  DATA ls_srlocations    TYPE wd_this->element_srlocations.
  DATA it_srlocations    TYPE wd_this->elements_srlocations.
  DATA lt_srlocations    TYPE STANDARD TABLE OF zxr_locations.
  navigate from <CONTEXT> to <SRLOCATIONS> via lead selection
  lo_nd_srlocations = wd_context->get_child_node( name = wd_this->wdctx_srlocations ).
  get element via lead selection
lo_el_srlocations = lo_nd_srlocations->get_element(  ).
SELECT  * FROM zxr_locations INTO TABLE lt_srlocations.
  DATA lo_nd_locations TYPE REF TO if_wd_context_node.
DATA lo_el_locations TYPE REF TO if_wd_context_element.
DATA ls_locations TYPE wd_this->element_locations.
    DATA lt_locations TYPE wd_this->elements_locations.
navigate from <CONTEXT> to <LOCATIONS> via lead selection
  lo_nd_locations = wd_context->get_child_node( name = wd_this->wdctx_locations ).
get all declared attributes
  lo_nd_locations->get_static_attributes_table(
    IMPORTING
      table = lt_locations ).
lo_nd_srlocations->bind_table( lt_locations ).
lo_nd_srlocations->bind_table( lt_srlocations ).
  DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.
  lo_cmp_usage =   wd_this->wd_cpuse_alv_srlocations( ).
  IF lo_cmp_usage->has_active_component( ) IS INITIAL.
    lo_cmp_usage->create_component( ).
  ENDIF.
  DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
  lo_interfacecontroller =   wd_this->wd_cpifc_alv_srlocations( ).
  DATA lo_value TYPE REF TO cl_salv_wd_config_table.
  lo_value = lo_interfacecontroller->get_model(
data lr_column_settings type REF TO if_salv_wd_column_settings.
*data lr_table_settings type ref to if_salv_wd_table_settings.
lr_column_settings ?= lo_value.
*lr_table_settings ?= lo_value.
lr_column_settings->delete_column( 'MANDT' ).

Similar Messages

  • In webdynpro for ABAP  alv table issue

    hello gurus,
                      i am new for webdynpro for ABAP.i strucked at one point at designing time.anybody  could you suggest me on this.
    thanks in advance.
    let me explain my scenario first.
    in my webdynpro for ABAP developement i have one alv table having ten fields.i am featching the data for eight fields from one Ztabale and updating , for rest of two fields we need to fill after displaying output using the respective F4 help. Right now these two fields are in input editable mode.now i am getting the values successfully from F4 help and at the same time it is allowing MANUAL ENTRIES also but as per my requirement it  should not allow  any manual entries . for this i have made these two fields are in readonly mode as like as rest of fields to avoid the MANUAL ENTRIES  but at this time i didnot get any F4 helpfor those two fields.
    so how can i achive my goal in this thing could any one suggest me.
    my final conclusion is we need to get only F4 help values into those two fields . it should not allow any manual values at any point of time.
    best regards,
    babu

    ya hi  harshit,
          my self also used same code in my action part . here i have one table with four fields  carrid , connid , fldate , price.
    for carrid i have created freely programmed search help.but if it is in display mode there is no F4 help in enable mode.
    in context for attribute carrid
    DATA lo_nd_flight TYPE REF TO if_wd_context_node.
      DATA lo_el_flight TYPE REF TO if_wd_context_element.
      DATA ls_flight TYPE wd_this->element_flight.
      DATA lt_flight TYPE wd_this->elements_flight.
    navigate from <CONTEXT> to <FLIGHT> via lead selection
      lo_nd_flight = wd_context->get_child_node( name = wd_this->wdctx_flight ).
      select connid fldate price from sflight into CORRESPONDING FIELDS OF TABLE
        lt_flight UP TO 20 ROWS.
    @TODO handle non existant child
    IF lo_nd_flight IS INITIAL.
    ENDIF.
    get element via lead selection
    lo_el_flight = lo_nd_flight->get_element( ).
    alternative access  via index
    lo_el_flight = lo_nd_flight->get_element( index = 1 ).
    @TODO handle not set lead selection
    IF lo_el_flight IS INITIAL.
    ENDIF.
    get all declared attributes
    lo_el_flight->get_static_attributes(
       IMPORTING
         static_attributes = ls_flight ).
    CALL METHOD lo_nd_flight->bind_table
      EXPORTING
        new_items            = lt_flight
       set_initial_elements = ABAP_TRUE
       index                =
    DATA: lo_cmp_usage TYPE REF TO if_wd_component_usage.
    DATA: lo_interfacecontroller TYPE REF TO iwci_salv_wd_table.
        instantiate ALV component usage if necessary
      lo_cmp_usage = wd_this->wd_cpuse_alv( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
        pass reference to data node to instance of ALV usage
      lo_interfacecontroller = wd_this->wd_cpifc_alv( ).
      lo_interfacecontroller->set_data( r_node_data = lo_nd_flight ).
    Configure ALV
      DATA lr_config TYPE REF TO cl_salv_wd_config_table.
      lr_config = lo_interfacecontroller->get_model( ).
    **declerations
      DATA: lt_columns TYPE salv_wd_t_column_ref,
            ls_columns TYPE salv_wd_s_column_ref,
            lr_input TYPE REF TO cl_salv_wd_uie_input_field,
            name TYPE string,
            lt_node_info TYPE wdr_context_attr_info_map,
            ls_node_info TYPE wdr_context_attribute_info,
            lv_tabix TYPE sy-tabix,
            lr_info TYPE REF TO if_wd_context_node_info.
      TYPES: BEGIN OF ty_name,
              name TYPE string,
             END OF ty_name.
      DATA: lt_name TYPE TABLE OF ty_name,
            ls_name TYPE ty_name.
    **for getting node info
    *Get the context node information
      lr_info = lo_nd_flight->get_node_info( ).
      lt_node_info = lr_info->get_attributes( ).
      LOOP AT lt_node_info INTO ls_node_info.
        CASE ls_node_info-name.
          WHEN 'CARRID'.
            ls_name-name = ls_node_info-name.
            APPEND ls_name TO lt_name.
         WHEN 'REGIONALOFFICER'.
           ls_name-name = ls_node_info-name.
           APPEND ls_name TO lt_name.
         WHEN 'INSPECTORNAME'.
           ls_name-name = ls_node_info-name.
           APPEND ls_name TO lt_name.
        ENDCASE.
      ENDLOOP.
    *Logic for  Table Horizontal Scrolling
      lr_config->if_salv_wd_table_settings~set_visible_row_count( 13 ).
      "  lr_config->if_salv_wd_table_settings~set_width( '1085' ).
      lr_config->if_salv_wd_table_settings~set_width( '100%' ).
      lr_config->if_salv_wd_table_settings~set_scrollable_col_count( 8 ).
      "  lr_config->if_salv_wd_table_settings~set_fixed_table_layout( abap_true ).
      lr_config->if_salv_wd_table_settings~set_first_visible_scroll_col( 'CARRID' ).
      lr_config->if_salv_wd_table_settings~set_cell_action_event_enabled( abap_true ).
    Set the table editable .
      DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.
      lr_table_settings ?= lr_config.
      lr_table_settings->set_read_only( abap_false ).
      lr_table_settings->set_read_only( abap_true ).
      DATA: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
            lr_column TYPE REF TO cl_salv_wd_column.
    DATA: lt_string TYPE STANDARD TABLE OF string,
            ld_string TYPE string,
            ld_int TYPE i,
            lv_index TYPE i.
    Make few columns editable and attach inputfield, if permitted.
        DATA lr_input_field TYPE REF TO cl_salv_wd_uie_input_field.
        CLEAR lt_string.
        APPEND 'CARRID' TO lt_string.
        LOOP AT lt_string INTO ld_string.
          lr_column_settings ?= lr_config.
          lr_column = lr_column_settings->get_column( ld_string ).
          CREATE OBJECT lr_input_field
            EXPORTING
              value_fieldname = ld_string.
          lr_input_field->set_read_only( abap_true ).
          lr_column->set_cell_editor( lr_input_field ).
        ENDLOOP.
        CLEAR lt_string.

  • Column name in ALV table dissapeared after new language package installatio

    Hi,
    We have a custom field in an ALV table in SAP system. In english everything was just fine with our custom field.
    But when we installed a new languaged the column name dissapeared.
    My question is:
    Where does the ALV get the column name from? Is there a standard method which I can search for which is used for this purpose in ALV?
    regards
    Baran

    the field name comes from data element FIELD name you have specified when creating ur custom field..
    try to change that field name for that field..
    hope it works
    award points if helpful

  • CTI OS Toolkit issue after patching CTI OS 7.5.8

    Hi all,
    We are setting up the UCCE 7.5.1, and we have patched the system with ICM 7.5.8 and CTI OS
    7.5.8. We have also patched the agents' PC with CTI OS 7.5.8.
    Our developer has actually customized the CTI OS Toolkit softphone, to intergrate it with
    a 3rd party application. It was running fine before patching the agents' PC with CTI OS
    7.5.8. The customized CTI OS Toolkit could start up after the agents' PCs were patched.
    When I tried to uninstalled CTI OS 7.5.8 from the PCs, then it works fine again. What
    could be the problem here? Are there any additional steps that I need to take note after
    patching CTI OS 7.5.8?
    I also noticed that after running the software patch, the CTI OS Softphone would be
    replaced.
    Appreciate any help and advice on this.
    Thanks & Regards,
    Eric

    The client patches are meant to be applied to the out of the box software. How is the patch supposed to know how to update your custom software? If you are trying to apply the patch onto a customized desktop then you are overwriting or breaking that customization. Your developer needs to apply the new software release to his custom code and provide a patch for you. The previous release remains backwards compatible so there's no rush.

  • Undesireable Table Behavior After Patch 14582286 Installation

    I'm running our application on a stand-alone instance of WebLogic with the ADF runtime.  Here is a printout of of the opatch lsinventory:
    [code]
    Oracle Interim Patch Installer version 11.1.0.9.0
    Copyright (c) 2011, Oracle Corporation.  All rights reserved.
    Oracle Home       : /u01/Oracle/Middleware/oracle_common
    Central Inventory : /u01/Oracle/app/oraInventory
       from           : /u01/Oracle/Middleware/oracle_common//oraInst.loc
    OPatch version    : 11.1.0.9.0
    OUI version       : 11.1.0.9.0
    OUI location      : /u01/Oracle/Middleware/oracle_common//oui
    Log file location : /u01/Oracle/Middleware/oracle_common/cfgtoollogs/opatch/opatch2013-10-24_09-42-39AM_1.log
    Patch history file: /u01/Oracle/Middleware/oracle_common/cfgtoollogs/opatch/opatch_history.txt
    OPatch detects the Middleware Home as "/u01/Oracle/Middleware"
    Lsinventory Output file location : /u01/Oracle/Middleware/oracle_common/cfgtooll
    Installed Top-level Products (1):
    Oracle Application Developer 11g                                     11.1.1.6.0
    There are 1 products installed in this Oracle Home.
    Interim patches (1) :
    Patch  14582286     : applied on Tue Sep 17 14:29:09 EDT 2013
    Unique Patch ID:  15506681
       Created on 19 Sep 2012, 10:02:46 hrs PST8PDT
       Bugs fixed:
         14582286, 13656274
    OPatch succeeded.
    [/code]
    Before installing the patch, when saving items in a treeTable or table, the position of the table would remain after the save.  Now, after applying the patch, anytime a save is performed, the table repositions automatically to the top row.  This is not what we want to happen.  Also I should note that we are only using ADF Faces with EJB; we are not using the full ADF stack (no business components).
    Is this known behavior for patch 14582286?  How can we correct this?
    Thanks,
    John

    Frank,
    Thanks for the reply.  After the save/update, the selected row remains.  Meaning, we can select a row, update a field in that row, then save.  At that point, the table is repositioned to the very top.  However, I can scroll back down to find that the row that was updated is still selected.  I tried putting displayRow="selected" on the table component, but this did not seem to help.
    I have not contacted support, as I would not have a test case to provide (this is an application that requires our database, and possibly the unique combination of patches applied to our server).
    There is also another table in our application that is fairly simple, where we are not manually manipulating any row keys, and the same behavior is occurring.
    If we did not previously have to take a snapshot of the selected rowkeys, what might have changed in that patch to make that a requirement now?
    Thanks,
    John

  • Issue after patching after SQL instance with SP3

    Hi All,
    I have recently patched one of 2008 SQL instance in my environment with SP3 and after applying the patch I can see that the version got changed to 10.0.5500, but when checked summary logs I'm seeing below message. Could some one please let me know what are
    the steps to be followed to get this issues fixed.
    I have checked few things from my end and was able to see that uninstalling the sp3 which is applied should fix this and roll it  back to its previous version which was sp2, but what I'm concerned is the missing .msi file. How can i fix this missing
    msi file thing?
    Error Message logged in summary.txt file
    Overall summary:
      Final result:                  The patch installer has failed to update the shared features. To determine the reason for failure, review the log files.
      Exit code (Decimal):           -2068709373
      Exit facility code:            1202
      Exit error code:               3
      Exit message:                  The cached patch file "C:\Windows\Installer\6c1c7e81.msp" is missing. The original file for this cached file
    is
    "sql_engine_core_inst.msp", which can be installed from "Service Pack 3 for SQL Server 2008 (KB2546951) (64-bit)", version 10.3.5500.0.  For more information about how
    to resolve this problem, see “Steps to resolve missing media issue with SQL Server 2008” (http://go.microsoft.com/fwlink/?LinkId=144387) in the Microsoft Knowledge
    Base.
      Start time:                    2015-03-21 12:31:47
      End time:                      2015-03-21 12:32:39
      Requested action:              Patch
    Thanks in Advance, Kranthi

    Hi All,
    Got the fix for this issue from the below video which is very much in detail.
    http://blogs.msdn.com/b/sqlserverfaq/archive/2012/05/08/missing-msi-s-msp-s-error-during-sql-server-patching.aspx

  • Digitial Signature issues after patching Acrobat 9.5 to 9.5.1.

    After installing the security patch on Acrobat 9.5 Digital signing is not working correctly.  Users are getting error - Bad Format.  Machine that was not patched works fine with a imported digital signature.  Is there a fix for this problem. 

    While that is a good answer to my question; it is not a good solution to my situation since it is a corporate license that has to be reinstalled by our IT department. That is a very cumbersome process and puts me, as an end-user testing this new product, in a poor situation and effectively shuts down my production for an unspecified time frame when the trial expires.

  • Row selection in adf table issue after commit or rollback

    Using jdev 11g (11.1.1.62)
    I have a adf table with multi select enabled. There is a child table bounded at BC4J level via a VL
    On the rowSelectionListener I attached a bean method. This bean method bascially finds the selected row from UI and then based on it query the child vo again and then finally refreshes the child table.
    This works fine as expected.
    However, what happens is when the Cancel button is called on UI which is bound to a rollback action in the AMImpl then the UI refreshes. And the master table still shows the previously selected row but the child VO shows the rows of the first master VO row rather the selected one.
    How to fix this? Further as old row is already selected in the master table so reclicking on the same row does nothing,

    just to update after the rollback is called in the cancel button i wrote following code which does not change the row focus to the first row
    DCBindingContainer bc =
    (DCBindingContainer)BindingUtils.getBindingContext().getCurrentBindingsEntry();
    DCIteratorBinding profItr =
    bc.findIteratorBinding("ProfileSearchInstIterator");
    Row cRow = profItr.getRowAtRangeIndex(0);
    if(cRow != null){
    System.out.println("Current row is not null so fixed ");
    profItr.setCurrentRowIndexInRange(0);
    RowKeySetImpl rks = new RowKeySetImpl();
    ArrayList keyList = new ArrayList();
    keyList.add(cRow.getKey());
    rks.add(keyList);
    profileTable.setSelectedRowKeys(rks);
    AdfFacesContext.getCurrentInstance().addPartialTarget(profileTable);
    }

  • Solaris 10 on Intel DP35DP with E-SATA issue after patching

    My trusty Intel DP35DP, sata controller set to to AHCI, has 5 sata and 1 E-SATA port.
    I've ignored it for a while, meaning haven't patched it. It currently has a Sata rpool
    disk and a second Sata disk for data. While doing some cleanup, I attached an external
    E-SATA 2TB disk, carved off 200G and added another zpool. worked great.
    I was looking forwarded to patching, so setup a new BE, patched it, activated it
    and booted it. Solaris griped that it couldn't find the E-SATA disk. Rolled back to
    the previous BE. tweaked a few things in the new patched env, no go. roll back
    again.
    The kernel patch the E-SATA is working on is 141445-09. pca reports I need
    to apply 142910-17 and 144489-09. When I boot to that environment, I can
    no longer see or enumerate the E-SATA disk?
    Ideas?

    My trusty Intel DP35DP, sata controller set to to AHCI, has 5 sata and 1 E-SATA port.
    I've ignored it for a while, meaning haven't patched it. It currently has a Sata rpool
    disk and a second Sata disk for data. While doing some cleanup, I attached an external
    E-SATA 2TB disk, carved off 200G and added another zpool. worked great.
    I was looking forwarded to patching, so setup a new BE, patched it, activated it
    and booted it. Solaris griped that it couldn't find the E-SATA disk. Rolled back to
    the previous BE. tweaked a few things in the new patched env, no go. roll back
    again.
    The kernel patch the E-SATA is working on is 141445-09. pca reports I need
    to apply 142910-17 and 144489-09. When I boot to that environment, I can
    no longer see or enumerate the E-SATA disk?
    Ideas?

  • All adapter issue after patch XI SP16

    Hi,
    I did patch the following by SDM from SP15 -> SP16
    SAPBASIS16_0
    SAPXIAF16P_2
    SAPXIAFC16P_5
    SAPXICONS16_0
    SAPXIPCK16_0
    SAPXITOOL16P_3
    and when i get to adapter monitoring(http://sapxid:50000/mdt/amtServlet) , i can not see all of adapter only except for JPR.
    and actually adapters are not running
    visual administrator, i can see XI all of Adapters started
    does anyone know?

    Hi,
    just have a look at question 3 (adapters section)
    on the XI FAQ page and this will solve your problem
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions">XI FAQ - Frequently Asked Questions</a>

  • Roles issue after patched PCK SP14

    I udpated pck from sp9 to sp14, now I want to Assign roles in Security Provider, but function is disabled, How to enable it? I installed successfully last time. but at that time, sap team in my company installed both a ABAP system and java system. they can assign the role using a gui tool without using visual admin. now the system is all java -based. it must use visual admin to assign roles. but how to do it? who help me?
    Message was edited by: Spring Tang

    it is so easy, but i ignore it:), there is a toolbar button on the upper side, click it to change the state to Midify state

  • How to process Line Selection on ALV Table in ABAP WebDynpro

    Hi there,
    I have a view with an ALV table whose context node retrieves its data from a Service Call for a method.
    The method provides certain data of a database table which the ALV displays.
    Now I would like to be able to select one row of that ALV table and after pressing a button or doubleclicking on the row or whatever a different view (as for me it is also ok on the same view) should appear to display the details of that selection.
    I only need to know how to retrieve the selected data.
    Or its index within the internal table.
    I am already looking for hours for a useful thread and actually there is one which obviously is about a similar issue apart from the multiple selection part: 
    How to process multiple row selection in ALV table in Wendynpro ABAP? Help!
    but i am afraid that i don't understand it. Or at least I misunderstand it since it does not work with me.
    The system example mentioned in the thread does not help me either because it somehow does not correspond to my needs, does it?
    It would be GREAT if somebody could help me with that. Please keep it simple for I am not an expert in webdynpro yet (obviously ^^) and also please explain in detail what I have to do with the context nodes since I am not sure whether the selection is stored in my already existing node or whether I need a special one for that.
    Thanks!!
    christina

    Hi Christina,
    If you just want to get one column data of the line that user clicked, use the Web Dynpro Code Wizard to Read Context of attibute you needed, then you will get code as follow:
    * Define data for read attribute
        node_alv TYPE REF TO if_wd_context_node,
        elem_alv TYPE REF TO if_wd_context_element,
        stru_alv TYPE if_view_display=>element_alv ,
        item_column_name  LIKE stru_alv-column_name.
    * navigate from <CONTEXT> to <ALV> via lead selection
      node_alv = wd_context->get_child_node( name = if_view_display=>wdctx_alv ).
    * get element via lead selection
      elem_alv = node_alv->get_element(  ).
    * get single attribute
      elem_alv->get_attribute(
        EXPORTING
          name =  `COLUMN_NAME'
        IMPORTING
          value = item_column_name ).
    The value of column_name is stored in item_column_name.
    If you need the index that the user clicked, try this:
    * Definition of field symbol for index
      FIELD-SYMBOLS : <fs_index> TYPE data.
    * Get the selected index
      ASSIGN r_param->index->* TO <fs_index>.
    The index of clicked line is stored in field symbol <fs_index>.
    Hope it will help.
    Best Regards,
    Stephanie

  • ALV pop-up via ALV table view

    Hello Folks,
    I have an ALV table view, after selecting any line item in the view i have button "DETAIL" which would pop up another view with the details in ALV view again.
    I have done the below steps but iam unable to get the alv pop-up with details. I would really appreciate if anyone can help me with this.
    My main view <i>V_OVERVIEW</i> is the initial Table view and i have created another View <i>V_POPUP</i> which just has a Viewcontainer. <i>V_OVERVIEW</i> is embeded in window <i>W_MAIN</i> and <i>V_POPUP</i> is embeded in <i>W_POPUP</i>.
    The view V_POPUP has the following code in its MODIFYVIEW method.
    DATA:node_wage TYPE REF TO if_wd_context_node,
           node_detail type ref to if_wd_context_node,
           lt_sltd_elmnts TYPE wdr_context_element_set,
           lr_element TYPE REF TO if_wd_context_element,
           wa_detail TYPE if_v_pop_up=>element_wage_benefit,
           it_detail TYPE if_v_pop_up=>elements_wage_benefit.
      data : lt_ssn type table of ZUT_XFERRED_SSN,
             lt_return type table of bapiret2.
      node_wage = wd_context->get_child_node( 'WAGE_BENEFIT' ).
      lt_sltd_elmnts = node_wage->get_selected_elements( abap_true ).
      lr_element->get_static_attributes(
        IMPORTING static_attributes = wa_detail ).
      CALL FUNCTION 'ZZ_GET_DETAIL'
        EXPORTING
          i_ob_key = objectkey
          i_quarter  = -quarter
        TABLES
          T_DTL  = lt_dtl
          T_RETURN   = lt_return.
      navigate from <CONTEXT> to <TP_RATES> via lead selection
      node_detail = wd_context->get_child_node( name =
                       ig_componentcontroller=>wdctx_ssn_details ).
      node_detail->bind_elements( new_items = lt_dtl ).
    The main View V_OVERVIEW has the button "DETAIL" which calls the window W_POPUP to show view V_POPUP embeded in it as a popup, here is the code in the Button handler
    DATA:
        l_api_main TYPE REF TO if_wd_view_controller,
        l_window_manager TYPE REF TO if_wd_window_manager,
        l_popup TYPE REF TO if_wd_window,
        l_cmp_api TYPE REF TO if_wd_component.
    * Pop to confirm
      CLEAR : l_api_main, l_cmp_api,
              l_window_manager, l_popup.
      l_api_main = wd_this->wd_get_api( ).
      l_cmp_api = wd_comp_controller->wd_get_api( ).
      l_window_manager = l_cmp_api->get_window_manager( ).
      l_popup = l_window_manager->CREATE_WINDOW(
      WINDOW_NAME = 'W_POP_UP'
      TITLE = 'Details' ).
      l_popup->open( ).

    hey folks nevermind i got it.
    Thanks

  • WD ALV Issue after the upgrade

    Hi,
    We have upgraded the SAP ECC 6.0 systems basis component SAP BASIS 700 from support pack 10 to 20.
    After the upgrade webdynpro ABAP ALV table rows are not getting selected when we click on the rows, But it is getting selected when we we use CNTRL+Click.
    I would really appreciate if you can provide me a note or route cause for this issue.
    Thanks
    Basava

    Hi Jawahar,
    Below is my suggestion regarding your query:
    Edit existing Job server and update the details regarding Local reporsitory and save it.
    Now try to map the same job server in scheduled jobs and check it was working or not
    Or Else
    Create new Job server and assign it to local repository.
    In this case you have to update your all real time & batch Job configuration.
    Thanks,
    Daya

  • Wda date picker issue in alv table

    Hi,
    When I use a date picker in a alv table in wda I have got the following issue:
    Select a date, do not press enter and then press a search help in another field in the table. You can test this in web dynpro 'SALV_WD_DEMO_TABLE_F4'.
    When you do this you will see that when pressing a search help like the one of 'currency' the date that you previously selected is gone. Also since on_data_check is not triggered in this scenario I am not sure how to solve this. My guess is that it is a bug. Maybe it can be resolved with an on_click event. That way I can update the date field when a select the currency field (before pressing f4 in the currency field)
    Does anybody know if this is the best way to solve this?
    Regards,
    Raymond Does

    Hi Raymond,
    What you mentions is Correct and What your are doing is correct. It is bug in WD ALV. It's not checking the value after you given correct value.
    Thanks and Regards,
    Vijay

Maybe you are looking for

  • Photoshop desaturating but lightroom is not (same file)

    I'm sure this has been asked a million times before but.. Basically, I designed an ad for a client on my Macbook Pro (I usually design on my PC). Using my Mac: 1. I saved the image using Save For Web in Photoshop CS4 (with Convert to sRGB), and it sl

  • Java.lang error while Integrating R12 EBS with 10g AS

    hi I am integrating Oracle E-Business Suite Release 12 with 10g AS following metalink document 376811.1 While applying patch 5983637 (refer 'Pre-Install Task 4' in metalink doc) I got the error java.lang.ArrayIndexOutOfBoundsException:0 Before applyi

  • Why won't my internal MATSHITA DVD-RAM LF-D211A mount a blank disc or burn one?

    Why won't my Dual Processor 500 MHz PowerPC G4, with 2 GB SDRAM, running Mac OS X ver. 10.4.11, equipped with an internally mounted MATSHITA DVD-RAM LF-D211A Drive mount or burn a blank CD, DVD-R, or DVD-Ram disc? The System Profiler reports as follo

  • Information from sales order

    Hello, I have a scenario where i make a sales order on 23.8.08. the delivery date to customer is 01.09.08 and the material availibity date calculated by system  is 28.8.08(01.09.08 less transit time less pick pack time). when the system does the avai

  • TS1372 What do I do if Itunes can't find the ipod data?

    I am trying to connect an Ipod to a computer but it can't find the data to the ipod and i tried everything I can think of can you please oh please help!!!!!!!!!