No data in ALV when using MC_STYLE_ENABLED

Hi experts,
I want to display some data in a ALV-Grid control, with just one column which is editable. So the ALV-Grid looks well, when I only display the data. But when I add the attributes for the editable column into my internal table, then I cannot see any data in there. But I can see the rows with the editable column.
Here are the operations:
1) All items of an transparent table is viewed in the ALV-LIST1
2) User can select the specific rows which he/she want to edit.
3) User press a button in the toolbar of ALV-LIST1
4) The ALV-LIST2 comes up with the selected rows and one editabled column, but no data in there...
I already looked in this great example, but I cannot see any special command, posted here:
editing alv output
I also looked in the examples of BCALV_EDIT_0*.
Here is the code:
Definitions:
The method for creating the second ALV-Grid
METHOD create_alv_list2.
DATA: ls_selected_line TYPE lvc_s_row,
      lf_row_index TYPE lvc_index,
      lt_celltab TYPE lvc_t_styl,
      ls_celltab TYPE lvc_s_styl,
      l_index TYPE i,
      lt_exclude TYPE ui_functions
  IF container23 is initial.
    CREATE OBJECT container23
        EXPORTING   container_name = 'LIST_AREA2'
        EXCEPTIONS
            cntl_error = 1
            cntl_system_error = 2
            create_error = 3
            lifetime_error = 4
            lifetime_dynpro_dynpro_link = 5.
    IF sy-subrc <> 0.
      CALL FUNCTION 'POPUP_TO_INFORM'
           EXPORTING
                titel = g_repid
                txt2  = sy-subrc
                txt1  = 'Control element couldn't be created'(510).
    ENDIF.
    CREATE OBJECT alv_list2
           EXPORTING i_parent = container23.
  ELSE.
    CALL METHOD alv_list2->refresh_table_display.
  ENDIF.                               "IF container23 IS INITIAL.
* Layout
  g_lvc_layout-grid_title = 'Edit the rows'.
  g_lvc_layout-sel_mode   = ' '.
  g_lvc_layout-stylefname = 'CELLTAB'.
  CLEAR: lt_celltab,
         wa_lab_dispo2,
         it_lab_dispo2,
         wa_lab_dispo3,
         it_lab_dispo3
* catch all selected rows from ALV-Grid1
  CALL METHOD alv_list1->get_selected_rows
           IMPORTING et_index_rows = it_lvc_rows.
* write the lines into the it_lab_dispo3
  LOOP AT it_lvc_rows INTO ls_selected_line.
    lf_row_index = ls_selected_line-index.
    READ TABLE it_lab_dispo INDEX lf_row_index INTO wa_lab_dispo.
    wa_lab_dispo3-lab_dispo_struk = wa_lab_dispo.
    APPEND wa_lab_dispo3 TO it_lab_dispo3.
  ENDLOOP.
  CLEAR: wa_lab_dispo3.
* make the cell XBEME editable
  LOOP AT it_lab_dispo3 INTO wa_lab_dispo3.
    l_index = sy-tabix.
    ls_celltab-FIELDNAME = 'XBEME'.
    ls_celltab-STYLE = CL_GUI_ALV_GRID=>MC_STYLE_ENABLED.
    ls_celltab-STYLE2 = SPACE.
    ls_celltab-STYLE3 = SPACE.
    ls_celltab-STYLE4 = SPACE.
    INSERT ls_celltab INTO TABLE lt_celltab.
    INSERT LINES OF lt_celltab INTO TABLE wa_lab_dispo3-celltab.
    MODIFY it_lab_dispo3 FROM wa_lab_dispo3 INDEX l_index TRANSPORTING celltab.
  ENDLOOP.
  CALL METHOD alv_list2->set_ready_for_input
          EXPORTING i_ready_for_input = 1.
  PERFORM exclude_tb_functions CHANGING lt_exclude.
* display the second grid
  CALL METHOD alv_list2->set_table_for_first_display
       EXPORTING i_structure_name      = 'zmm_lab_dispo'
                 i_save                = 'A'
                 it_toolbar_excluding  = lt_exclude
                 is_layout             = g_lvc_layout
       CHANGING
                 it_outtab             = it_lab_dispo3[]
  CALL METHOD cl_gui_control=>set_focus
       EXPORTING control = alv_list2.
  CALL METHOD cl_gui_cfw=>flush.
  IF sy-subrc <> 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
         EXPORTING
              titel = g_repid
              txt2  = sy-subrc
              txt1  = 'Error in Flush ALV'(500).
  ENDIF.
ENDMETHOD.
<b>If I follow my coding by processing the application, I could see that in the Method "SET_VALUES (CL_ALV_VARIANT)" which was executed by "CALL METHOD alv_list2->set_table_for_first_display" the table "it_outtab" is just filled with the data of my selected rows!
And after this Method their called "FUNCTION K_KKB_PUT_GLOBALS" which has only one command: </b>
create data gs_table_row like es_table_row.
<b>And the gs_table_row has the needed deep-structure.
After it i cannot see any really intressting backend-functions related to my Problem.
</b>
I also try to do something with the fieldcatalog but in this case I only could add columns to the existing table which was editable.
Regards,
Steffen

Hi Steffen,
   Just give the name in capital letters and try:
display the second grid
  CALL METHOD alv_list2->set_table_for_first_display
       EXPORTING i_structure_name      = <b>'ZMM_LAB_DISPO'</b>
                 i_save                = 'A'
                 it_toolbar_excluding  = lt_exclude
                 is_layout             = g_lvc_layout
       CHANGING
                 it_outtab             = it_lab_dispo3[]
REgards,
Ravi

Similar Messages

  • How to retreive data from alv when using CL_GUI_ALV_GRID

    Hi All,
      I am using two subscreens to display 2 ALV grids in a screen using the OOPs concept and the class CL_GUI_ALV_GRID. I would like to download data from these two alv grids into an excel after any changes, i.e sort, filter or summation. I was able to capture data for sort and filter. The logic to capture summation and subtotals is becoming very complex. I need to simplify for better. I need help to see if there is any method which captures the changed data on the screen so that i can just call the method and retrieve the data to push into an internal table before downlaoding to excel.
    Your help is greatly appreciated.
    Thanks in advance.
    Roopa

    Step 1, define the method in class grid_hdr:
    METHODS:handle_data_changed CHANGING e_valid TYPE c.
    Step 2, process the method:
      METHOD  handle_data_changed.
        CALL METHOD zgrid->check_changed_data
          IMPORTING
            e_valid = e_valid.
      ENDMETHOD.                    "handle_data_changed
    Step 3, use the method in PAI:
      DATA l_valid TYPE c.
      CALL METHOD grid_hdr->handle_data_changed
        CHANGING
          e_valid = l_valid.
      IF l_valid = 'X'.
      ENDIF.
    Also you can search  BCALV_EDIT_* in your system.
    Edited by: SAM XIAO on Nov 17, 2009 8:03 AM

  • ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate

    ORA-01403: no data found Problem when using AUTOMATIC ROW FETCH to populate a form.
    1) Created a FORM on EMP using the wizards. This creates an AUTOMATIC ROW FETCH
    TABLE NAME - EMP
    Item Containing PRIMARY KEY - P2099_EMPNO
    Primary key column - EMPNO
    By default the automatic fetch has a ‘Process Error Message’ of ‘Unable to fetch row.’
    2) Created a HTML region. Within this region add
    text item P2099_FIND_EMPNO
    Button GET_EMP to submit
    Branch Modified the conditional branch created during button creation to set P2099_EMPNO with &P2099_FIND_EMPNO.
    If I then run the page, enter an existing employee number into P2099_EMPNO and press the GET_EMP button the form is populated correctly. But if I enter an employee that does not exist then I get the oracle error ORA-01403: no data found and no form displayed but a message at the top of the page ‘Action Processed’.I was expecting a blank form to be displayed with the message ‘Unable to fetch row.’
    I can work around this by making the automated fetch conditional so that it checks the row exists first. Modify the Fetch row from EMP automated fetch so that it is conditional
    EXIST (SQL query returns at least one row)
    select 'x'
    from EMP
    where EMPNO = :P2099_EMPNO
    But this means that when the employee exists I must be fetching from the DB twice, once for the condition and then again for the actual row fetch.
    Rather than the above work around is there something I can change so I don’t get the Oracle error? I’m now wondering if the automatic row fetch is only supposed to be used when linking a report to a form and that I should be writing the fetch process manually. The reason I haven’t at the moment is I’m trying to stick with the automatic wizard generation as much as I can.
    Any ideas?
    Thanks Pete

    Hi Mike,
    I've tried doing that but it doesn't seem to make any difference. If I turn debug on it shows below.
    0.05: Computation point: AFTER_HEADER
    0.05: Processing point: AFTER_HEADER
    0.05: ...Process "Fetch Row from EMP": DML_FETCH_ROW (AFTER_HEADER) F|#OWNER#:EMP:P2099_EMPNO:EMPNO
    0.05: Show ERROR page...
    0.05: Performing rollback...
    0.05: Processing point: AFTER_ERROR_HEADER
    I don't really wan't the error page, either nothing with the form not being populated or a message at the top of the page.
    Thanks Pete

  • Unable to insert date and time when using date datatype

    Hi
    I am hitting a bit of a problem when using the date datatype. When trying to save a row to the table where the field it throws an error ora 01830 and complains about converting the date format picture ends...etc. Now when I do the insert, I use the to_date function with the format of "dd-mon-yyyy hh24:mi:ss". Of course, when I remove the time element, everything is perfect.
    Checking sysdate, I noticed that the time element wasn't be displayed, and I used alter session set nls_date_format to set the date and time I want to save to the table, which worked!
    Then based on advice in a previous thread to permanently fix the problem, I used alter system set nls_date_format ="dd-mon-yyyy hh24:mi:ss" scope=spfile; This showed that it was altered, and I can see the setting in the em. In sqlplus, I shutdown the database, and restarted with startup mount; alter database open; and then selecting sysdate, it still shows the date as dd-mon-yy, and still no time! Checking the em, and looking up the nls_date_format the setting is still shown as "dd-mon-yyyy hh24:mi:ss".
    So, my question is this - what am I doing wrong? Why can't save date and time using date in Oracle 11g?????
    Thanks

    user633278 wrote:
    Hi
    I am hitting a bit of a problem when using the date datatype. When trying to save a row to the table where the field it throws an error ora 01830 and complains about converting the date format picture ends...etc. Now when I do the insert, I use the to_date function with the format of "dd-mon-yyyy hh24:mi:ss". Of course, when I remove the time element, everything is perfect.
    Checking sysdate, I noticed that the time element wasn't be displayed, and I used alter session set nls_date_format to set the date and time I want to save to the table, which worked!
    Then based on advice in a previous thread to permanently fix the problem, I used alter system set nls_date_format ="dd-mon-yyyy hh24:mi:ss" scope=spfile; This showed that it was altered, and I can see the setting in the em. In sqlplus, I shutdown the database, and restarted with startup mount; alter database open; and then selecting sysdate, it still shows the date as dd-mon-yy, and still no time! Checking the em, and looking up the nls_date_format the setting is still shown as "dd-mon-yyyy hh24:mi:ss".
    So, my question is this - what am I doing wrong? Why can't save date and time using date in Oracle 11g?????
    ThanksYou most certainly can save the time. A DATE column, by definition stores date and time. What you describe is a presentation problem, and setting nls_date_format at the system as an init parm is the weakest of all settings as it is overridden by several other locations.
    without seeing the exact sql that produced the error (not just your description of what you think you were doing) it is impossible to say for sure.
    However, I'd suggest you read http://edstevensdba.wordpress.com/2011/04/07/nls_date_format/

  • Data refresh bug when using inheritance?

    I am getting unexpected behaviour when using the pm.refresh(Object) method.
    Refresh works correctly and reloads data if the lock has been updated on
    tables/objects with no inheritance. However, if I try to use refresh on an
    object that is part of an inheritance hierarchy, the query that is executed
    to get the jdolockx value is missing the table join.
    Example:
    Table Entity
    id
    displayname
    jdolockx
    jdoclassx
    Table Individual (inherits from Entity)
    id
    firstName
    lastName
    jdolockx
    Query executed when calling refresh and passing in Individual
    SELECT
    t0.JDOLOCKX
    FROM
    ENTITY t0,
    INDIVIDUAL t1
    WHERE
    t1.ID = 1151
    Problem
    Missing crucial join t1.ID = t0.ID
    These classes work correctly with correct SQL when inserting/selecting.
    Any help is greatly appreciated.
    Regards
    Nathan Boyes

    Sorry, forgot to mention Kodo version
    Kodo 2.5.3
    SQLServer2000
    "nathan boyes" <[email protected]> wrote in message
    news:bmj215$qq3$[email protected]..
    I am getting unexpected behaviour when using the pm.refresh(Object)method.
    Refresh works correctly and reloads data if the lock has been updated on
    tables/objects with no inheritance. However, if I try to use refresh onan
    object that is part of an inheritance hierarchy, the query that isexecuted
    to get the jdolockx value is missing the table join.
    Example:
    Table Entity
    id
    displayname
    jdolockx
    jdoclassx
    Table Individual (inherits from Entity)
    id
    firstName
    lastName
    jdolockx
    Query executed when calling refresh and passing in Individual
    SELECT
    t0.JDOLOCKX
    FROM
    ENTITY t0,
    INDIVIDUAL t1
    WHERE
    t1.ID = 1151
    Problem
    Missing crucial join t1.ID = t0.ID
    These classes work correctly with correct SQL when inserting/selecting.
    Any help is greatly appreciated.
    Regards
    Nathan Boyes

  • Where does the date come from when using Tip type = dateFormat

    Hi,
    Can anyone tell me when using personilizations where the date that is shown comes from when using tip type = dateFormat? Today it shows (example: 24-Sep-2012) but yesterday it was the 23rd so seems to increment by one day. Is there a way to change the date shown here, to sysdate for example?
    Thanks

    Hi,
    You can check Inline Messaging, Tips, Hints and Bubble Text section in OA Framework Developer Guide
    Thanks,
    Jit

  • APEX bug:9879227 (ORA-01403: no data found error when using validations)

    Hi,
    We are getting the
    ORA-01403: no data found error
    when the APEX page has validations AND a tabular form is also present on the page.
    I did see a couple of other forum links discussing the issue (bug id: 9879227 ?? ).
    But what i want to get a confirmation on is, in which release was this bug really fixed ?
    i see the release notes of 4.0.1.00.03 claiming that it is fixed
    in the release.
    we are on 4.0.1.00.03. is this bug really solved in release 4.0.1.00.03?
    are there any known work-arounds ? i tried re-creating the report multiple times, but that did not help.
    Any suggestions or work-arounds will greatly help us.
    Regards,
    Ramakrishnan

    Ramakrishnan,
    If you are talking about getting no data found when trying to save the report then take a look at the last message in this thread:
    {message:id=9971445}
    Cheers,
    Tyson Jouglet

  • Automatic Display of NEW Data in ALV Report using Classes and Methods

    Hi,
    I have developed a ALV Report for displaying data from a set of DB tables using ABAP OO, Classes and Methods. The requirement is to have the report output to be automatically updated with the new entries from the DB table at a regular frequency of tiem may be every two minutes.
    Could anyone please tell me how can this be acheived.
    Thanks and regards,
    Raghavendra Goutham P.

    Yes its possible.
    Take a look at this thread
    Auto refresh of ALV Grid, without user interaction
    Or Rich's blog
    /people/rich.heilman2/blog/2005/10/18/a-look-at-clguitimer-in-46c
    Regards,
    Ravi
    Note : Please mark all the helpful answers

  • Missing data in selects when using statistics

    Hello,
    I've got a really strange thing:
    We have a small table (say 20 records) and are using schema statistics.
    Now after inserting a row in this table, in de selects this row is NOT found!!
    Found out that when updating the statistics this record is found!
    So, could it be that using statistics (probably in a wrong way!) the results are changing?

    Ed, was the query issued from the same session as the insert? Was the data committed?
    On a post like this along with the edition and full Oracle version you should have posted the SQL that can duplciate the problem.
    HTH -- Mark D Powell --

  • How can I open a file and get the data inside  file when using  WebStart

    When I use ClassLoader,
    Which methold can I use the read the information inside that file?
    Thanks
    Ryan

    Assuming you are trying to read the jar file.
    http://forum.java.sun.com/thread.jspa?forumID=22&threadID=572955
    rykk

  • Accessing data from schema when using ftp adapter

    Hi all,
    Below is an example of the data i receive from my ftp adapter, i read the entire file into my schema:
    <Header>
    <batch_filler1>*BATCH</batch_filler1>
    <batch_number>08110</batch_number>
    <batch_date>20090417</batch_date>
    <batch_extra>KW1310</batch_extra>
    </Header>
    -<Detail>
    <cost_centre_comment>W1310</cost_centre_comment>
    <cost_centre_code_comment>01310</cost_centre_code_comment>
    <amount>-3000.00</amount>
    <filler1/>
    <payment_method>T</payment_method>
    <description>TSHWANE MULTI SKILL FEATURE CONTRACTORS</description>
    <receipt_number>338516</receipt_number>
    <date_comment>20090417</date_comment>
    <bill_to_cust_id>11748885</bill_to_cust_id>
    <ref_value>999999</ref_value>
    <detail_extra/>
    *</Detail>*
    -<Detail>
    <cost_centre_comment>W1310</cost_centre_comment>
    <cost_centre_code_comment>01310</cost_centre_code_comment>
    <amount>-1870.00</amount>
    <filler1/>
    <payment_method>T</payment_method>
    <description>UNIVERSITY OF SOUTH UNIVERSITY SOOUTH AF</description>
    <receipt_number>338517</receipt_number>
    <date_comment>20090417</date_comment>
    <bill_to_cust_id>10414916</bill_to_cust_id>
    <ref_value>048630</ref_value>
    <detail_extra/>
    *</Detail>*
    -<Detail>
    <cost_centre_comment>W1310</cost_centre_comment>
    <cost_centre_code_comment>01310</cost_centre_code_comment>
    <amount>-300.00</amount>
    <filler1/>
    <payment_method>T</payment_method>
    <description>VET & AGRIC CONSULTA RB JACKSON</description>
    <receipt_number>338549</receipt_number>
    <date_comment>20090417</date_comment>
    <bill_to_cust_id>11462639</bill_to_cust_id>
    <ref_value>048893</ref_value>
    <detail_extra/>
    *</Detail>*
    -<Trailer>
    <cost_centre>W801408014</cost_centre>
    <amount>18467.13</amount>
    <trailer_extra>GROOTTOTAAL VIR W8014/8014 OP 20090417 BONDEL 08110 08110 20090417</trailer_extra>
    </Trailer>
    As you can see i have multiple data for Detail, i need to loop through my schema for Detail and take the values and pass it on. How do you reference a particular Detail in bpel ?
    An example would be if i want the 2nd Detail amount which is -300.00, do i reference it with a [1] as in arrays ?
    Thanks

    it depends on what you want to do. Generally waht people do is map to a partner link, e.g. another service. In most situations the same structure is required for the target.
    The transform activity is the best way to many multi nodes. You have the choose / if conditions that allow you to test conditions, if they match then you perform the map.
    One thing that catches people out is the use of the for-each, if this is not specified only one row is mapped.
    http://download-uk.oracle.com/docs/cd/B31017_01/integrate.1013/b28987/phase6.htm#sthref405
    cheers
    James

  • Attaining Hot spot in ALV Tree Using OOPS concept

    Hi All,
    In our requirement we are displaying the data in ALV Tree Using OOPS.
    We need to achieve hot spot on one of the header field.
    I am using  Class 'CL_GUI_ALV_TREE'
    Ex:
    CreditAccnt/ Company codes            DSO    DDSO
    26                                                   15        15
       8000                                              5          5
       8545                                             10        10
    In the above example for every credit accnt in header we r displaying the values ( DSO ,DDSO) for all company codes.
    Now we require hot spot on Credit Accnt 26. Such that when user clicks on the credit accnt it should navigate to another transaction.
    NOTE: we havent build any field catalogue for field CreditAccnt/ Company codes .

    Hi,
    You can refer to the tutorial -
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/an%20easy%20reference%20for%20alv%20grid%20control.pdf
    Or try using the code below-
    CLASS lcl_event_receiver DEFINITION
    CLASS lcl_event_receiver DEFINITION.
    PUBLIC SECTION.
    CLASS-METHODS:
    Hot Spot Click
    handle_hotspot
    FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id
    e_column_id
    es_row_no,
    ENDCLASS.
    Implementation
    *& Method handle_hotspot
    This method is called when the user clicks on a hotspot to drill down.
    The following types are exported from the ALV
    LVC_S_ROW
    LVC_S_COL
    LVC_S_ROID
    METHOD handle_hotspot.
    The hotspot processing coded in the form below.
    PERFORM f9802_handle_hotspot USING e_row_id
    e_column_id
    es_row_no.
    ENDMETHOD.
    *& Form f9802_handle_hotspot
    This form is called when the user clicks on a hotspot on the ALV grid
    The parameters are of type
    -->P_E_ROW text
    -->P_E_COL text
    -->P_E_ROID text
    FORM f9802_handle_hotspot USING p_row
    p_col
    p_roid.
    DATA: lw_output LIKE LINE OF i_output.
    READ TABLE i_output INDEX p_row INTO lw_output.
    SET PARAMETER ID 'MAT' FIELD lw_output-matnr.
    CALL TRANSACTION 'MM02' AND SKIP FIRST SCREEN.
    ENDFORM. " f9802_handle_hotspot
    FORM f9300_modify_field_cat TABLES p_fieldcat STRUCTURE lvc_s_fcat.
    Field-symbols: <lfs_fieldcat> TYPE lvc_s_fcat.
    LOOP AT p_fieldcat ASSIGNING <lfs_fieldcat>.
    CASE <lfs_fieldcat>-fieldname.
    WHEN 'MATNR'.
    <lfs_fieldcat>-hotspot = c_x.
    <lfs_fieldcat>-key = c_x.
    WHEN OTHERS.
    ENDCASE.
    ENDLOOP.
    ENDFORM.
    In PBO,
    module STATUS_9001 output.
    Set handlers for events
    SET HANDLER o_eventreceiver->handle_hotspot FOR o_Alvgrid.
    ENDMODULE.
    Hope this helps

  • S_ARL_87012357 when using plants abroad

    Dear SAP experts,
    when I activate plants abroad functionality, I have a company code in CH with plant abroad in BE. I created a PO to a German external supplier and used my plant abroad in BE as the receiving plant. All went well.
    However when running VAT return report S_ARL_87012357 with reporting country BE, so the country of my plant abroad, the report shows the VAT registration of the company code country and not the VAT Registration that the Swiss company has in reporting country BE where I created my transactions. Tax codes are correct. What do I need to change in the system to display the correct VAT Registration?
    Thanks a million for any help.
    Kind regards, Maria

    swayzak wrote:
    If I don't want any data / network charges when using my 5800XM abroad for Ovi maps, do I just make sure that only "Integrated GPS" is selected in Positioning Methods ? 
    You are correct in your assertion. The WiFi/Network positioning method introduced in OVI Maps v3.04 is Nokia's interpretation of the similar Maps Booster application which utilises the Skyhook network where WLAN access point is logged geographically. Essentially the more users whom add data the more accurate the system becomes.
    You can of course use "Roaming warning" in OVI Maps here:
    and Disable Positioning server use here:
    Happy to have helped forum with a Support Ratio = 42.5

  • When using autosequence, skip line if channel don't exists

    When using dynamic data, i don't always have the same data.  So when using vbs sequence I need to formulated that a calculation is only executed if the channel is present. If not, i need the calculation line to be skipped. How is this defined in a vbs sequence?

    Hello,
    you could use an if - then construct and test the existance of the channel with the cno() Function.
    Cno("Speed") will giv you the number of the speed channel - if it exists. Otherwise the function will return 0.
    If you do not know the channel name and would like to check for the number, use the variable globusedchn to find out how many channels are allocated at the moment.
    regards
    Ingo Schumacher
    Systems Engineer Sound&VibrationNational Instruments Germany

  • Leading Zeros Missing - When exporting data from ALV grid display to Excel

    Hi,
    Am exporting the data from ALV GRID DISPLAY to Excel sheet using standard toolbar icon 'Local file'
    the leading zeros displayed in the ALV output is missing in the EXCEL sheet.
    (eg)  in ALV o/p - 0029. 
            in Excel - Only 29 is appearing.
    As per the requiement i have to show the leading zeros in excel also.
    Pls help on this issue.
    Thanks in advance..

    Hi ,
      Please set the property  :
      wa_fieldcat-lzero = 'X' .
    when you are creating field catalog for display alv data .
    your prob will solved .
    Regards ,
    Nilesh Jain

Maybe you are looking for

  • Another "duplicate email" problem.

    I asked the following question over on the Office 2013 forum and the only response I got basically told me to "go ask this on the Outlook forum", so here goes: "I too am experiencing rabid email duplication with Outlook 2013.  I've found a way to avo

  • Oracle 9i and 10G professionals required

    Hi All, A company in Tanzania is looking for Oracle 9i and 10G professionals for immediate requirement. Those who are looking for change and has 4 to 5 years experience can send in your resumes to [email protected] Indians are preffered. Mention "ORJ

  • Object tag problem

    hi all...... i unable to identify where sould i make changes to use java plug in from installed jre 1.6 in my system?? i m using jdk1.6.0,IE7.0,xp sp2 please mark the line and suggest me!! below is my jsp page       <OBJECT classid="clsid:8AD9C840-04

  • Recreating the data definition for a RTF template

    All, I created a data definition (with the respective Concurrent Program code) then it was associated with the respective RTF template. I didn't like the template so I created another RFT file. For that reason I had to disable the first template by s

  • "Missing Disks" Error Message - Unable to open FCP

    Every time I tried to open FCP, a "missing disks" error message shows up and prevents me from opening the application. It says, "To preserve the integrity of the date used by Final Cut Pro, it is necessary to ensure the existence of the following pat