RF transaction material description display

Hi all i have troubles with RF transactions because all the materials are displaying only few characters not the full description-so if i have two very similar materials:
Matnr - Maktx
1110024 - barrel for water fuel large - blue
1110124 - barrel for water fuel large - white
on rf i see only the part "barrel for water fue" for example
and i cat even see if its large,not to mention color!
how can i solve this?

Hi
One thing is not clear from your thread that whether you are using the Custom RF transaction or Standard RF transaction
If you are using custom RF transaction then you need to ask you development team to activate the scrollable field in the screen so that you can scroll towards right to check the full description or
he can introduce another line to display the full Material description but this depend on your requirement and only your Technical team help on this.
As far as Standard RF transaction are concern it is not advisable to make change in the standard screen hence ask the developer to copy the screen and make the change (activate the scroll button or add a new field to display the full text),
TO check the list of RF transaction you can goto
SPRO ----LE------Mobile date entry----Define Menu management
you can find a list of RF transaction which are assigned against your warehouse

Similar Messages

  • Display mode for Material Description in MM02 for Partucular User/UsrGroup

    Dear friends,
    I required to set: Display mode for Material Description in MM02. (Configured thruu2019 Maintain field selection to data screen)
    For Particular User / User group, it should be Change mode. How to achive this. Please advice.
    Thanks and regards,
    RAMAN

    Hi,
    I don't think you can realize it, because in SAP system there are 6 influncing factors:
    Material Type
    Plant
    Industry sector
    Transaction
    Procurement indicator
    SAP Delivery
    Field selection is controlled by field references. You can assign field references to the influencing factors material type, plant, and industry sector in Customizing. SAP maintains the assignment of the field reference to the transaction codes, to the procurement types, and for the SAP delivery. You cannot change this assignment of these field references in Customizing.
    So from my point of view, you can't use the factors of material type, plant and industry sector to distinguish different users' authorization.
    Good day
    Tao

  • Screen Display Language of Material Descriptions in PO vs Output Documents

    Greetings Experts,
    We have the requirement to display material descriptions in purchase order screens as well as other screens in language dictated by user setting and not the business partner preference. Currently, when we log on as user with English language setting and create purchase order for vendor with a Korean language setting, the material description in the screen is displayed in Korean. So it appears that system ignores the UI preference and displays the material description in the vendor's language/comunication preference. We see this same behavior in other SAP transactions as well. Is there a way for display language for material description to be dictated by user logon preference while retaining ability to output documents that are required in vendor's preferred language?

    Hi
    The material description will come from the material master record, so whic language you are entering in the material master it automatically pick to the purchasing documents.
    If you need material description in different language you can do this in material master itself goto additional data and maintain there.

  • SAP Script : to display the material description in two lines

    Hi All,
    I'm working on scripts.
    the material description field is been passed from my driver program ..into the script..
    Ex: &gs_final-maktx& ..
    There r a number of other fields to be displayed ...after this field ....
    Is there any option to split the 'Material description into two lines'?
    Ex: at present it is :
    This is material description
    Requirement is:
    This is material
    description
    I mean that there a number of field berfore and after this field......in the same line
    I need to jst split the materia description ...& make it to appear in two lines.....!!
    Expecting your suggestions....
    Edited by: vidya vidya on Nov 11, 2008 3:17 PM
    Edited by: vidya vidya on Nov 11, 2008 3:20 PM

    FM TEXT_SPLIT ?
    ..but i handled this by code.
    DATA:      zzboldsx(18) TYPE c,
          zzboldsx2(18) TYPE c,
          zzboldsx3(18) TYPE c,
          zzboldsx4(18) TYPE c.
    DATA: i_lines TYPE STANDARD TABLE OF tline WITH HEADER LINE ,
            r_lines TYPE tline,
            v_cnt LIKE sy-tabix.
    CALL FUNCTION 'READ_TEXT'
        EXPORTING
          client                  = sy-mandt
          id                      = stxh-tdid
          language                = stxh-tdspras
          name                    = name
          object                  = stxh-tdobject
        TABLES
          lines                   = i_lines[]
        EXCEPTIONS
          id                      = 1
          language                = 2
          name                    = 3
          not_found               = 4
          object                  = 5
          reference_check         = 6
          wrong_access_to_archive = 7
          OTHERS                  = 8.
      IF sy-subrc = 0.
    * Only 4 lines of Header text supported. Can add if needed
        LOOP AT i_lines INTO r_lines.
          CONDENSE r_lines-tdline NO-GAPS.
          v_cnt = v_cnt + 1.
          CASE v_cnt.
            WHEN 1.
              zzboldsx = r_lines-tdline.
            WHEN 2.
              zzboldsx2 = r_lines-tdline.
            WHEN 3.
              zzboldsx3 = r_lines-tdline.
            WHEN 4.
              zzboldsx4 = r_lines-tdline.
            WHEN OTHERS.
              EXIT.
          ENDCASE.
    *   zzbolDSX =  i_lines-tdline .
        ENDLOOP.

  • Material Description is not displaying for few records in Report

    Dear Experts,
    Report Material Description is not displaying for few records in Bex Report but for records it is coming and even the heading of the material Description is also not coming for this report.
    Cud u plz suggest a good solution for it.
    Regards,
    Sai Phani.

    Hi Phani,
    For the text of the material in records, check if there is text maintained for that material in the master data. also try by changing the text to medium text and long text.
    regarding header, you will have same heading for key and text, you may use Materail ID / Description as the heading if you want.
    regards,
    Rk.

  • Display of material description in classificatio tab on while doing MM01

    Hi All
    I have to dispaly material description when I select a class in classification tab, In this class we have created 1 to 6 fields and one  field is material description. can I display this material description when I select the class automatically from material description of basic data 1 tab through the BADI BADI_MATERIAL_REF.
    if yes could you send me the sample code as what parameters to be passed  else any other way to do it.
    thanks
    bobby

    Ric,
    LOOP AT ITCDPOS.
    CLEAR V_STLNR.
    V_STLNR = ITCDPOS-OBJECTID+4(11).
    1.Check the records of ITCDPOS.
    2.You are taking a part of OBJECTID and moving it to V_STLNR.Make it sure that any material exists with such a value.
    3.Check the data in object id in cdpos and comapre it with materails in mara table.
    4.check the value of v_stlnr in the where clause of the select statement you are using to fetch the matnr and maktx.
    K.Kiran.

  • How to get the material list displayed in CU50 transaction into ABAP report

    How to get the 'KMAT" type material list displayed in CU50 transaction into ABAP report?
    I am getting the entire BOM when i am using the FM CS_BOM_EXPL_MAT_V2 in to the table in the report.
    But I want only the material list displayed in CU50.

    Hi,
    Could you please tell us how you found a solution to your problem?
    Thanks & regards
    Hassan

  • How to display material description in fbl3n report

    Hi friends,
    my reqirement is to disaply equipment no , equipment description ,and meterial description based on material number.
    so i added equipment no and equipment description .but i am adding material description from makt tabel mantr maktx based on RFPOSXEXT  struture component u_matnr but i am not getting any value from this structure before displaying
    lt_pos type standard table of rfposxext.
    select matnr maktx from makt
            into table gt_makt for all entries in lt_pos
            where matnr eq lt_pos-u_matnr
             and spras eq sy-langu.
          after i am using field symbole to assining this to it_pos[].
    call function 'FI_ITEMS_DISPLAY'
        exporting
          caller_repid  = c_repid_gl
          acctype       = c_koart_gl
          x_opvw        = x_gl_opvw
          x_change      = x_change
          i_u_save      = gd_alvsave
          is_u_variant  = gs_variant
          it_u_fieldcat = gt_fieldcat[]
          it_kontab     = it_accts[]
          it_slbtab     = it_comps[]
          it_t001       = it_h_t001[]
          it_skat       = it_h_skat[]
          it_skb1       = it_h_skb1[]
          x_grid        = x_grid
          x_inet        = pa_inet
        tables
          it_items      = it_pos.
    so please help me.
    regards,
    siva

    Solved by my self .
    thans
    siva

  • Material Description Field to be in Display mode.

    Hi Gurus,
    I am trying to make the Material Description field in the Display mode for PR. I changed the screen layout value into display for screen variants ME51N and also for NBB. Then also it is not getting effected. please advice on this issue on what needs to be done from the config setting side. Thanks.
    With Regards,
    Saakithyan.

    Hi,
    its fine that you made changes in NBB Field selection group for PR, but have you assigned that field selection group in Document type please check once,
    untill and unless you assign the field selection group in Doc type you will not get the expected results.
    Regards,
    Ninad Kshirsagar

  • Fm to display material details based on material description

    Hi,
    Is there any bapi or fm to display material details based on material description
    Regards,

    Hi,
    Get the material number from material description from MAKT table and then use the FM BAPI_MATERIAL_GET_DETAIL.
    Regards,
    Nagaraj

  • IS-Retail: Material description in MM41and MM42 transactions

    Hi,
    I'm not able to see the material description in the basic data view, in transaction MM41 and MM42.
    I have already inserted the field MAKT-MAKTX as a mandatory field(OMSR & OMS9), but i still can't see him.
    Somebody can help me?
    Thank you very much and best regards.
    Pedro Barros

    Hi Pedro,
    This field is mandatory by defaul for MM01 and MM02t. Therefore, you should't carry out any change in IMG settings.
    In your IMG settings i.e. transaction code OMSR , please ensure that above settings once again.
    Same data applicable for MM41 and MM42 transactions too.
    Bye,
    Muralidhara

  • Wanted to display material description as 500 char lenth.

    Hi Friends,
    My client wanted to view Material description 500 char lenth because they want to pick accureate material but in bw we have limitation upto 60 char.
    When i check in R/3 system they've around 500 charector lengh.
    How do i get into BW.
    Anybody can suggest.
    Siri

    Hi Siri,
    As mentioned by our friend, you need to create many infoobjects and append them according to your need.
    Check the below blog where you can find the procedure with screenshots.
    Long texts in SAP BW: Modeling
    Regards,
    KK.

  • Routine for Material Description in language DE instead of EN in report o/p

    Hi all,
    We need to display material description/text in terms of DE language insted of EN at o/p the report.
    It's a masterdata(0material) info object.There are many fields at report level,Only for this perticular field text only they want in DE language,remaining all in EN only.
    How can we do langualge translations in BI.How can we achive this?
    If any body implimented with routines plz share the information.
    Regards,
    VS.

    Hi Varun ,
    Please follow these steps :
    go to RSA1-> Translation ->infoobject ->select object ->Create a piece list for Translation ->Create a Object List Go to transaction LXE_MASTER. In the evaluations tab, choose Object List->in the object List dialog box, choose create option ->Assign the Piece List->Generate the Object List.->
    Schedule the background job which will generate the object list
    Once the job for generating the object list is finished, please go to se63 ->Check your Default settings ->select Source Language and Target Language ->
    Access your personal work list ->Enter target Language texts for BI objects in the Worklist ->Run the program RSO_AFTER_TRANSLATION ->Verify the translation in the respective object maintenance screen.
    Regards,
    Jaya

  • 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

  • Missing item category & material description in sales order screen

    Hi all,
    We have upgraded SAP from 4.6C to ECC 6.0 version. In the sales order screen (create, change & display mode) the item category & the material description cannot be seen at the item level in the ECC 6.0 version. The same appears in the 4.6C version. I have done the following checks:-
    1. There are no screen variants/ transaction variants/layout settings in both the versions
    2. The config settings for item category are intact in both the versions.
    3. In the item detail view i am able to see the item category.
    4. There is no change in the functionalty as i am able to save the order  & complete the Sales cycle upto billing in the ECC 6.0 version
    Any ideas as to what could be the problem & how to fix it.  Pl suggest as it needs to be fixed urgently.
    Regards,
    Ramesh Iyer

    Hi,
    Have you checked the table control setting,which is avialable in the sales order screen at extream right.In this check in administrator button if Those fields must are marked as invisible.
    Reward points if useful
    Regards,
    Amrish Purohit

Maybe you are looking for

  • HP leave us Stranded over SetRes HELP!!!

    OK- right now I am really not friends with HP! Why? because of a flaw in their script on my HP Media Centre m7480.uk-a     which has left me stranded outside of my computer facing a dreaded destructive reinstall because all other methods of recovery

  • Error creating backup file

    Hi, I'm running adobe digital editions on a Mac OS X 10.6.3 and I keep getting this error message whenever I open adobe digital editions. Error creating backup file: /Users/yongrufui/Documents/Digital Editions/backup_manifest.xml Error detail: Error

  • XI Scenario RFC to RFC ?

    Hi,    We are having a XI scenario where in we have to get some information from SAP SCM System get the Rate & distance from the R/3 Saystem & update back in the SCM system. For this we have written a Program in SCM system which will send data to XI

  • .and suddenly java.io.IOException: Server returned HTTP response code: 500

    I have this code for a long time and it always works:      URL url = new URL("http://www.infoamistades.net/load.do");                     URLConnection urlConnection = null;           urlConnection = url.openConnection();           urlConnection.setR

  • Is The 6280 camera really this bad?

    6280: > k510: > Click to enlarge. My k510 with 1.3mp take better photos then the 6280 with 2mp. And swithcing from low quality to high quality in the options does absolutely nothing. So should i replace this phone, or all the 6280 have this poor came