CL_GUI_ALV_GRID-GET_SELECTED_ROWS Parameter ET_INDEX_ROWS not filled.

Hi Gurus,
I am using Two containers,
In Screen 0100 When 'DELETE'/'ADD' it will Delete/Insert records to DB Table at First Time.
But If I go forward to the next screen 0101 and then back the the 0100, at that time When I press  'DELETE'/'ADD' the functionality is not working.
In my Pgm flow
When 'DEL'.
CALL METHOD oref_alv_grid->check_changed_data
      IMPORTING
                e_valid = l_valid. - > +Filled +
CALL METHOD oref_alv_grid->get_selected_rows
      IMPORTING
                et_index_rows = lt_rows -> Not Filled, Even I dont have Debugg insite the method
Please give me a solution.
Thanks for your valuable reply.
Kanagaraja L

Hello Kanagaraja
You have made a mistake when calling the REFRESH method.
FORM delete_database_add .
DATA: lt_rows TYPE lvc_t_row,
wa_rows TYPE lvc_s_row.
DATA: lt_rows1 TYPE lvc_t_row.
DATA:t_row_no TYPE LVC_t_ROID.
    * CALL METHOD oref_alv_grid->refresh_table_display
    * EXCEPTIONS
    * finished = 1
    * OTHERS = 2.
" NOTE: Refresh clears all selections. Thus, LT_ROWS1 will always be empty !!!
CALL METHOD oref_alv_grid->get_selected_rows
IMPORTING
et_index_rows = lt_rows1[].
You may have a look at my sample report ZUS_SDN_TWO_ALV_GRIDS_2SCR. Display the first ALV list, select some rows and enter 'DETAIL' in the command window. This will lead you to the second screen from which you return via F3.
Back on the first ALV list enter 'DELETE' and all marked rows will be deleted from the list.
*& Report  ZUS_SDN_TWO_ALV_GRIDS
*& Thread: CL_GUI_ALV_GRID-GET_SELECTED_ROWS Parameter ET_INDEX_ROWS not filled.
*& <a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="826287"></a>
*& Screen '0100' contains no elements.
*& ok_code -> assigned to GD_OKCODE
*& Flow logic:
*  PROCESS BEFORE OUTPUT.
*    MODULE STATUS_0100.
*  PROCESS AFTER INPUT.
*    MODULE USER_COMMAND_0100.
*& Screen '0200': copy of screen '0100' (for the sake of simplicity)
REPORT  zus_sdn_two_alv_grids_2scr.
DATA:
  gd_okcode        TYPE ui_func,
  gd_repid         TYPE syrepid,
  go_docking1      TYPE REF TO cl_gui_docking_container,
  go_docking2      TYPE REF TO cl_gui_docking_container,
  go_grid1         TYPE REF TO cl_gui_alv_grid,
  go_grid2         TYPE REF TO cl_gui_alv_grid,
  gs_layout        TYPE lvc_s_layo.
DATA:
  gt_outtab1       TYPE STANDARD TABLE OF knb1,
  gt_outtab2       TYPE STANDARD TABLE OF knvv.
*       CLASS lcl_eventhandler DEFINITION
CLASS lcl_eventhandler DEFINITION.
  PUBLIC SECTION.
    CLASS-METHODS:
      handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
        IMPORTING
          e_row
          e_column
          es_row_no
          sender.
ENDCLASS.                    "lcl_eventhandler DEFINITION
*       CLASS lcl_eventhandler IMPLEMENTATION
CLASS lcl_eventhandler IMPLEMENTATION.
  METHOD handle_double_click.
*   define local data
    DATA:
      ls_knb1      TYPE knb1.
    CHECK ( sender = go_grid1 ).
**    READ TABLE gt_knb1 INTO ls_knb1 INDEX e_row-index.
**    CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
**    CALL METHOD go_grid1->set_current_cell_via_id
**      EXPORTING
***        IS_ROW_ID    =
***        IS_COLUMN_ID =
**        is_row_no    = es_row_no.
***   Triggers PAI of the dynpro with the specified ok-code
**    CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).
  ENDMETHOD.                    "handle_double_click
ENDCLASS.                    "lcl_eventhandler IMPLEMENTATION
START-OF-SELECTION.
  SELECT        * FROM  knb1 INTO TABLE gt_outtab1
         WHERE  bukrs  = '1000'.
  PERFORM init_controls.
* Display data
  gs_layout-grid_title = 'Customers'.
  gs_layout-sel_mode   = 'D'.  " multiple row selection
  CALL METHOD go_grid1->set_table_for_first_display
    EXPORTING
      i_structure_name = 'KNB1'
      is_layout        = gs_layout
    CHANGING
      it_outtab        = gt_outtab1
    EXCEPTIONS
      OTHERS           = 4.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  gs_layout-grid_title = 'Customers Details (Sales Areas)'.
  CALL METHOD go_grid2->set_table_for_first_display
    EXPORTING
      i_structure_name = 'KNVV'
      is_layout        = gs_layout
    CHANGING
      it_outtab        = gt_outtab2  " empty !!!
    EXCEPTIONS
      OTHERS           = 4.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
  gd_repid = syst-repid.
* Link the docking container to the target dynpro
  CALL METHOD go_docking1->link
    EXPORTING
      repid                       = gd_repid
      dynnr                       = '0100'
*      CONTAINER                   =
    EXCEPTIONS
      OTHERS                      = 4.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Link the docking container to the target dynpro
  CALL METHOD go_docking2->link
    EXPORTING
      repid                       = gd_repid
      dynnr                       = '0200'
*      CONTAINER                   =
    EXCEPTIONS
      OTHERS                      = 4.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* NOTE: dynpro does not contain any elements
  CALL SCREEN '0100'.
* Flow logic of dynpro '0100' (does not contain any dynpro elements):
*PROCESS BEFORE OUTPUT.
*  MODULE STATUS_0100.
*PROCESS AFTER INPUT.
*  MODULE USER_COMMAND_0100.
END-OF-SELECTION.
*&      Form  INIT_CONTROLS
*       text
*  -->  p1        text
*  <--  p2        text
FORM init_controls .
* Create docking container
  CREATE OBJECT go_docking1
    EXPORTING
      parent = cl_gui_container=>screen0
      ratio  = 90
    EXCEPTIONS
      OTHERS = 6.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Create ALV grids
  CREATE OBJECT go_grid1
    EXPORTING
      i_parent = go_docking1
    EXCEPTIONS
      OTHERS   = 5.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Set event handler
  SET HANDLER:
    lcl_eventhandler=>handle_double_click FOR go_grid1.
* Create docking container
  CREATE OBJECT go_docking2
    EXPORTING
      parent = go_docking2
      ratio  = 90
    EXCEPTIONS
      OTHERS = 6.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Create ALV grids
  CREATE OBJECT go_grid2
    EXPORTING
      i_parent = go_docking2
    EXCEPTIONS
      OTHERS   = 5.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDFORM.                    " INIT_CONTROLS
*&      Module  STATUS_0100  OUTPUT
*       text
MODULE status_0100 OUTPUT.
  SET PF-STATUS 'STATUS_0100'.  " contains push button "DETAIL"
*  SET TITLEBAR 'xxx'.
* Refresh display of detail ALV list
  CALL METHOD go_grid2->refresh_table_display
*    EXPORTING
*      IS_STABLE      =
*      I_SOFT_REFRESH =
    EXCEPTIONS
      OTHERS         = 2.
  IF sy-subrc <> 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
ENDMODULE.                 " STATUS_0100  OUTPUT
*&      Module  USER_COMMAND_0100  INPUT
*       text
MODULE user_command_0100 INPUT.
  TRANSLATE gd_okcode TO UPPER CASE.
  CASE gd_okcode.
    WHEN 'BACK' OR
         'END'  OR
         'CANC'.
      CASE syst-dynnr.
        WHEN '0100'.
          SET SCREEN 0. LEAVE SCREEN.
        WHEN '0200'.
          SET SCREEN '0100'.
          LEAVE SCREEN.
      ENDCASE.
*   User has pushed button "Display Details"
    WHEN 'DETAIL'.
      PERFORM entry_show_details.
      CALL SCREEN '0200'.
      WHEN 'DELETE'.
        perform DELETE_ENTRIES.
    WHEN OTHERS.
  ENDCASE.
  CLEAR: gd_okcode.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
*&      Form  ENTRY_SHOW_DETAILS
*       text
*  -->  p1        text
*  <--  p2        text
FORM entry_show_details .
* define local data
  DATA:
    ls_row      TYPE lvc_s_row,
    lt_rows     type lvc_t_row,
    ls_knb1     TYPE knb1,
    lt_knb1     TYPE STANDARD TABLE OF knb1.
  CALL METHOD go_grid1->get_selected_rows
    IMPORTING
      et_index_rows = lt_rows
*      et_row_no     =
  LOOP AT lt_rows INTO ls_row.
    READ TABLE gt_outtab1 INTO ls_knb1 INDEX ls_row-index.
    APPEND ls_knb1 TO lt_knb1.
  ENDLOOP.
  IF ( lt_rows IS INITIAL ).
    REFRESH: gt_outtab2.
  ELSE.
    SELECT * FROM  knvv INTO TABLE gt_outtab2
        FOR ALL ENTRIES IN lt_knb1
           WHERE  kunnr  = lt_knb1-kunnr.
  ENDIF.
ENDFORM.                    " ENTRY_SHOW_DETAILS
*&      Form  DELETE_ENTRIES
*       text
*  -->  p1        text
*  <--  p2        text
form DELETE_ENTRIES .
* define local data
  DATA:
    ls_row      TYPE lvc_s_row,
    lt_rows     type lvc_t_row.
  CALL METHOD go_grid1->get_selected_rows
    IMPORTING
      et_index_rows = lt_rows
*      et_row_no     =
  LOOP AT lt_rows INTO ls_row.
    delete gt_outtab1 INDEX ls_row-index.
  ENDLOOP.
  go_grid1->refresh_table_display( ).  " Mandatory !!!
endform.                    " DELETE_ENTRIES
Regards
  Uwe

Similar Messages

  • Parameter MESSAGE in structure BAPIRET2 not filled

    Hi All,
    I am receiving the following error message when saving my working time record in the portal: java.lang.Exception: Parameter MESSAGE in structure BAPIRET2 not filled. The data is getting saved but I have no idea where to look for this error.
    java.lang.Exception: Parameter MESSAGE in structure BAPIRET2 not filled
         at com.sap.pcuigp.xssfpm.java.BapiretUtil.getMessageTextFromBapiret(BapiretUtil.java:31)
         at com.sap.pcuigp.xssfpm.java.MessageManager.reportMessage(MessageManager.java:188)
         at com.sap.xss.hr.cat.record.blc.FcCatRecordInterface.setMessages(FcCatRecordInterface.java:2137)
         at com.sap.xss.hr.cat.record.blc.FcCatRecordInterface.setMessages(FcCatRecordInterface.java:2077)
         at com.sap.xss.hr.cat.record.blc.FcCatRecordInterface.onSaveTimesheet(FcCatRecordInterface.java:1237)
         at com.sap.xss.hr.cat.record.blc.wdp.InternalFcCatRecordInterface.onSaveTimesheet
    We are using ESS 603, Portal version 7.0 SPS19 and ECC 6.0 EHP3.
    Thanks a lot.
    Regards,
    Ridouan

    Hi Ridouan,
    I had this issue when executing the ESS Time Statement. So I've passed it on to our Securities expert who identified missing B1 & B2 cluster auths for the user.
    You can obtain the exact details by running the trace (t-code: ST01) on the correct application server when reproducing the issue.
    Regards,
    Ian

  • Importing  Parameter (/1BCDWB/FORMOUTPUT) Not filled  - Inside the RFC

    Dear All,
    I am Calling the Adobe form Inside the RFC Function Module, problem i am facing this Importing Parameter  /1BCDWB/FORMOUTPUT not filled.
    Based on the Importing I need the XSTRING Data
    CALL FUNCTION  <Function Module name>
             EXPORTING
                      /1BCDWB/DOCPARAMS = fp_docparams
                      <> = <>
             IMPORTING
                     /1BCDWB/FORMOUTPUT = fp_formoutput
    Note:Other Tables are filling in the Function Module.
    Please help me on this.
    Thanks,
    Kanagaraja L

    Hi,
    Pls refer :
    Re: how to call the adobe form from se38

  • Parameter memory not initializing whwn re execute the program

    I have used parameter memory in  selection screen  of module pool program,
    The problem is when I exit from the program and re execute the transaction the parameter memory not initializing and the same value come again in the selection screen .

    Hi,
         Please read the help on Parameter memory. The parameter is filled with the value in the memory.
    Regards,
    Srini.

  • ECATT: FUN gets not filled from TESTDATA Container

    hi,
    I have a script calling a function on another system.
    I have 3 parameters I give the function.
    2 of the 3 parameters are sent correct, but one is initial (it's not initial in my testdataCont)
    I tried everything, deleted the parameter, deleted the testdata for the parameter and recreated everything but the parameter is still initial (the other 2 parameters work correct)
    any ideas?
    edit:
    test data is also shown in log of script after its run and is filled there correct, but in debugging mode it's not filled (in function module)...

    The CSS layout below fits comfortably on most average width displays.  For larger displays the layout is centered.  Note: no tables were used.  (View source in your browser to see the code)
    http://alt-web.com/TEMPLATES/Dark-Grid-II.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Balancing field "Profit Center" in line item 001 not filled

    When i am doing Posting with clearing(FB05) i am getting the below error message "Balancing field "Profit Center" in line item 001 not filled"
    Background: When we are doing the MIRO transaction we have used a diffrent profit center than it came from the Purchase Order where we have added extra cost and included the new line items under GL tab and posted the Invoice.
    Now i want to tranfer that to a diffrent Vendor and clear it. So i used FB05 transsaction. When i tired to do the transfer posting with clearing i am getting the error message "Balancing field "Profit Center" in line item 001 not filled" As we have under the document split Zero balances check box checked along with the Profit center Mandatory for field Profit Center. The system could not determine which profit center it has to use.
    Thanks in advance.

    Hi Kiran,
    Could you tell me how you are able to resolve this issue as we are having the same issue.
    Did you use the substitution rule?
    Please let us know.
    Thanks,
    Madu

  • Bal field "Profit Center" in line item 001 not filled at the time of F-53

    We are in ECC6
    I have posted a vendor document.  The entry is shown as under.
         GL                           CC     PC     Segment
    Dr     Expense GL-1     RV01     RGV1     Hyderabad
    Dr     Expense GL-2     RV02     RGV2     Mumbai
    Cr     Vednor a/c               
    but when i am posting a payment document (Dr Bank GL and Cr vendor a/c) to this vendor I am getting the following error. 
    Balancing field "Profit Center" in line item 001 not filled.
    I have check ed the configuration setting in this regard.  Zero balance, mandatory fields for profit center and segement check box is enabled.  And also the inheratence check box is also enabled.
    Pls suggest soulution soon for the above problem.

    Hi,
    Try to default the profit center in FAGL3KEH for the Bank account and try posting.
    In SAP, the vendors and customers cannot be assigned to any profit center. They derive the profit center from the profit center picked from the GL as in the case of the expense entry that you mentioned.
    Try to assign a default profit center and check.
    Regards
    Hari

  • Report parameter is not populated with exact value in stacked column click throughs

    I have stacked column chart to show below opportunity data.
    Category axis: Month of created date
    Series: sales stage
    Aggregate: runningvalue of revenue on sales stage group. 
    data set has below fields.
    1. opportunity id
    2. created date
    3. revenue
    4. sales stage.
    5. Calculated field: month of created date
    I have a sub report which shows the detail information for that month when I click on Stacked column. In order to achieve this i have to pass a report parameter with month of created date(calculated field) on the click action of main report.
    This report parameter is not getting populated when i click on the respective stacked column because of which the sub report is failing.
    Any thoughts?
    1. Category: month of the created date of opportunity(this 
    1. Category: month of the created date of opportunity(this 

    Thanks Katherine for reply. 
    Creating a subreport was never an issue, the issue was when I click on the stacked column the parameter (A) as per your screenshot was not getting populated, some times it just passes a null value.
    In my report below is the sample data and in Chart
    1. Series Aggregate is on Runningvalue of Revenue set to stage scope.
    2. CAtegory group is on Month of Created date
    3. Series group is on Stage
    4. Have a report filter for Year.
    Sub report parameter: Month which is passed when  I click on the stacked column.
    Below is sample data how my data looks like.
    id
    stage
    createdon
    revenue
    1
    U
    1/1/2013
    1000
    2
    Ir
    1/2/2013
    2000
    3
    Ir
    2/2/2013
    1000
    4
    A
    2/3/2013
    5000
    5
    A
    3/3/2013
    1000
    6
    Ir
    3/3/2013
    5000
    7
    Ir
    4/3/2013
    7000
    Below is the image of actual report
    In the above screenshot When i click on Region A or Region C for Aug Column, the Month Parameter for subreport is always null. When I click on Region B , parameter is having the
    value as "Aug". 
    Let me know is there anything I am missing.

  • I just bought a Samsung S22B310B computer monitor and hooked up to my Mac Mini. I have my mac set to the 1920X1080 resolution but the entire screen (21.5") is not filled. It looks like non HD channels do on an HD TV. Used regular hook up not DVI.

    Just bought Samsung S22B310B computer monitor and hooked it up to my mac mini. I have my mac set to the 1920X1080 resolution but the entire screen (21.5") is not filled. How do fill the screen? it fills the screen on other resolution settings. I have it hooked up regularly and not to the DVI hook up. I'm not a computer savvy person please help!

    That monitor supports both (digital) DVI and (analog) VGA connections, so you should not need a converter or use a different adapter.
    You should use the Apple Supplied HDMI to DVI Adapter and a (digital) DVI cable to the monitor.

  • Why Dynamic Parameter is not working, when i create report using stored procedure ?

    Post Author: Shashi Kant
    CA Forum: General
    Hi all
    Why Dynamic Parameter is not working, when i create report XI using stored procedure ?
    Only i shaw those parameters which i used in my stored procedure, the parameter which i create dynamic using stored procedure
    is not shown to me when i referesh the report for viewing the results.
    I have used the same procedure which i mention below but can not seen the last screen which is shown in this .
    ============================================================================================
    1. Select View > Field Explorer2. Right-click on Parameter Fields and select New from the right-click menu.3. Enter u201CCustomer Nameu201D as the name for your parameter4. Under u201CList of Valuesu201D select u201CDynamicu201D5. Under the Value column, click where is says u201Cclick here to add itemu201D and select Customer Name from the drop-down list. The dialog shown now look like the one shown below in Figure 1. Click OK to return to your report design.
    Dynamic Parameter Setup6. Next, select Report > Select Expert, select the Customer Name field and click OK.7. Using the drop-down list beside select u201CIs Equal Tou201D and using the drop-down list, select your parameter field (it should be the first field). 8. Click OK to return to your report design and see the parameter dialog.The parameter dialog will appear and show you a dynamic list of values that is updated each time your run your report. It couldnu2019t be easier! In our next tutorial, we will be looking at how to use this feature to create cascading parameter fields, where the values are filtered by the preceding selection.
    Dynamic Parameters in Action
    My question is that whether dynamic parameter is working with storedprocedure or not.
    When i added one table and try to fetch records using dyanmic prameters. after that i am not be able to find the dynamic parameter option when i referesh my report.
    One more thing when i try the static parameter for my report, the option i see when i referesh the screen.
    Please reply soon , it's urgent
    Regards
    shashi kant

    Hi Kishore,
    I have tested the issue step by step by following you description, while the first issue works well in my local environment. Based on my research, this can be caused by the lookup expression or it indeed return Male value based on the logic. If you use the
    expression below, it will indeed only return the Male record. So please try to double-check the record in the two datasets and the expression in your environment:
    =lookup(first(Fields!ProgramID.Value,"DataSet1"),Fields!ProgramID.Value,Fields!Gender.Value,"DataSet2")
    As to the second issue, please try to use the following expression:
    =Count(Lookup(fields!ProgramID.value,fields!ProgramID.value,fields!Gender.value,"DataSet2"))
    Besides, if this issue still exist, in order to trouble shoot this issue more efficiently, could you please post both the .rdl  file with all the size properties to us by the following E-mail address?  It is benefit for us to do further analysis.
    E-mail: [email protected]
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Web Page is not filling Mac Display - ene when maximized

    web pages are not completing filling the mac book display. Maximize does not fill the display, I am still able to see my screen saver on about 25 percent of the display. I downloaded the battery update last night and this problem appeared.
    Thank You

    Hi jbpdap,
    Do the following> on you right hand down corner there are a view ///// dashed lines. Now place the mouse pointer on it an drag the Safari window to the size (maximum size) you like.
    Reload the open Safari window (any web page is OKAY). Now quite Safari application> Relaunch Safari.
    If this is not working right a way do the above again ...
    Good luck ...
    Dimaxum

  • Portal Report from SQL query will not fill the page irrespective of column width.....

    I'm displaying a report in a portal and if you run in full screen the table does not fill the page.
    I can change the column width from xx percent to xx pixel and nothing makes a difference
    any ideas?

    Hi,
    Which version of portal are you using. This is a bug. It has been fixed in 30984.
    Thanks,
    Sharmila

  • 0HR_PY_1 Datasource: Fields not filled

    Hello to everyone!
    I'm afraid that I need some help from you. We are extracting HR data via 0HR_PY_1 Datasource and I have noticed that some fields are not filled by the extraction program. I've read BW Online Help about this datasource  and I have realized that the extraction program doesn´t fill these fields.
    Do you know how can I do to make these fields to be filled?
    The fields are:
    - KOKRS_CO
    Controlling area 
    Not filled
    - CO_AREA_WP
    Controlling area of master cost center
    Not filled
    -LSTAR_CO
    Debited activity type
    Not filled
    VORNR_CO
    Debited transaction
    Not filled
    GSBER_CO
    Debited business area
    Not filled
    KOSTL_CO
    Debited cost center
    Not filled
    BUKRS_CO
    Debited company code
    Not filled
    NPLNR_CO
    Debited network
    Not filled
    AUFNR_CO
    Debited order
    Not filled
    PS_POSID_CO
    Debited WBS element
    Not filled
    Thanks in advance!
    Best regards,
    Mª Victoria Durá

    Thank you very much for your help but, I'm afraid that the procedure that you explained is for enhancing the datasource but my problem is that the fields already exist but they are not filled by extraction programmes. I don't understand why does SAP make this and I was wondering if there are any way to make these fields to be filled using the standard procedure. I mean, if these fields are not filled (and SAP tells you so in BW Online Help), why these fields are included in the extract structure and in the datasource?. I tend to think that there are any procedure to follow in order to fill these fields. What do you think about it?. In adition, the not-filled-fields are CO objects so it doesn´t appear to me to be very easy the filling of them.
    I don't know if anybody has been in the same situation or if is there any documentation about it that can help. Thank you for your help!
    Mariví

  • CR 2008, all values in parameter list not showing up

    The parameter is not optional, the parameter value exists in the view on SQL server, but at report run-time, only get 5 pages of possible values to select from and user needs to go back farther to get the required report.
    I can get the report to run in full CR version by passing the value into the select expert, but users only get prompt window from the runtime version of CR.
    How can I get ALL the values of the field in the view to show up in parameter list?
    Thanks for any pointers.
    Robert

    Not sure if the help you metion is equivalnet to KB [1218588 - How to increase the number of values in a dynamic parameter list?|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313338333533383338%7D.do], but have a look.
    Also, make sure you are on SP3:
    https://smpdl.sap-ag.de/~sapidp/012002523100007123572010E/cr2008_sp3.exe
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Error Message-- For Balancing field "Profit Center" is not filled

    Hi All,
    When I do Shipment Start get Error-Message for Balancing field "Profit Center" is not filled!
    A PGI for the DNXXXXXXXX is not possible!
    Can u please help me how to resolve this issue ?
    WM Baby

    Hi,
    AS per configuration , there is prifit centre assignment  .Enter the profit centre in the field of profit centre by the help opf F4.
    Regards,
    Andra

Maybe you are looking for