Material Description getting truncated in LI04 print

Hi All,
When we print Physical Inventory document in LI04 and using standard report  RLLI0400 the system takes on 20 char in material description and truncates rest of the description.
However SAP given Note 538759 - Modif.note to extend material Desc. in report RLLI0400, which is a modification note to allow a 40 char description to be displayed.
We have carried out the correction as per this note still system is printing only 20 chars,  did any one used this note, or any subsequent notes are required. Pl let me know.
We are using ECC - 6.0.
Thanks in advance
Ratnakar

Thanks for your reply.
Did you just applied the corrections mentioned in the Note, or did you do anything else.
Can pl tell me little more detailed on what you done and how u running transactions to let this report show complete material description.
Thanks again,
RJ

Similar Messages

  • #(hash) sign printed out for spaces material description in PO

    Hi All,
    I have problem with my sapscript form for PO, when preview, the material description is ok
    but when print out,  the space between the word of the material description become # sign like
    Leif#Eriksson#1oz#Silver#Coin###, this not happen to all item, only for certain material.
    When checked, these material are not created manually in system but is uploaded by BDC.
    In material master screen, there are no #sign either.
    Any solution or what should I check ?
    Thanks

    Well, as you've probably discovered by searching the forums, the # is a substitution for an unprintable character.   I would look at the data value in debug, convert that to a hex value with a chart, and see what needed to be done to either clean up the data values or substitute a space for whatever character(s) the # values represent in the output.

  • Printing Material Description in Arabic for Smartform

    Hi All,
    I have created a custom smartform for printing the PO, Sales Invoice.
    The material description is maintained from RTL-Arabic language in Material Master(MM02) - محبس بليه بلاكورين 75م.
    I need to print the above material description alone within the Item window in arabic language as displayed above but it is getting reversed when I see the print preview of PO and Sales Invoice.
    Initially, I got to know from some SDN forum replies that we need to enable Arabic Font in our workstation(PC) so that it can be solved and then some suggested that Arabic font should be installed in SAP system.(Tried both the options, but could not resolve issue).
    Even we tried in SE63 to translate the text but we couldnot.
    SE63->Translation->ABAP Objects->Other Long texts->FS(Forms & Styles)->SSF->Smartform Name->Source/Target Lang->Edit. Window with the english version opens at the top and at the bottom, there is an editable window for translation.
    But I could not further proceed as I didnt know how to do translation for the text elements.
    Correct me if I am wrong in these steps.
    Could anyone suggest me a solution to resolve this issue and explain the steps to do the translation in SE63.
    Earliest reponse will be appreciated.
    Rgds,
    JK

    Jay,
    Yes we tried using the STRING_REVERSE FM. But the thing is the description contain some numerals in between the text, so it get reversed if we use the FM. So it wont suit our purpose.
    Is there any printer configuration to be done to resolve this issue? Or any other settings within the smartform?
    We have to display the text as maintained in Material Master, the variable get populated correctly while debugging but it get reversed when we look at the print preview.
    Rgds,
    JK

  • How could i get the material description in cost esti itemization view?

    Hi Gurus,
    I have created the process order (T.Code COR1) and calculate the cost & get the material costing details.but i required to see the material description (Packaging material) rather than the material code (PK01-1204) in costing itemization view.
    E.g.
    SAP Material Code: PK01-1204 - Description - Packaging material.
    while checking the costing view  i had see the Material code PK01-1204 in itemization.but i required the material description (Packaging material) in itemization view.
    Please help me to overcome this issue......
    Regards,
    Dhananjay R.

    Dear Dhananjay,
    You can have Material description in Itemization by following way :
    Go to Itemization screen -
    > Change layout ( On top you will find icon for this , below Display Itemization text)
    In change layout you will see Filter icon ---> select Plant / Material Text by dropdown in it and save it so you will find material description in itemization.
    Try above which will resolve your issue.
    Revert in case any problem.
    HOpe this helps.
    Regards,
    Tejas

  • Item description not getting updated when material description is changed

    Hi,
    In a contract, line item description gets copied from material master. However, when material master is updated line item description does not get updated in a transaction. Is there a way to update this?
    Thanks,
    Deepak

    Hi Deepak,
    Line item description is not changed as when you enter the material in order and save, description is saved in table CRMD_ORDERADM_I along with other details. now if you change the material master description it is pretty obvious that CRMD_ORDERADM_I contents will not automatiically change. if you enter the same material again in order as new line item system will read from material master whereas for existing line items will be read from CRMD_ORDERADM_I . you can change the description using FM CRM_ORDERADM_I_MAINTAIN_OW
    i hope it clarify your concern.
    Thanks
    sudhir grover

  • Datagrid getting truncated during printing

    Hi All,
    I have a panel which contains the following items :-
    1. A Header Label
    2. A time slider
    3. A combo box
    4. A view stack which has a chart at index 0 and a data grid at index 1
    5. Some buttons
    For the datagrid(which is inside a VBox,whose height is 100% and verticalScrollPolicy is "on"), I have set the following attributes:-
    1.variableRowHeight = true
    2.rowCount = "{gridDataProvider.length}"
    3.verticalScrollPolicy = "off"
    4. wordWrap = true
    5. dataProvider = "{gridDataProvider}"
    6. updateComplete = "onUpdateComplete()"
    The function onUpdateComplete is:-
    private function onUpdateComplete() : void
                   var  newHeight : Number;
                    if ( this.gridDataProvider )   
                        this.dataGrid.headerHeight=50;
                        newHeight = dataGrid.measureHeightOfItems(0, this.gridDataProvider .length) + this.dataGrid.headerHeight ;
                        this.dataGrid.height = newHeight;
                        this.dataGrid.validateNow();
    While printing, I am having a printVBox which contains all these components and its height = dataGrid.height + some buffer height for accomodating the height of other components in the panel.
    I am able to print all the components, both before and after the datagrid, but the content of the datagrid is getting truncated, many rows are not printed.
    Please help. Thanks in advance !!
    Regards,
    Rudhir

    Hi Rudhir,
    You should do something like below:
    private function doPrint(event:Event):void
        var printJob:FlexPrintJob = new FlexPrintJob();
        if(printJob.start() != true) return;
        try
         var originalDGHeight:int = dataGridId.height;
         //Increasing the height of the desired component to be printed without scroll.
         //Here Check  which one is giving you total height dataGridId.measuredMinHeight or dataGridId.measuredHeight
         dataGridId.height = dataGridId.measuredMinHeight;
         //dataGridId.height = dataGridId.measuredHeight;
         dataGridId.verticalScrollPolicy = "off";
         //Adding the resized Component to our FlexPrintjob and then sending the print request
         printJob.addObject(printVBox,FlexPrintJobScaleType.MATCH_WIDTH);    
         printJob.send();
         //Resizing the component back to normal size
         dataGridId.height = originalDGHeight;
         dataGridId.verticalScrollPolicy = "auto";    
        catch(error:Error)
                     trace("Error : " + error.message);
    Thanks,
    Bhasker

  • In MB1B how to get Material description?

    Gurus,
    At the time of making 541 movement through MB1B referencing the PO, system should show the material Description also.Presently system shows only the Material Code but not the Material description.
    How do I get the Material description in MB1B along with material Code.
    SN

    Dear,
    Better to Use ME20, to issue stock to vender. It gives u Full Description of Issunig Material.
    Reagrds,
    Pardeep malik

  • Description on search help field get truncated by it input enable field

    Hi expert,
    I'm facing one problem, description of the fields on the search help dialog screen gets truncated by it own input fields. I want that full description of the fields should appear on the screen. what i need to do for that.

    my friend  ...  you are    refferning the field  in your program from the  field of   Ztable which  you have created  ....
    please  check the field  lable  and change it as  40  lenght in the  field label  give the   full  descrition  activate it  ...
    so that your problem will be solved ..
    see  for example  .
    i write  a  program in that  i use  parameter   declaration as
    tables :  pa0001 .
    parameters : d_pernr like pa0001-pernr.
    then in the MENU path   GOTO-TEXT ELEMENT   -> select the check  box from the dictionary ...
    it was  refferencing the field of  Long text  only  ....
    only thing  is we have  maintian the long text as 40 length and  descrition as what you want .
    reward  points if it is usefulll ,....
    Girish

  • How to get material description from material number.

    Hello ABAP Pundits,
    I have got the material number MATNR.
    I need to get Material Description MAKTX using this material number.
    Now MAKTX is not a table that I can go and fetch it.
    What function module do I require to fetch that material description field ?
    Points will be surely awarded..
    Tushar.

    Do a select against <b>MAKT</b>.
    parmaters: p_matnr type mara-matnr.
    data: xmaktx type makt-maktx.
    Select maktx into xmaktx from makt
              where matnr = p_matnr
                and spras = sy-langu.
    Regards,
    Rich HEilman

  • ALV Header getting truncated in excel

    I am using the GRid Layout. but when i am downloading the output in the Excel sheet, the headers are getting truncated.
    I have tried increasing the width in the FIELDCAT and also removing the coulmn-optimze option in the layout also. but still after trying the headers are getitng truncated.
    Any pointers how can i download without the headers getting truncated.
    Thanks

    Refer the code snippet:
    Follow this way:
    CONSTANTS :  c_delim TYPE c VALUE cl_abap_char_utilities=>horizontal_tab.
    data :it_excel_dwnld TYPE STANDARD TABLE OF t_zzidwnld_data     ,
           wa_excel_dwnld TYPE t_zzidwnld_data .                      .
       CONCATENATE   'Physical Inventory Document'
                    'Item '
                    'Material '
                    'Material Description'
                    'Material Group'                
                    'Plant'
                    'Sloc'
                    'Doc Date'
                    'Book Qty'
                    'Counted Qty'
                    'Value of Phy Inv Count'
                    'Standard Price'
                    'Difference Qty'
                    'ABS Qty'                        
                    'BUn'
    INTO wa_excel_dwnld-line
                                   SEPARATED BY c_delim.
      APPEND wa_excel_dwnld TO it_excel_dwnld.
      CLEAR: wa_excel_dwnld.
    LOOP AT it_output INTO wa_output.
    CONCATENATE   wa_output-iblnr
                      wa_output-zeili
                      wa_output-matnr
                      wa_output-maktx
                      wa_output-matkl       
                      wa_output-werks
                      wa_output-lgort
                      wa_output-bldat
                      v_buchm
                      v_menge
                      v_wrtzl
                      v_stprs
                      v_difqy
                      v_absqy              
      INTO wa_excel_dwnld-line
                           SEPARATED BY c_delim.
        APPEND wa_excel_dwnld TO it_excel_dwnld.
      ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = l_flname
          filetype                = 'ASC'
          write_field_separator   = '#'
        TABLES
          data_tab                = it_excel_dwnld

  • In Read_text FM, the data after 256 characters gets truncated

    Hi All,
    In this FM, the internal table can't have string type field. In my case the data is in multiple lines of internal table and I am concatenating into a single field which is of type DESCRIPTIONS(string). I am passing this data to a table in smartform.Only 255 characters are printed, remaining data gets truncated. I am using CONVERT_OTF and SX_TABLE_LINE_WIDTH_CHANGE FMs to create PDF. Is it the limitation or I am incorect here?

    Your posting title is misleading; there's nothing wrong with FM READ_TEXT.  Yes, it returns a table of type TLINE, as you've noted.  Perhaps you could close this post and repost in FORM PRINTING with an appropriate title like: Can't show more than 255 characters of text.....but search first, because you cannot be the first person to encounter this limitation.

  • How to enter customer specific material description

    Tried MM02 - basic data for Language EN, but then all customers with language EN get this description.
    Tried MM02 - Sales Text but then all customers created in this salesorganization get this description.
    Would like to enter customer specific material description. Unfortunately VD52 is limited to 35 characters, need about 80 characters.
    Regards Andy

    Thanks RAF,
    I noticed I needed to use the button addtional text as well in VD52, though this is limited to 72 characters and not unlimited. Now I'm facing the issue that the commercial invoice is not printing all characters defined in this field, so probably have the layout increase field length.
    Thanks for the help.
    If there is another solution to define a Customer specific materail description then mentioned above I would like to know.
    Regards Andy

  • Material description VS Purchase order Text when creating a PO

    Hi Gurus,
    When creating a PO for a specific material, I have to print a purchase order text different from the material description.
    To do this, a specific text has be added to the material master data in the tab "Purchase order Text" with the italian language maintained.
    But, when i start to create a new PO for this material, the short text that is shown is retrieved form the Material description and not from the Purchase order text that has been added before.
    How can I do to have the purchase order text shown in the PO instead of the common material description?
    Thanks in advance for your support.
    Regards,
    Valentino
    Edited by: Valentino Rosso on Sep 9, 2009 10:58 AM

    Hi Rajaram,
    thansk a lot for your answer, it has been very helpful.
    Could you please clarify me the below points?
    1) Could you please confirm me that this is the functionality of the standard SAP System? That means that in case we want to put the purchase order text in to "short text" we would need to create an ad hoc development, right?
    2) In case we print the PO with the purchase order text added for the material, is there any point where we can find this information for the material, or we will see just the material description from the Material Master Data?
    Thanks a lot for your support.
    Regards,
    Roberto

  • How to prevent error message for material description in MDG material detail screen, when user click on check action

    Dear Experts,
    I have a requirement for making material description as non mandetory in change request view of mdg material screen.
    I have done that using field usage in get data method of feeder classes, but still message is displaying.
    This message 'Material description is mandatory is displaying with check action only, but not with save or submit after i anhance field property as not mandetory.
    How to prevent error message for material description in MDG material detail screen, when user click on check action.
    Thanks
    Sukumar

    Hello Sukumar
    In IMG activity "Configure Properties of Change Request Step", you can completely deactivate the reuse area checks (but will then loose all other checks of the backend business logic as well).
    You can also set the error severity of the checks from Error to Warning (per CR type, not per check).
    Or you provide a default value for the material description, e.g. by implementing the BAdI USMD_RULE_SERVICE.
    Regards, Ingo Bruß

  • Material description in batch master

    Hello SAP Gurus,
    My requirment is at the time of Process order relese or GR for FERT material systm should copy the material master text in batch master record for this i have created one characetristic. in CT04 as material description it is assigned in class & the same class is assigned to fert material in material master record. Now as per my requirment how can link this REL Or GR for updating material description please suggest.
    Regards,

    Dear
    Pass the batch no. in table MCH1 and pass MATRN into MAKT and also get CUOBJ, Pass CUOBJ in AUSP table in field OBJEK to get the char. description and values in ATINN and ATWART/ATFLV respectively.
    Check this thread : Material batch characteristics
    Just try and discuss with your ABAPer in this .
    Regards
    JH

Maybe you are looking for

  • Interactive Report - Saved Filter

    Have an Interactive Report which will include a column which containing the email address of an employee and would like to create a saved filter on the report to filter on this column and reference the currently logged in users username. Owner =APEX_

  • Manual for ms-7223 lies!

    Hi, hope someone can help me with this as it's driving me crazy! I downloaded the manual for my board (ms-7223) because I couldn't find any FSB settings in the BIOS. The manual shows a picture of the Cell_Menu with FSB options (below) What's weird is

  • Browser display

    First let me say that I am VERY new to this and just learning Dreamweaver. I tried to take a class, but it really didn't help. Twice I asked the instructor a question and he told me he hadn't read that chapter yet. I am reading books and trying to le

  • System Preferences Hang-up

    Hi, I am having a problem with System Preferences freezing up when selecting Desktop & Screen Saver. Everything else on the system works fine. I loaded a picture on the Macintosh HD Device (all other pictures are under a specific user account) to acc

  • Oracle 11gR2 64 bits and 32 bits client together??

    Hello Gurus, one question for you.. We are installing FIN 9.1 over Tools 8.51 on Windows 2008 and with Oracle 11g2. Our questions is which is the best configuration? - 11gR2 64 bits and 32 bits client (for application/ batch server)? Would this actua