Material text in report

Hi ,
I want to write the material text, which is also carried to the Purchase Order as PO Text to a new z report.
This text is not storted in a table. From where can i get the data to print on a z report.
Thanks,

Hi,
I tried to create an internal table as you said. But somehow its also not working, its giving dump.
I am writing the process i did, pls suggest where i went wrong.
I created an Internaltable to get the matnr.
in the function module 'read_text' i am entering
DATA: t_tline TYPE tline occurs 0 with header line.
IF SY-SUBRC = 0.
CALL FUNCTION 'READ_TEXT'
  EXPORTING
  CLIENT                        = SY-MANDT
    ID                            = 'BEST'
    LANGUAGE                      = 'EN'
    NAME                          = ITAB-MATNR
    OBJECT                        = 'MATERIAL'
  ARCHIVE_HANDLE                = 0
  LOCAL_CAT                     = ' '
IMPORTING
  HEADER                        =
  TABLES
    LINES                         = t_tline
EXCEPTIONS
  ID                            = 1
  LANGUAGE                      = 2
  NAME                          = 3
  NOT_FOUND                     = 4
  OBJECT                        = 5
  REFERENCE_CHECK               = 6
  WRONG_ACCESS_TO_ARCHIVE       = 7
  OTHERS                        = 8
thanks,

Similar Messages

  • How to get a key text in report

    HI
    in my report i am unable to get a key text
    the report is showing the vendor or material by number not by name
    can anyone help...
    thanx ,
    UMAR NAYAB.

    Hello,
    when you mentioned:
    when you run the universe query, on the left side, expand the L01 <Charateristic> and drag in the L01 <Characteristic> Key which is the green colored icon along the L01 <Char>. This will get you the key and the text in your webI
    Are you doing this in the webi report after you refresh it?
    Or are you doing this in BEX?
    I am able to get EITHER the text or key to display.
    I get the text when i have the properties set to Text & Key and Medium length for the Text View.
    Any other selection for text View, like std or long, result in seeing the key instead of the text.
    Thanks,
    Bill

  • How to get Vendor name and Material text in FAGLL03 transaction?

    Hello All,
    I am executing FAGLL03 report which display Vendor No and material No in item level but I want Vendor name and Material text to be display for every vendor no. and material no.
    Please let me know any approach to do this?
    Thanks in advance.
    Regards
    Steve

    Hi Raymod,
    Again I am getting the same error after executing all reports and FM.
    Internal error in ANALYZE_ACT_FIELDCAT
    Message no. MSITEM012
    Diagnosis
    An internal error has arisen in the form routine ANALYZE_ACT_FIELDCAT for program RFITEM_INC.
    This is due to inconsistencies between table T021S (special fields) and structure RFPOSEXT.
    System Response
    During the processing of special fields in the line item list, errors and even a program termination may occur.
    Procedure
    Recreate the special fields in Customizing. If the error occurs again, contact SAP.
    Can you pls check it out in your system if you can?
    It is not working here ..
    Thanks and Regards
    Steve

  • Creating Material text in va02 item lines using Bapi

    Dear all,
          I want to add Material Sales Text in Text Tab of  Tab Control on VA02 line items.
         ie when I open a sales order in va02. And I click on the line item in the sales order, I want to add on  Material text in , Text Tab.
        I am using  BAPI_SALESORDER_CHANGE AND  table ORDER_TEXT  for updating the text.
       I am not sure if order_text is the right  table to update the text.
    My code is
    REPORT  zapo_ranjan_test                           .
    DATA:order_header_inx LIKE bapisdh1x.
    DATA:return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    DATA:order_item_in LIKE bapisditm OCCURS 0 WITH HEADER LINE.
    DATA:order_item_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE.
    DATA : test1 like BAPISDTEXT occurs 0 with header line.
    order_header_inx-updateflag = 'U'.
    order_item_in-itm_number = '000003'.
    APPEND order_item_in.
    order_item_inx-itm_number = '000003'.
    order_item_inx-updateflag = 'U'.
    append order_item_inx.
    test1-doc_number = '2292443'.
    test1-itm_number = '000003'.
    test1-text_id = '0001'.
    test1-text_line = 'Phone Number'.
    append test1.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument               = '0002292443'
      ORDER_HEADER_IN             =
        order_header_inx            = order_header_inx
      SIMULATION                  =
      BEHAVE_WHEN_ERROR           = ' '
      INT_NUMBER_ASSIGNMENT       = ' '
      LOGIC_SWITCH                =
      TABLES
        return                      = return
       order_item_in               =  order_item_in
       order_item_inx              =  order_item_inx
      PARTNERS                    =
      PARTNERCHANGES              =
      PARTNERADDRESSES            =
      ORDER_CFGS_REF              =
      ORDER_CFGS_INST             =
      ORDER_CFGS_PART_OF          =
      ORDER_CFGS_VALUE            =
      ORDER_CFGS_BLOB             =
      ORDER_CFGS_VK               =
      ORDER_CFGS_REFINST          =
      SCHEDULE_LINES              =
      SCHEDULE_LINESX             =
       ORDER_TEXT                  = test1
      ORDER_KEYS                  =
      CONDITIONS_IN               =
      CONDITIONS_INX              =
      EXTENSIONIN                 =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
    WAIT = 'X'.
    COMMIT WORK.
    Write : / 'Done.'.
    My bapi returns documnet changed successfully.
    Look forwad to get any clue or help .
    regards,
    Ranjan A

    Hi Ranjan,
    For creating text in Va02, you may use "SAVE_TEXT" FM instead of BAPI.
    you need to know the text object and text id before using this FM.
    Below is a sample code for that:
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
             EXPORTING
                  input  = wa_success-vbeln
             IMPORTING
                  output = wa_success-vbeln.
        i_header-tdobject = 'VBBK'.
        i_header-tdname = wa_success-vbeln.
        i_header-tdid  = '0001'.
        i_header-tdspras = 'E'.
        APPEND i_header.
        CLEAR v_text.
        CONCATENATE 'GEO DN# ' wa_success-donum INTO v_text.
        i_tline-tdformat   = '*'.
        i_tline-tdline = v_text.
        APPEND i_tline.
        CLEAR v_text.
        CONCATENATE 'CUSTOM INV# ' wa_success-ivnum INTO v_text.
        i_tline-tdformat   = '*'.
        i_tline-tdline = v_text.
        APPEND i_tline.
        CALL FUNCTION 'SAVE_TEXT'
             EXPORTING
                  header          = i_header
                  insert          = ' '
                  savemode_direct = 'X'
             TABLES
                  lines           = i_tline  "I_TAB
             EXCEPTIONS
                  id              = 01.
    Best Regards,
    Pradeep.

  • Re: Material Text- Tag colunm

    Hi,
          this is the issue regarding material master(mm02).
    user want to fetch the data related to the TAG column for all the materials.
    Ex: There are 1000's of materials only some materials are maintained with TAG column(sales text tab in the material master).
    I want to fetch the materials which is having *,/  data,
    do we have any solution in the standard,if yes can u give me a valuable answer for this call.
    Regards,
    siva.

    Shiva, there is no direct tcode or table for material texts..you've to develop a report which gets the required info using the Function Module: READ_TEXT by passing the reqd parameters.
    Regards
    Raghu.

  • Material Order status report - Closed PO's

    Hi,
    In my "Material Order status report" I got closed PO's. I dont want any closed PO's to be displayed in my report. How to set this?
    Regards
    P.Ramprakash

    Hi,
    This is your own doveloped report or you are talking about any standared report.
    Regards,
    Manish

  • SD PS Integration: How to copy material text in Project Network?

    Hi
    We are creating project from contract where every material from contract creates a Network/ activity in project. The requirement is to pull material text in Network. Does it require user exit because I was unable to find any thing in configuration? If this is correct then how can I apply user exit here?
    Regards
    V

    this is not standard SAP and hence exit needs to be looked at or some development or exit on substitution to replace the text from material
    Edited by: Virendra Pal on Dec 21, 2008 10:53 PM

  • Texts in report painter

    Hi All,
    Do someone know if it's possible to call budget text with report painter ?
    Many thanks for your answer

    Quidacciolu,
    This is a forum for discussing business process specific to domains..
    I would recommend the ABAP forum for this question and you would get very relevant answers and quite likely that you would get your problem solved also.
    ABAP Development
    Arun

  • SRM PO vendor text not copied to PO material text in ECC Po

    Hi all,
    We are on SRM 5.0 Extended Classic.
    In ECS,is it std functionality that the PO vendor text from SRM PO is copied to PO material text in the ECC PO?If so,Do we need to do any configuration on the SRM side for this transfer?
    Thanks!

    Hi,
    In standard the Vendor text in SRM P.O would not get transfered to P.O Material text in ECC.
    I am not sure why do you want to transfer vendor text to material text.
    You need to use BADI BBP_ECS_PO_OUT_BADI to transfer this text to the required field in P.O.
    Please speak to your ABAPer and get the coding done to achieve your requirement.
    Let us know in case of any further clarifications.
    Regards,
    Teja

  • Info Record Text and Material Text not displayed in Subcon. PO printout

    Hi,
    I have this scenario, where the Info record text from Info Record PO text does not appear in Print out but appears in Print preview.
    Also the Info record text for  standard Purchase order is displayed in Print preview and Print output.
    The config settings for texts for Purchase order is the same for Purchase order with no Item Category (Standard) and Subcontracting (item category L).
    Also the texts in Purchase order automatically copies in Standard purchase order (adopt button not present) but not in Subcontract purchase order (Adopt text is present).
    I have checked the config for copying rule, for Info record text is automatically adopt.
    I am unable to identify the missing config for this.
    Also the same problem exists for Material text from Material Master PO text is not displayed in Fax output but appears in Print output.
    Please let me have your inptus,
    Regards, Muthuvel

    The solution to this is SPRO->SAP Reference IMG->Materials Management->Purchasing->Messages
    ->Text for Messages->Define Text for Purchase Order.
    Select Texts for Document Item folder - There will be a list by Document Type and Item Category. Make sure there are entries for your combination, otherwise they will not be part of the output message.

  • How to transport text in report programs

    hi experts,
                   any one tell me how to transport "text" in report programs.
                                         thanking u ,

    Chk these threads:
    Transporting Translations of Text Elements in SE38
    How do I disable input for a table control?
    Hope this helps.
    Regards
    Vinayak

  • Display issue with HTML formatted text in report builder

    I am using the FCKeditor in my application to allow endusers
    the ability to create formated text on reports. We curently are
    experiencing 2 issues: 1. If you copy and paste from MS Word
    2003/2007 it will not display the text correclty in the report; 2.
    If you use the FCKeditor toolbar to insert bullets or a numeric
    list it will not align the text correctly on the report. We are
    using Coldfusion 8 with Hotfix 1 and Coldfusion Report Builder's
    lastest build release.
    Has one experiences this same issue with HTML fields not
    printing correctly using the Report Builder? What other HTML
    editors besides FCKeditor might we use?
    Thanks,
    Dan VanWieren

    Can you tell me how to use </td> for each values
    Give me your example report - using before or after report
    Thanks
    MT
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by fdenis:
    Hi Gavin,
    If I understand well, your HTML tags are coded directly in your fields in the database, right? Because if it was not the case, you could have use a format trigger checking for which destination you're generating your report...
    if UPPER(:DESFORMAT) = 'HTML' or
    UPPER(:DESFORMAT) = 'HTMLCSS'
    then
    -- insert your HTML code in the value
    -- of your field. something like...
    newValue := '<B>' | | :YOUR_FIELD | | '</B>
    srw.set_field_char( 0, newValue );
    else
    -- when generating to other format,
    -- you'd have to add the formatting as
    -- you want.
    end if
    return( true );
    Of course, if it's not acceptable to remove the HTML tag from your database fields, you could develop a procedure that would translate your HTML tags to the good formatting (eurk... ;-)
    Good luck... :-)
    Frederic
    <HR></BLOCKQUOTE>
    null

  • Long text in report output

    Hi all,
    I want to display long text in report output how is it possible.
    how can i get the long text for fb60 or fb70.
    Edited by: D Tarun Kumar on Aug 23, 2008 11:26 AM

    How can i get these
        ID                            =
        LANGUAGE                      =
        NAME                          =
        OBJECT                        =
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      TABLES
        LINES                         =
    Thanks

  • Profit Center wise value of material consumption & purchases report

    Dear Frinz,
    Can anybody revert with t-code/table from which I could be able to see purchase & consumption of material / material group Profit Center wise, from the first day of mat procurement to till date.
    Profit Center wise value of material consumption & purchases report
    =-=
    Pradip Gawande

    Hi,
    You can use T.Code: KSB1 (Display Actual cost line items) in which you can restrict the report by providing the material consumption cost elements and don't give any cost center, which displays all the cost center for the given cost element.
    Regards

  • Upload Material Text in MM02

    Hi ,
    I want to Uplaod Material text in MM02 . Around more than upto 2000 materials.
    i m trying to uplaod using call function 'CREATE_TEXT'. But it gives error in mm02 like, no text maintained.
    give me proper solution,
    thnxs
    Regards,
    Swapnil Vaidya

    Swapnil
    Check whether you are passing correct Text ID, Text Object and Text Name to the function module..
    Thanks
    Amol Lohade

Maybe you are looking for