Problem in displaying output - MBLNR FIELD

Hi,
I had developed a code in which i am not able to display the 1st fields properly in the output i.e. mblnr field.
In debugg mode i am able to fetch data coreectly for it ,but whne it comes to the display it shows no correct data for that field and rest of the fields data is correct.
here's d code:-
Tables: RSEG,MKPF.
DATA: BEGIN OF ITBKPF OCCURS 0,
      BUKRS LIKE BKPF-BUKRS,
      BELNR LIKE BKPF-BELNR,
      GJAHR LIKE BKPF-GJAHR,
      AWKEY LIKE BKPF-AWKEY,
      BUDAT LIKE BKPF-BUDAT,
      XBLNR LIKE BKPF-XBLNR,
      AWTYP LIKE BKPF-AWTYP,
      END OF ITBKPF.
DATA: BEGIN OF ITAB2 OCCURS 0,
      BUKRS LIKE BSIK-BUKRS,
      GJAHR LIKE BSIK-GJAHR,
      XBLNR LIKE BSIK-XBLNR,
      BELNR LIKE BSIK-BELNR,
      WRBTR LIKE BSIK-WRBTR,
      LIFNR LIKE BSIK-LIFNR,
      END OF ITAB2.
DATA: BEGIN OF ITDEMO OCCURS 0,
      BELNR LIKE RSEG-BELNR,
      GJAHR LIKE RSEG-GJAHR,
      LFBNR LIKE RSEG-LFBNR,
      END OF ITDEMO.
DATA: BEGIN OF ITFINAL OCCURS 0,
      BUKRS LIKE BKPF-BUKRS,
      BELNR LIKE BKPF-BELNR,
      GJAHR LIKE BKPF-GJAHR,
      AWTYP LIKE BKPF-AWTYP,
      AWKEY LIKE BKPF-AWKEY,
      MBLNR LIKE MKPF-MBLNR,
      MJAHR LIKE MKPF-MJAHR,
      LFBNR LIKE RSEG-LFBNR,
      WRBTR LIKE BSIK-WRBTR,
      LIFNR LIKE BSIK-LIFNR,
      END OF ITFINAL.
*SELECT-OPTIONS: S_MBLNR FOR MKPF-MBLNR.
SELECT-OPTIONS: P_LFBNR FOR RSEG-LFBNR.
START-OF-SELECTION.
BKPF
    SELECT BUKRS BELNR GJAHR AWKEY BUDAT XBLNR AWTYP
    FROM BKPF
    INTO (ITBKPF-BUKRS,ITBKPF-BELNR,ITBKPF-GJAHR,
         ITBKPF-AWKEY,ITBKPF-BUDAT,ITBKPF-XBLNR,ITBKPF-AWTYP)
    WHERE AWTYP EQ 'MKPF' OR AWTYP EQ 'RMRP'.
MKPF
***********BEGIN OF TRY CODE***********
    ITDEMO-BELNR = ITBKPF-AWKEY(10).
    ITDEMO-GJAHR = ITBKPF-AWKEY+10(4).
    SELECT LFBNR FROM RSEG INTO
    (ITDEMO-LFBNR) WHERE
    BELNR EQ ITBKPF-AWKEY(10)
    AND GJAHR EQ ITBKPF-AWKEY+10(4) AND LFBNR > 0.
***********END OF TRY CODE**************
  CHECK SY-SUBRC EQ 0 AND ITDEMO-LFBNR IN P_LFBNR.
BSIK
    ITAB2-BUKRS = ITBKPF-BUKRS.
    ITAB2-GJAHR = ITBKPF-GJAHR.
    ITAB2-BELNR = ITBKPF-BELNR.
    ITAB2-XBLNR = ITBKPF-XBLNR.
    SELECT WRBTR LIFNR FROM BSIK
    INTO (ITAB2-WRBTR, ITAB2-LIFNR)
    WHERE BUKRS EQ ITBKPF-BUKRS
      AND GJAHR EQ ITBKPF-GJAHR
      AND BELNR EQ ITBKPF-BELNR
      AND XBLNR EQ ITBKPF-XBLNR.
    APPEND ITAB2.
    EXIT.
    ENDSELECT.
  CHECK sy-subrc EQ 0?
    APPEND ITDEMO.
    EXIT.
    ENDSELECT.
    APPEND ITBKPF.
    ENDSELECT.
Fields Found?
  READ TABLE ITBKPF TRANSPORTING NO FIELDS INDEX 1.
  IF sy-subrc NE 0.
    MESSAGE i000(zmm1) WITH 'No documents found!'.
  ENDIF.
Prepare Output
  LOOP AT ITBKPF.
    CLEAR ITAB2.
    READ TABLE ITAB2
    WITH KEY   BUKRS = ITBKPF-BUKRS
               BELNR = ITBKPF-BELNR
               GJAHR = ITBKPF-GJAHR
               XBLNR = ITBKPF-XBLNR.
    ITFINAL-MBLNR = ITDEMO-LFBNR.
    ITFINAL-BELNR = ITBKPF-BELNR.
    ITFINAL-GJAHR = ITBKPF-GJAHR.
    ITFINAL-AWKEY = ITBKPF-AWKEY.
    ITFINAL-WRBTR = ITAB2-WRBTR.
    ITFINAL-LIFNR = ITAB2-LIFNR.
    APPEND ITFINAL.
    CLEAR  ITFINAL.
  ENDLOOP.
DELETE ITFINAL WHERE WRBTR = 0.
END-OF-SELECTION
END-OF-SELECTION.
DELETE ITFINAL WHERE WRBTR = 0.
Output
  LOOP AT ITFINAL.
    WRITE: / ITFINAL-MBLNR,ITFINAL-BELNR, ITFINAL-GJAHR,ITFINAL-AWKEY, ITFINAL-WRBTR, ITFINAL-LIFNR.
  ENDLOOP.

HI,
  Don't use offset values in the WHERE class of SELECT. I replied the same thing in the first day in your earlier posting.
Check the below code.....
CLEAR : lv_belnr,lv_gjahr.
lv_belnr = ITBKPF-AWKEY(10).
lv_gjahr = ITBKPF-AWKEY+10(4).
SELECT LFBNR FROM RSEG INTO
(ITDEMO-LFBNR) WHERE
BELNR EQ lv_belnr
AND GJAHR EQ lv_gjahr
AND LFBNR > 0.
Rgds,
Bujji

Similar Messages

  • Problem In Displaying Smartform Text Field In Qual & Prd Server

    Hi All,
    I am working on a smartform in which i am checking the field which is displaying fine in quality server but when it is transported to PRD server it is displaying text field  in the smartform having ms word document which is giving me problem in displaying in the PRD Server.
    Please provide me guideline for it..

    Hi Sarvan,
    Post the code in code format.Check on the right side for example.
    Sy-subrc  = 0
    Regards,
    Madhu.

  • Search help problem in ALV output for field TD24A-DISMM

    Hi Abap-Experts,
          I have one issue regarding simple ALV report.
          I need to display search-help for field DISMM.  I have used below code in ALV fieldcatalog.
          ts_fieldcat - tabname = 'TD24A'.
          ts_fieldcat - tabname = 'DISMM'.
          I have attached search-help for fields such as MATNR and WERKS too.
          The search-helps are getting displayed for MATNR as well as WERKS.
          But, the search-help is not gettting displayed for field DISMM(RP-TYPE) .
             The output displayed is done using Simple ALV.     
            Could anyone please help me and correct my code or logic i have used.

    Hi,
      I have changed code a bit...and used T438A table.
      CLEAR ts_fieldcat.
      ts_fieldcat-col_pos = '5'.
      ts_fieldcat-fieldname = 'DISMM'.
      ts_fieldcat-seltext_l = text-014.
      ts_fieldcat-outputlen =  2.
      ts_fieldcat-reptext_ddic  = ''.
      ts_fieldcat-ref_tabname   = 'T438A'.
      ts_fieldcat-ref_fieldname = 'DISMM'.
    ts_fieldcat-ddic_outputlen = '2'.
      ts_fieldcat-input         = 'X'.
      APPEND ts_fieldcat TO gt_fieldcat.
    still it is not showing me the F4 help in simplae ALV output..
    kindly help me

  • Problem with displaying a standard field in Personal Data iView

    Hi,
    I'm trying to display the field 'Nickname' from  infotype 0002 in the Personal Data iView.  I searched SDN and SAP Help and all of the replies/documentation refers to "Maintain V_T588MFPROPC".  I want to display this field in the Edit and the Review and Save screens.
    The steps given in this forum seem straightforward but in reality it's a nightmare.  I've spent days and nights debugging and testing, but still couldn't solve this.  I can see from my debugging that the field is filled in with the appropriate values in all the internal tables/structures but it is not shown at all in the iView.  What I got from maintaining V_T588MFPROPC is just the field's attributes.
    How do I actually display the field in the Review and Save screens of the Personal Data iView?  Does this involving modification to the iView Java program?  Can anyone help?
    Thanks in advance.

    V_T588MFPROPC is the table where you add the technical field name for the country version you are using
    like for USA it is 10
    Now the same field if supported should appear in all screens, it if it not then you would need java modification
    of the ess component
    http://wiki.sdn.sap.com/wiki/display/profile/ESSPersonalInformationUIenhancementwithoutmodification
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?spaceKey=profile&title=ESSPersonalInformationUIenhancementwithoutmodification&decorator=printable

  • Problem in displaying output in sapscript

    Hi,
    I am working on the sapscript in which i am having 2 problems i.e. there is a footer window in which there is a box in which i want to draw the line so that it can be divided into 2 parts .
    here's d code for it:-
    SB           Remarks: &WLINES(120)&
    SB           &WLINES+120(120)&
    /:           BOX XPOS '0' CH YPOS '4' LN WIDTH '114' CH HEIGHT '0' LN FRAME '10' TW
    SB           THIS IS A COMPUTER GENERATED REPORT AND DOESNOT REQUIRE A SIGNATURE
    /*           &WLINES(80)&
    The 2nd problem is of the long text(description) of a thing in which the text  gets divided when the line changed in a purticular column.is dere any way through which the text do not get divided when the line chnages.
    Plzz provide me guidlines to solve this problem .
    Edited by: ricx .s on May 4, 2009 10:07 AM

    hi,
    but there is a code written and should i use it for the whoel code.does it going to effect the whole codiing?
    here;s d code:-
    /E           FINAL
    C1           &i_final-count_c(3Z)& &i_final-text_c(24)& &i_final-result_c(8)&
               &i_final-count_m(3)& &i_final-text_m(22)& &i_final-result_m(8)&
               &i_final-nonconfirm_m(10)&  &i_final-count_mi(3)& &i_final-text_mi(25)&
    =            &i_final-result_mi(8)& &i_final-nonconfirm_mi&
    /*           **** CHANGE THE NAME OF VARIABLE C, M AND MI RESPECTIVELY
    /*           FOR CRITICAL PROPERTIES
    /:           IF &I_FINAL-TEXT_C+24(16)& NE '                '
    C1               &i_final-text_c+24(16)&,,,,&i_final-result_c+8(8)&,,
                  &i_final-text_m+22(18)&,,   &i_final-result_m+8(8)&,,,,,,,,
               &i_final-text_mi+25(15)&,,,, &i_final-result_mi+8(8)&
    /:           ELSEIF &I_FINAL-RESULT_C+8(8)& NE '        '.
               &temp(40)&   &i_final-result_c+8(8)&,,  &i_final-text_m+22(18)&
    =           ,,  &i_final-result_m+8(8)&,,,,,,,, &i_final-text_mi+25(15)&,,
    =           &i_final-result_mi+8(8)&
    /*           FOR MAJOR
    /:           ELSEIF &I_FINAL-TEXT_M+22(18)& NE '                  '
    C1               &i_final-text_c+24(16)&,,,,&i_final-result_c+8(8)&,,
                  &i_final-text_m+22(18)&,,  &i_final-result_m+8(8)&,,,,,,,,
               &i_final-text_mi+25(15)&,,,,  &i_final-result_mi+8(8)&
    /:           ELSEIF &I_FINAL-RESULT_M+8(8)& NE '        '
    C1               &i_final-text_c+24(16)&,,,,&i_final-result_c+8(8)&,,
                  &i_final-text_m+22(18)&,,  &i_final-result_m+8(8)&,,,,,,,,
               &i_final-text_mi+25(15)&,,,,  &i_final-result_mi+8(8)&
    /:           ELSEIF &I_FINAL-TEXT_MI+25(15)& NE '               '
    C1               &i_final-text_c+24(16)&,,,,&i_final-result_c+8(8)&,,
                  &i_final-text_m+22(18)&,,  &i_final-result_m+8(8)&,,,,,,,,
               &i_final-text_mi+25(15)&,,,,  &i_final-result_mi+8(8)&
    /:           ELSEIF &I_FINAL-RESULT_MI+8(8)& NE '        '
    C1               &i_final-text_c+24(16)&,,,,&i_final-result_c+8(8)&,,
                  &i_final-text_m+22(18)&,,  &i_final-result_m+8(8)&,,,,,,,,
               &i_final-text_mi+25(15)&,,,,  &i_final-result_mi+8(8)&
    /:           ENDIF.
    /E           BREAK
    /:           NEW-PAGE
    plzz provide me guidlines to solve this problem.

  • ALV output problem in displaying the field lengths.( LONG_DES1 & LONG DES)

    I have  declared itab of ALV output like below...
    Internal table for ALV report generation***********
    DATA : Begin of pdet_otab_alv occurs 0,
            bukrs LIKE bsid-bukrs, "Company code
            postm(4),              "Posting month (YYMM format)
            xblnr LIKE bsid-xblnr, "Reference document number
            kunnr LIKE bsid-kunnr, "Customer (Supplier Billing Customer)
            name1 LIKE kna1-name1,                              "Name 1
            buzei like bsid-buzei,
            gjahr like bsid-gjahr,
            filkd like bsid-filkd, "Rep Number
            rname like kna1-name1, "Rep Name
            belnr LIKE bsid-belnr, "Document number (invoice number)
            blart LIKE bsid-blart, "Document type
            zfbdt LIKE bsid-zfbdt, "Baseline date
            zterm LIKE knb1-zterm, "Terms
            netdt LIKE bsega-netdt,"Due date
            sgtxt LIKE bsid-sgtxt, "Text
            agerg TYPE t_agerg,    "Age range of invoice
            wrbtr LIKE bsid-wrbtr, "Original invoice amount
            due   LIKE bsid-wrbtr, "Amount outstanding on invoice
           long_des(250) type c,   " Long description
    <b>            long_des  TYPE string,
                long_des1 TYPE string,</b>      
          date_s(10) type c,  " Date
            short_des(20) type c,  " Short Description
            counter type i,
           End of pdet_otab_alv.
    And after filling the internal table fields ( fields 'LONG_DES1' & 'LONG_DES'  from FM READ_TEXT 's longtext, which are  of 265 chars each )
    <b>'LONG_DES1' & 'LONG_DES' are trimmed  in ALV out put  WHY ?</b>
      w_fieldcat-fieldname = 'LONG_DES1'.
      w_fieldcat-tabname   = 'PDEL_OTAB_ALV'.
    w_fieldcat-ref_fieldname = 'SCRTEXT_L'.
    w_fieldcat-ref_tabname   = 'DD03P'.
      w_fieldcat-seltext_l = 'Original Note'.
      w_fieldcat-col_pos   = 17.
      APPEND w_fieldcat TO fieldcat.
      CLEAR w_fieldcat.
      w_fieldcat-fieldname = 'LONG_DES'.
      w_fieldcat-tabname   =  'PDEL_OTAB_ALV'.
    w_fieldcat-ref_fieldname = 'SCRTEXT_L'.
    w_fieldcat-ref_tabname   = 'DD03P'.
      w_fieldcat-seltext_l = 'Latest Note'.
      w_fieldcat-col_pos   = 18.
      APPEND w_fieldcat TO fieldcat.
      CLEAR w_fieldcat.
    <b>next part i.e.,   before passing fieldcat.... I have filled s_layout like below.</b>
    <b>  s_layout-max_linesize = 1000.
      s_layout-colwidth_optimize = 'X'.</b>
    Call the following function to display output in ALV form
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program = 'ZFRSBOI0'
                is_layout          = s_layout
                it_fieldcat        = fieldcat
                it_events          = p_events[]
               it_sort            = p_it_sort[]
                i_save             = 'A'
           TABLES
                t_outtab           = pdet_otab_alv1
           EXCEPTIONS
                program_error      = 1
                OTHERS             = 2.
    If the function call is not successful, raise error message
    and come out from the program
      IF sy-subrc <> 0.
        message e000(00) with
                          'Unable to display report'(e01).
        exit.
      ENDIF.

    some body suggested me....we can display full length of text by below coding ?
    Is that not correct - just asking....
    s_layout-max_linesize = 1000.
    s_layout-colwidth_optimize = 'X'.
    Call the following function to display output in ALV form
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    i_callback_program = 'ZFRSBOI0'
    is_layout = s_layout
    it_fieldcat = fieldcat
    it_events = p_events[]
    it_sort = p_it_sort[]
    i_save = 'A'
    TABLES
    t_outtab = pdet_otab_alv1
    EXCEPTIONS
    program_error = 1
    OTHERS = 2.
    If the function call is not successful, raise error message
    and come out from the program
    IF sy-subrc <> 0.
    message e000(00) with
    'Unable to display report'(e01).
    exit.
    ENDIF.

  • To Display Output in Grid ALV with change of some field display total with

    Hi Masters,
    I m working on ALV in which  i have to display output with the following format.
    Header
    "Some String"                                                             date/time                                                                               
    User:XYZ01       page 1 
    Line
    1st field    2nd    3rd     4th       5th   6th    7th   8th   9th  10th field
    x               y       z        A        B     C       D     E      F       G
    BLANK..............................................................................                            
                          "total 3rd+4TH"           P        Q     R      S        T       
    same thing for every change of 4th field .
    So the problem is with inserting the line with string "Total of 3rd+4th" in the output .
    Can Anyone help me out?
    Thanks ,
    Varlani Amit

    Hi,
    Use control-break statement ON-CHANGE for the 4th field, and do the changes.
    regards,
    sri

  • Problem with displaying same field in three columns

    Hi
    I am using reports developer 11g and I have created a report which displays only one field (column), which is id_number as output but I have a problem now.
    I would like to display the id_number in three columns on one page to save paper, that is, I want to show the first 20 (1 - 20) id_numbers in one column going down, then display the next 20 id_numbers (21 - 40) on the second column on the same page and the next 20 (41 - 60) on the third column still on the same page. If there are more than 60 id_numbers, they should be printed on the next page again in three columns, and so on until all the id_numbers are displayed. How can I achieve this? Could you please assist me?
    Thanks.

    Andreas, I think I am missing something here. I have done what you have said but still the id_numbers are all being displayed
    in the first column and jumps on to the next page without displaying the id_numbers across the page in columns.
    My data model contains a group with not only the id_number but has other fields which I am not displaying.
    I am only using the other fields just to use them in conditions to select only id_numbers which meet a certain criteria which I then display in the report.
    I have created a repeating frame for that group and changed the orientation property to Down/Across. Within that frame, I have a field for the id_number
    which I want displayed in three columns, running across the page as I have already told you. Please help.
    Thanks.

  • Problem in displaying Alv grid output  using oops........

    hi,
    i have two problems in displaying ALV grid output Using Oops.
    1) How to modify the fieldcatalog after we getting a field catalog using general FM.
    2) initialy it is displaying 13 fields but there are 63 fields .
       eventhough we chage the layout to 63 fields it is displaying only 13 fields , these 13 fields may be different based on our selection but count  of displayed fileds are same . how can display 63 fields at a time .

    Hi,
    You can chnage using below code:
    loop at gt_fieldcat.
    if <gt_fieldcat-field_name> = 'FIELDNAME'.
    endif.
    modify gt_fieldcat.
    clear gt_fieldcat.
    endloop.
    Make sure that all the field should not have no_out = 'X' and tech = 'X'.
    Thanks,
    Sriram Ponna.

  • Problem in displaying a field in webdynpro using Adaptive RFC model

    HI,
    I created a webdynpro application using adaptive RFC model and i have a problem in displaying one of the output fields.
    When i execute the function module it is giving the exact value for my output field in this case telephone number (of type STEXT which is char with length 40).But when i am trying to display that telephone number in webdynpro application it is taking only first 4 digits.
    i deleted the model and recreated it still it doesnot work.
    please let me know how to resolve it.
    points will be awarded for sure
    Bala

    Hi Bala,
    Whenever you reimport the model server restart is necessary otherwise the changes will not get reflected. You will get an error when you deploy the application.There is no go around except restarting the server as the meta data gets cached in the server as long as the server is runnig.So, Once you restart the server the cache will be cleared.
    Check once again whether you are fetching data from correct BAPI field. Still problem persist try debugging.
    Regards, Suresh KB

  • Fields missing in ALV grid display output

    Hello  Friends,
    I have done customer enhancement to VF04 tcode and i have added 2 new additional fields to the existing output.The program is working fine and its displaying the 2 new additional fields in the output display in development server.
    But when i transported the program to Q server and i have observed that the 2 new additonal fields are not displayed in the output display but when I  am selecting  'choose detail' push button on application tool bar it's showing the 2 new additional fields.In development server in the output 40 fields are displayed but in Q server only 9 fields are displayed.
    Could you please help me regarding this.
    Thanks in advance,
    Arvind.

    register the enhancementy to the project in Q server .. might be it is not transferred

  • Problem to display a negative number in XML Publisher output in excel

    Hi All,
    I am facing problem in displaying a negative number in XML Publisher output in excel.
    My requirement is that I have to display a negative number in brackets when the output is taken in excel format. Eg: If the value is -123 then i have to display it as (123).
    I have put these brackets using a formula column in the RDF, but it is the default functionality of excel that whenever there is a number in brackets then it automatically displays that as a negative value.
    Can anyone please help me how I can display this negative number within brackets and not as a negative digit. Is there any special tag or is there any formula which can be used to convert this into text and written in the Help text of RTF template.
    This is very urgent. If someone knows please reply asap.
    Regards,
    Shruti

    This is very urgent. If someone knows please reply asap.We are all volunteers here, so no ones questions are more urgent then other ones.
    If its that urgent it would have helped if you had chosen the correct forum to ask your question BI Publisher

  • Problem in displaying quantity in screen field.

    Hi all,
    Am facing a problem in displaying the quantity in a screen.
    In my program,am displaying the material no , unrestricted stock , blocked stock and the related pending prs for that material  say
    mat no - 6021  Un.Res.Stock - 100  blocked stock 10 .
    if 2 PRs are pending for tat material, i hav to display in this for mat
    Mat.no   Un.res.Stock    Blockd stock      pend.pr
    6021        100                 10                    100012
                                                                 100013.
    But here am getting
    Mat.no   Un.res.Stock    Blockd stock      pend.pr
    6021        100                 10                    100012
                    0.00                0.00                 100013.
    am using table control for the screen.
    i dont want 0.00 to get displayed below the Un.res qty.
    since it is a quantity field it is getting displayed with 0.00
    Can it be solved?
    Thanks
    Priya

    Hi,
    one thing can be done that before passing the data to the table control take work varibale of char type and pass the PRS values to that variable using MOVE Keyword  and then to the table control .
    ie. data :
         w_prs(10) type c.
    move wa_prs to w_prs. 
    " pass w_prs to the table control
    Hope u got the idea...
    thanks
    ravi

  • Display Problem in ALV output

    Hi Experts,
    My fieldcatalog table is populated by using FM "REUSE_ALV_FIELDCATALOG_MERGE". But the fields qfieldname & qtabname is populated for one of the records in the catalog table which  is creating problem in my output.
    qfieldname is populated with previous fieldname in my internal table declared and qtabname with my int.table name. I was trying to sum the field but the value is splitted here.
    when i manually remove qfieldname & qtabname am getting proper output.
    why this two fields are populated? could anyone help...
    sure for points.
    Thanks in Adv,
    Ponraj.s.

    Hi,
    The two properties QFILDNAME & QTABNAME are for 'field with quantity unit' and the 'table name'. These field will get populated for Quantity fields....
    In your case the quantity unit may be different for the records you are suming up...
    if you want to remove these fields value ...
      loop at i_fieldcat into wa_fieldcat.
           if wa_fieldcat-fieldname = field name.
              wa_fieldcat-qfieldname = ' '.
              wa_fieldcat-qtabname   = ' '.
              modify i_fieldcat from wa_fieldcat.
           endif.
      endloop.
    Satya.

  • Re:Problem in displaying the output by using filters

    hi to all,
    when using filters in ALV i am getting a problem of displaying the <b>full contents of a particular field while going for F4 option</b>.
    even i using <b>ls_fieldcat-outputlen = field length</b> it is not coming .
    please help me in this issue.
    thanks
    sun
    Message was edited by: sun deep

    Hello,
    set ST_FIELDCAT-OUTPUTLEN to the actual lenght of the field.
    regards,
    Naimesh

Maybe you are looking for

  • GetColumnClass() method of JTables

    Is it possible to display 2 different types in the same column of a JTable? For example: In some rows should be CheckBoxes and in some should be nothing displayed.But the problem is that I've to implement the getColumnClass() method. Or is there anot

  • Precal Server Issue

    HI Experts, I recently inserted a new query5 ( workbook has 4 more queries) . query5 is a copy of query2. so it shares the same Characteristic Variable but some chnages with filters. Now my issue is when this Workbook is executed by precalc server, a

  • Remote Application Command-Line Support Is Broken In New iOS Client!!!

    Folks here went around and around with Microsoft trying to get them to implement support for the "remoteapplicationcmdline:s:" RDP file setting in all of the Microsoft Remote Desktop clients. Finally, sometime around version 8.0.5 Microsoft successfu

  • Unable to copy to desktop damaged VOB

    I have an homemade DVD that have 4 VOBs. I am unable to copy to desktop 2 VOBs. It start to copy fine and then I get an error at the end. Is there any work around for this or any software that can re-create the VOB or repair it or anything else? I tr

  • User Guide Satellite Series

    G'day out there. I deleted the User Guide (P200 Serial Z7194246K) accidently. Should I be able to download the original Guide from somewhere?  It seemed to be a large document?  Thanks