Changes  are not reflecting in the table control in 2nd time

Hi,
    In BSP Portal Asset management page, General,cost center, allocations ..etc tabs are there.and i have maintain button also in this page
After filling all these things, when i  click the maintain button , the mandatory fields [General,costcenter,Eval1,Eval2]are displaying in the tablecontrol popup window,
In the tablecontrol popup whatever i selected ,it is displaying fine..
          In the popup,save buttons is there.Once if i clicked the save button, popup will vanish and datas are stored in the internal table.and again it will come to portal main page.Now if i select the different values in the allocations dropdown, old vales are displaying in the tablecontrol popup. new dropdown values are not diaplying in the popup.what can i do?
This is my code: popupdisplay.htm
==============
<%
* DATE CHANGE.....: 20/07/2007                                         *
* AUTHOR..........: Mohan Pitchaimani (inmpi0)                         *
* CHANGE DESCR....: DIsplay the popup when clicking the maintainbutton *
* R/3 RELEASE...  : 2.1                                                *
* MODIFICATION ID : MOD-001                                            *
* RIFE/TPR/SCR No.: FSSE698 BSP Asset Mass Creation BSP Request form   *                                                *
* RT/TRANSPORT....: 12403 / D94K969999                                 *
%>
<%--********************Begin of changes mod-001 on 20/07/2007 *****************--%>
<%@page language="abap"%>
<%@extension name="bsp" prefix="bsp" %>
<%@extension name="htmlb" prefix="htmlb" %>
<%@ extension name="/DS1/mdm" prefix="mdm" %>
<%
data :
        lt_columns     type /DS1/MDM_tt_table_control,
        ls_column      type /DS1/MDM_ms_table_control,
        l_onload       type string,
        lr_field       type ref to  /ds1/cl_mdm_bspfield_services,
        lw_maintain    type /ds1/fss_ms_popup,
        l_editable     type char1,
        lt_drop        type /ds1/mdm_tt_dropdowns,
        ls_sc          type /DS1/MDM_MS_F4_SEARCH_CRITERA,
        ls_rmap        type /DS1/MDM_MS_F4_RESULTS_MAP,
        ls_drop        type /ds1/mdm_ms_dropdown,
        l_number       type int4.
%>
<%--********************Close the window **************************************** --%>
<%  data: event TYPE REF TO CL_HTMLB_EVENT.
          event = CL_HTMLB_MANAGER=>get_event( runtime->server->request ).
%>
<%
  if event is not initial.
    CASE event->id.
  WHEN 'con'.
%>
<script language="javascript">
self.close();
</script>
<% endcase.
   endif.
%>
<%--************************ Popupdisplay ***************************************** --%>
<htmlb:content design        = "design2002+design2003"
               rtlAutoSwitch = "true"
               forceEncode   = "ENABLED" >
<htmlb:page title = "Maintain fields should be different from similar assets">
<script type="text/javascript" language="JavaScript" src="../MDM_GENERIC/Javascript/MDM_Generic.js"></script>
<%@ include file = "asst_scripts_change.htm" %>
<%@ include file = "../MDM_GENERIC/TableControlStyleInclude.xml" %>
<%   delete controller->r_asset_data->T_MAINTAIN where TXT50 = space. %>
<% if controller->r_asset_data->t_maintain is  initial.
     lw_maintain-TXT50 = controller->r_asset_data->w_generaldata-DESCRIPT.
     lw_maintain-INVNR = controller->r_asset_data->w_generaldata-INVENT_NO.
     lw_maintain-kostl = controller->r_asset_data->w_timedependantdata-costcenter.
     lw_maintain-ORD41 = controller->r_asset_data->w_allocations-EVALGROUP1.
     lw_maintain-ORD42 = controller->r_asset_data->w_allocations-EVALGROUP2.
     lw_maintain-ORD43 = controller->r_asset_data->w_allocations-EVALGROUP3.
     lw_maintain-ORD44 = controller->r_asset_data->w_allocations-EVALGROUP4.
     lw_maintain-GDLGRP = controller->r_asset_data->w_allocations-EVALGROUP5.%>
<%--******************** Appending the maintained values *************************** --%>
<%
        if controller->r_asset_data->G_NO_ASSETS NE space.
            clear l_number.
            DO controller->r_asset_data->G_NO_ASSETS TIMES.
                l_number = l_number + 1.
                lw_maintain-SERNR = l_number.
                APPEND lw_maintain TO controller->r_asset_data->t_maintain.
            ENDDO.
        else.
            DO controller->r_asset_data->g_no_similarsubno TIMES.
                APPEND lw_maintain TO controller->r_asset_data->t_maintain.
            ENDDO.
        endif.
        controller->G_POPUP_FLAG = 'X'.
    endif.
%>
<%--******************** VAlidations for the Requester and Approver screen *************************** --%>
<% if  controller->ms_request_header-req_status = '00'.
    ls_column-columnname = 'SERNR'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
endif. %>
<% if  controller->ms_request_header-req_status = '05'.
    ls_column-columnname = 'SERNR'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'TXT50'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'INVNR'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'KOSTL'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
endif. %>
<% if  controller->ms_request_header-req_status = '06'.
     ls_column-columnname = 'SERNR'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'TXT50'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'INVNR'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'KOSTL'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'ORD41'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'ORD42'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'ORD43'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'ORD44'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
    ls_column-columnname = 'GDLGRP'.
    ls_column-no_edit = 'X'.     
    append ls_column to lt_columns.
    clear ls_column.
endif.
%>
<% if  controller->ms_request_header-req_status = '00'. %>
  <html>
<body>
  <p>
    You can Maintain/Edit details of Similar Assets/Similar Sub - Assets . Click confirm to maintain the entries
</p>
</body>
</html>
<%    elseif controller->ms_request_header-req_status <> '00'. %>
<html>
<body>
  <p>You can view details of of Similar Assets/Similar Sub - Assets.
</p>
</body>
</html>
<% endif.%>
<htmlb:form id='frmMain' >
   <htmlb:group>
   <htmlb:groupBody>
   <htmlb:gridLayout columnSize ="2"
                  rowSize    ="15"
                  width      ="150%">
   <htmlb:gridLayoutCell columnIndex="2" rowIndex="1" horizontalAlignment="left" verticalAlignment="top" width="200" wrapping="false">
   <%
  ls_column-columnname     = 'TXT50'.
  ls_column-input_type     = '1'.
  ls_column-data_type      = '1'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
  ls_column-columnname     = 'INVNR'.
  ls_column-input_type     = '1'.
  ls_column-data_type      = '1'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
* build F4 Search sceen
  ls_sc-field_name = 'KOKRS'.
  ls_sc-data_element = 'KOKRS'.
  ls_sc-f4_from_data_element = 'X'.
  ls_sc-value = 'OP01'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'BUKRS'.
  ls_sc-data_element = 'BUKRS'.
  ls_sc-f4_values =  /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_COCE_COMPANY( ).
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'KOSTL'.
  ls_sc-data_element = 'KOSTL'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'KOSAR'.
  ls_sc-data_element = 'KOSAR'.
  ls_sc-f4_from_data_element = 'X'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'VERAK'.
  ls_sc-data_element = 'VERAK'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'LTEXT'.
  ls_sc-data_element = 'KLTXT'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'SPRAS'.
  ls_sc-data_element = 'SPRAS'.
  ls_sc-f4_values = /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_LANGU( ).
  ls_sc-value = sy-langu.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'TELX1'.
  ls_sc-data_element = 'TELX1'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'FUNC_AREA'.
  ls_sc-data_element = 'FKBER'.
  ls_sc-f4_from_data_element = 'X'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'PRCTR'.
  ls_sc-data_element = 'PRCTR'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
  ls_sc-field_name = 'REGIO'.
  ls_sc-data_element = 'REGIO'.
  append ls_sc to ls_column-lookup_params-searchcriteria.
  clear: ls_sc.
* set parameters for f4 lookup
  ls_column-lookup_params-POPUPHEIGHT = '550'.
  ls_column-lookup_params-POPUPWIDTH = '750'.
  ls_column-lookup_params-SEARCHMAXRESULTS = '500'.
  ls_column-lookup_params-SEARCHRESULTSKEY = 'KOSTL'.
  ls_column-lookup_params-SEARCHTABLE = 'CSKS'.
* Set Column for Cost center
  ls_column-columnname     = 'KOSTL'.
  ls_column-input_type     = '4'.
  ls_column-data_type      = '1'.
  ls_column-tooltip_fom_de = 'X'.
  ls_column-scrollable     = ' '.
  ls_column-length         = '15'.
  ls_column-maxlength      = '15'.
  ls_column-halign         = 'RIGHT'.
  ls_column-valign         = 'TOP'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
* Set Column for Evaluation group 1
      ls_drop-dropdown_id = 'evlg1'.
      ls_drop-values_tab = /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_EVALGRP1( im_group = '1'
                                  im_bukrs = controller->R_ASSET_DATA->W_KEY-COMPANYCODE ).
      append ls_drop to lt_drop.
      ls_column-columnname     = 'ORD41'.
      ls_column-input_type     = '2'.
      ls_column-DROPDOWN_ID     = 'evlg1'.
      APPEND ls_column TO lt_columns.
      CLEAR ls_column.
* Set Column for Evaluation group 2
      ls_drop-dropdown_id = 'evlg2'.
      ls_drop-values_tab = /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_EVALGRP1( im_group = '2'
                                 im_bukrs = controller->R_ASSET_DATA->W_KEY-COMPANYCODE ).
      append ls_drop to lt_drop.
      ls_column-columnname     = 'ORD42'.
      ls_column-input_type     = '2'.
      ls_column-DROPDOWN_ID     = 'evlg2'.
      APPEND ls_column TO lt_columns.
      CLEAR ls_column.
* Set Column for Evaluation group 3
  ls_drop-dropdown_id = 'evlg3'.
  ls_drop-values_tab = /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_EVALGRP1( im_group = '3'
                                 im_bukrs = controller->R_ASSET_DATA->W_KEY-COMPANYCODE ).
  append ls_drop to lt_drop.
  ls_column-columnname     = 'ORD43'.
  ls_column-input_type     = '2'.
  ls_column-DROPDOWN_ID     = 'evlg3'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
* Set Column for Evaluation group 4
  ls_drop-dropdown_id = 'evlg4'.
  ls_drop-values_tab = /DS1/CL_MDM_F4_VALUES=>GET_VALUES_FOR_EVALGRP1( im_group = '4'
                                 im_bukrs = controller->R_ASSET_DATA->W_KEY-COMPANYCODE ).
  append ls_drop to lt_drop.
  ls_column-columnname     = 'ORD44'.
  ls_column-input_type     = '2'.
  ls_column-DROPDOWN_ID     = 'evlg4'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
* Set Column for Evaluation group 5
  ls_drop-dropdown_id = 'evlg5'.
  ls_drop-values_tab = controller->GET_VALUES_FOR_EVALGRP5( im_bukrs = controller->R_ASSET_DATA->W_KEY-COMPANYCODE ) .
  append ls_drop to lt_drop.
  ls_column-columnname     = 'GDLGRP'.
  ls_column-input_type     = '2'.
  ls_column-DROPDOWN_ID     = 'evlg5'.
  APPEND ls_column TO lt_columns.
  CLEAR ls_column.
* Input type
*1     Text box
*2     Drop down
*3     Checkbox
*4     F4 Lookup
*5     HTML
*6     Text just displayed
*7     Date
*8     Link
*9     Time
* Data type
*1     String
*2     Numeric
*3     Date
*4     Time
%>
<%---------------- TableControl display in the popupwindow --------------------------%>
   <mdm:tableControl table="<%=controller->r_asset_data->t_maintain%>"
                           id="tv1"
                           width="650"
                           no_buttons = "X"
                           height="330"
                           columns="<%=lt_columns%>"
                           dropdowns= "<%= lt_drop %>"
                           title="Maintain Asset"    >
   </mdm:tableControl>
  </htmlb:gridLayoutCell>
  </htmlb:gridLayout>
  <input type="hidden" name="renderedtv1" value= "rendered-tv1"  />
<%---------------- Confirm Button-------------------------------- --%>
<htmlb:button id="con"
               design="STANDARD"
               width="15"
               text = "Confirm" onClick="confirm"
               onClientClick = "self.close()"/>
<%---------------- Cancel Button-------------------------------- --%>
<htmlb:button id="cancel"
               design="STANDARD"
               width="15"
               text = "Cancel"
               onClientClick = "self.close()"/>
</htmlb:groupBody>
</htmlb:group>
</htmlb:form>
</htmlb:page>
</htmlb:content>
<%--********************End of changes mod-001 on 20/07/2007 *****************--%>
Message was edited by:
        Durairaj Athavan Raja
    --formatting

Hi Mohan,
Please use the formatting options to format ur question...!!
Thanks,
Tatvagna.

Similar Messages

  • Changes are not reflecting in the Quality

    Hi,
    These are standard SAP Components. I have imported the ESS and MSS Packages.
    Actually 3 Development Components are using in my application (Tra,TraTri and TraTre).Tra is the root DC.
    I have made  changes  to those objects and sucecessfully  build  without errors.
    After check-in all  activities  those activities are working fine in Development system.
    But those changes not refclecting in Quality system. So i was founded build log error in Consolidation.
    I was fixed the error in the Development system and build the components without build error.
    still now changes are not reflecting in the quality system.
    But out of 3 DCs(Tra,TraTri,TraTre) Tra and TraTre are working fine in Quality(changes are  reflecting) only problem in TraTri DC (changes are not reflecting in the Quality)..
    Please help me as soon as possible....Its very help full for me
    Regards
    Sudhakar Reddy A

    Hi Slava,
    very very thanks to you for the fast reply. but one thing in my side.
    When i release the activities after successful build, i export those changes and place them in the import queue of the consolidation system in the CMS.
    The export in the SAP NetWeaver Developer Studio packs all selected activities into a change request, and then places them in the import queue of the consolidation system.
    When the my system administrator imports this request into the consolidation system, the released changes are integrated into the DTR workspace of the consolidation system; the build server compiles the modified components.
    my system administrator findout build error in consolidation system:
    [wdgen] [Error]   .PersonnelNumberCheck: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Error]   .PersonnelNumberCheck.I_Employeenumber: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Output [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Info]    com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Output [supplyingRelationRole]: Supply function or supplying relation role missing (Hint: A child node which is not mapped must have either a supplying relation role or a supply function or one of its parent nodes must have a supply function.)
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.E_Name: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Et_Return [modelClass]: The context model node has not been bound to a model class (Hint: A Context model node has to be bound to a model class or mapped to a model node of another controller.)
         [wdgen] [Info]    com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextModelNode PersonnelNumberCheck_Et_Return [supplyingRelationRole]: Supply function or supplying relation role missing (Hint: A child node which is not mapped must have either a supplying relation role or a supply function or one of its parent nodes must have a supply function.)
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Type: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Log_No: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Field: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.System: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V1: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V3: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V2: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Log_Msg_No: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Number: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Message_V4: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Parameter: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Id: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   .PersonnelNumberCheck.PersonnelNumberCheck_Output.PersonnelNumberCheck_Et_Return.Row: The mapping definition is inconsistent, the mapped context element does not exist.
         [wdgen] [Error]   com.sap.xss.tra.tri.vc.changepersno.VcTriChangePersNo --> ContextValueAttribute EmployeeName [readOnly]: The context attribute has to be read-only. (Hint: As the mapped context attribute is read-only this attribute has to be read-only, too.)
    I was fix error in my development system with out any build errors. still now not working ...pls give me any suggestion.i dont have access to consolidation system.
    Regards,
    Sudhakar

  • Query changes are not reflecting in the Workbook.

    Hi All,
    I have modified the query by adding attributes. But the changes are not reflecting in the workbook.
    Do i need to insert the query again in the workbook or is there any option that will reflect the changes in the workbook
    Thanks in Advance,
    Suneel.

    Hello Suneel,
    if you insert the query again, it will work, but it is not the best way to delegate the query changes to the workbook.
    Just open your query from within your workbook (BEx menu 'change global definition') and use the green button at the top left in order to transfer the new query structure to the workbook. The query will be executed and you should see the changes.
    Don't forget to save the workbook afterwards.
    Regards,
    Kirill

  • Changes are not reflecting in the discoverer workbook

    Hi ,
    I have a report created with user Disco(Disco.Report_name).Now I need to add a column to it and i have done that with other user Discodev but when I save it the changes are not reflected on Disco(Disco.Report_name) rather it is being saved with user Discodev(*Discodev.Report_name*) .
    The User wants that the changes should be reflected on Disco.Report_name (I can't use the credentials of Disco to do this as it is also a user) .
    Appreciate your help !!
    Discoverer Version 4i
    Thanks ,
    Vijay

    Hi West,
    Thanks for the reply.
    I want to get clarified one thing, Is there any option where DISCO user can give Privileges to DISCODEV to make the changes,as the DISCO user is not a common user I have a problem in making the changes.
    Thanks,
    Vijay

  • Changes are not reflecting in the page

    Hi All,
    I have an issue in custom page. In my custom page, if i click approve button for a particular batch, then it will navigate to previous page which contains 10 batches per page in the table structure.
    Once i clicked the Approve button it will update the status in the table. It is getting updated in the table but it is not reflecting on the Batches page while navigating to previous page.
    Kindly share your suggestions.
    Thanks and Regards,
    Myvizhi

    Hi Myvizhi ,
    Since you wish to display a specific row in the table region , then while navigating from update page to search page send primary key and set it as
    where clause , so that you can view only updated specific row .
    You need to handle this in process Request of your controller class in search page . Let me know if its not clear .
    --Keerthi                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Changes are not reflected in ODS

    Hi all
    Can anyone help me with this!!!!!!!!
    There is an ODS1 which gets data from transparent table. From ODS2 data is loaded into transparent table. Then the data is deleted from ODS1 and ODS2.
    Again the data is reloaded into ODS2 and then into ODS1.
    The changes are reflected in the ODS2 and changes are not reflected in ODS1
    Even after refreshing also changes are not reflected in the ODS1.
    what could be done??????
    Thanks
    Rani

    Hi rani,
    U need to check whether the changes are reflected in the transparent table once you reload it from DSO2.
    The reason might be, the key of the table might be different hence it might be adding records instead of overwriting or updating it. If there is any code used, check the logic whether u are appending or modifying the contents of the table. generally it should be modifying the contents.
    Hope this help
    Regds,
    Shashank

  • Changes are not reflected in Script output

    Hi All,
    i am facing a problem in SAPscript.
    I have made a Zscript by copying standard script F110_FR_CHEQUE. I have made the changes in the script as per requirement in development client and transported it to testing client to test (As i dont have any data in development client). But, surprisingly, when i run the program and check the output, the changes are not reflected in the script output.
    First i thought that my script was not triggered thats whay i m not getting any change, but later i changed the dimension of one of the window, in which some hard coded text is written, the differece i found was that, window size is changed, but the text written in that window is still same (what was in standard script.) .
    I am using standard texts for hard coding in script. Standard texts have been transported in testing client also.
    please help me in this regard.

    Hi,
    Could you plese Check NACE whether your script is confiugring or not.
    If it is configured well then Check Standard Text is available or not in Test client by open it in SO10.
    Check all the paragrah formats applied to Standard text are transferred to Test client which are in SE72.
    IF it is available in SO10 then debug the print program for that windows any standard conditions are calling to print the text.

  • Changes are not reflecting in Quality server

    Dear All,
    We have recently installed the Portal 7.4 servers.
    Currently we are having two servers Development and Quality.We have Configured NWDI using CMS and created tracks(Defined run-time systems as Development and Consolidation)  we are able to checkin the activities at NWDS , when we are selecting the component in the consolidation and on  click of  import we are getting the message as import finished, but the changes are not reflecting at the Quality server. i.e in earlier 7.01 version when we imported , the ear was deployed automatically in quality but it is not getting deployed in the new version 7.4
    Regards,
    Ramana.

    Dear Ervin/Jun Wu,
    Thanks for the Responce.
    As per the given link the track is configured  with out any issues (When we are clicking on Deployment in the Transport studio it is opening new tab like below and we are not having any errors when we click on Start deployment nothing is happening)
    http://hostname:50000/webdynpro/dispatcher/sap.com/tc~SL~CMS~WebUI/Deployer?BS=EPD_PRTADEV_C
    Please check the below log regarding deployment when we do the import
    SDM-deployment-notification  Log file.
    20141028125231 Info :Starting Step SDM-deployment-notification at 2014-10-28 12:52:31.0994 +5:00
    20141028125231 Info :Deployment is performed asynchronously.
    20141028125231 Info :Following DCs are marked for deployment (buildspace = EPD_PRTADEV_C):
    20141028125231 Info :
    20141028125231 Info :RequestId: 152
    20141028125231 Info :==> no resulting DCs for deployment
    20141028125231 Info :Follow-up requests:
    20141028125231 Info :
    20141028125231 Info :
    20141028125231 Info :Step SDM-deployment-notification ended with result 'success' at 2014-10-28 12:52:31.0995 +5:00
    Regards,
    Ramana.

  • Changes are not reflecting while executing the SAP script from report

    HI,
    In SAP-script we are nmaking changes in form in client 130
    it is showing the changes in 140 client but while excuting the report the same are not reflecting in the output.
    Thanks in Advance
    Naveen M

    Hello.
    Scripts are mandant depentant. So you must copy from 130 to 140 for changes take efect.
    Do it in transaction SE71 in mandant 140, first screen, in the menu options.
    And never forget to activate it in all mandants.
    Best regards.
    Valter Oliveira.

  • Changes are not reflected after editing and saving the chart in th WAD 3.5

    Hi all,
    I have to display the chart in the report using WAD 3.5. But after creating a chart and then when ihave to make extra changes again and save the same, the changes are not reflected. I can see only the previous changes.
    I am working on the chart for the first time. please let me know about the problem. My changes to the chart are not getting reflected.
    Please help.
    Thanks
    Rani

    How r u changing the graph??
    Hope you are doing a right click and selecting Edit Chart. Click on Refine.
    Then Click on Next till you get the button Complete. After you click on Complete, you save the Template.
    Hope you are following these steps.

  • Changes are not reflecting when de-implemented the SNOTE.

    Hi All,
    I have implemented SNOTE : 79847 , which is having two steps one is manual and the another one is automatic . but now i want to de-implement the Snote due to some requirements .
    After de-implementing the Snote ,i checked for changes in the standard program which were automatic . Over there the changes are not reflecting , that is the code which was  got appended due to implementations of note , now it is not getting removed. 
    kindly help me out.....

    Hi All,
    I have implemented SNOTE : 79847 , which is having two steps one is manual and the another one is automatic . but now i want to de-implement the Snote due to some requirements .
    After de-implementing the Snote ,i checked for changes in the standard program which were automatic . Over there the changes are not reflecting , that is the code which was  got appended due to implementations of note , now it is not getting removed. 
    kindly help me out.....

  • Changes to subtasks are not reflected in the summary task

    I use Project Professional 2013.
    Changes to subtasks are not reflected in the summary tasks. This includes both work and actual work as well as % complete. The tasks are all auto scheduled. Is there a setting that I need to change?

    The only way I know to make that happen is if calculate project after every edit is disabled (See Options, Schedule tab).
    Does this happen in all project files, for other PCs near you and do you have SP1 installed for Project 2013?
    Rod Gill
    Author of the one and only Project VBA Book
    www.project-systems.co.nz

  • Changes are not Reflecting in WAD

    Dear Gurus,
    I got a problem in WAD. Changes are not Reflecting in My WAD. When i created NewQuery in WAD by just placing Chart & Saved it. After executing Chart is displaced.Again I updated the same query by placing table and saved it. After Executing Table is not displayed only previously saved Chart is displayed. Could any one Kindly solve my Problem.
    Thanks,
    Sony

    Hi Sony,
    SAP BI has HTTP Cache and the web templates are stored in the HTTP cache of the server. So, when you change a template and execute it again - the previous version which is stored in the HTTP cache is being retreived.
    To correct this, go to TCODE SMICM in the menu bar >> Goto >> HTTP Server Cache >> Invalidate -> Global in system
    Once this is done, ask basis to restart the java engine.
    I hope this helps you.!
    -Pradnya
    Edited by: Pradnya Rane on Sep 29, 2009 8:05 AM

  • Query changes are not reflecting

    Hi All,
    Scenario: We have changed in Query from Query Designer in BED system and moved to Quality system but the changes are not reflecting. After checking tables RSRREPDIR and RSZCOMPDIR, we found out the information as below:
    Note: Production System - BEP
    Quality - BEQ
    Development - BED
    We have 2 issues with Queries in different systems as below:
    Issue 1: Query name: T01
    Issue 2: Query name: T02
    Issue1:
    Table - RSRREPDIR
    BEP -
    COMPUID : 4U2P65LLZVYUZLGQFYPVZ1R2M   (also present in table - RSZCOMPDIR)
    GENUNID : 4U2QC61SREY9HKJFVEHM894CU
    BEQ -
    COMPUID : 4T6BTKW1X3RYN7H2UO4WMLWLQ   (also present in table - RSZCOMPDIR)
    GENUNID : 4T6BUM0LKCPAO5H71ZG983P72
    COMPUID : 4U2P65LLZVYUZLGQFYPVZ1R2M   (also present in table - RSZCOMPDIR)
    GENUNID : 4U2QC61SREY9HKJFVEHM894CU
    BED -
    COMPUID : 4T6BTKW1X3RYN7H2UO4WMLWLQ   (also present in table - RSZCOMPDIR)
    GENUNID : 4T6BUM0LKCPAO5H71ZG983P72
    COMPUID : 4U2P65LLZVYUZLGQFYPVZ1R2M   (not present in table - RSZCOMPDIR)
    GENUNID : 4U2QC61SREY9HKJFVEHM894CU
    Issue2:
    Table - RSRREPDIR
    BEP -
    COMPUID : 4U18JA5FD2PB9ZB1RS0PWS5E6   (also present in table - RSZCOMPDIR)
    GENUNID : 4U188U6N2623QPCTMC43MFOZY
    BEQ -
    COMPUID : 4T6MDKABLUBC46HOKZMC0K6KU   (also present in table - RSZCOMPDIR)
    GENUNID : 4T6MEWPZ6178KB4LDKDREY34E
    COMPUID : 4U18JA5FD2PB9ZB1RS0PWS5E6   (also present in table - RSZCOMPDIR)
    GENUNID : 4U188U6N2623QPCTMC43MFOZY
    BED -
    COMPUID : 4U18JA5FD2PB9ZB1RS0PWS5E6   (not present in table - RSZCOMPDIR)
    GENUNID : 4U188U6N2623QPCTMC43MFOZY
    but in Table - RSZCOMPDIR
    BED -
    COMPUID : 4T6MDKABLUBC46HOKZMC0K6KU  
    GENUNID : 4T6MEWPZ6178KB4LDKDREY34E.
    Please suggest which query element and from which table we should remove to have a sync with all systems.
    Thanks in advance!!
    Regards,
    Niranjan Chechani

    If possible can u Compare  Bex queries in All 3 systems Using RSRTQ tcode, Either they are matching or not?
    How to compare using RSRTQ  u can Refer Below :
    Compare Bex Queries in Different Client /System.
    Regards,
    Seshu.P

  • Changes are not reflected when objects transported from Quality to Productn

    Hi
    In case of moving some Transport requests from Quality to Production, some times the changes made to the selection screen of a report program doesn't reflect in Production. Also we don't see any Transport error while transporting. Moreover, we can see the changes by regenerating the Program in production.
    Would any one help me out in this with the reason for this.
    Pls suggest what needs to be done.
    Satish.

    HI,
    Thanks for the reply.
    - I have checked the respective transport too, and every thing seems to be fine.
    - Recently we went to go live, for the next release, so earlier before go live, we didnt faced any proble.. Only now we are facing this problem, that we find the changes relating to selection screen are not reflected when the object / prog is moved from qty to Prd.
    - Only problem is with the selection screen.(not getting reflected in PRD. In Qty we are able to see those changes.
    - Then in order to reflect these changes in PRD, we have to re generate the object, then only it get s updated..
    Satish.
    Edited by: satish c on Sep 22, 2009 3:35 PM

Maybe you are looking for

  • Looking for example to export data from a DynPro table to Excel file

    Hello, I have a certain content in a table. I would like to export this content to Excel file and let the user save it on his PC. I tried to use the Office Controller but with no success. Have someone already made something like this and can show me

  • BT Really slow access

    Hi, For the last weeks, my internet access is extremely slow. I've been trying to figure this issue and did a few tests - but these report everything's ok. I find it quite strange, since it's a fact that there's a latency for each request and sometim

  • How to import zip file in Netweaver?

    Hi Experts    When I download any code in zip file from Web Dynpro Sample Applications and Tutorials.   then how can view it and run it. what I do is unzip it put it in my workplace of netweaver. but this give me comilation error like <b>com.sap.tc.w

  • Com.sapportals.km.explorer-search iview can't run.

    Hi , After we upgrade KMC SP2 from Patch Level 4 hotfix 3 to Patch Level 5 hotfix 4, the iview sap.sapportals.km.explorer-search can't run. Our EP version is EP SP2 Patch 41, J2EE Engine is SP41, Java library is version 20. ============== The error m

  • Hxt and otl

    i want to know what is the relation/difference between otl and hxt. i was going through note-Note:214886.1 on metalink. we are currently on HXT.H and want to upgrade to HXT.J but i want to know what is # OTL11i Rollup 2 # OTL11i Rollup 1 Thanks