BOM Header Long Text

Dear experts,
Is there a way to transfer BOM header long text to production order? I see bom item long texts on production order in item details. But in production order i can not find BOM header long text anywhere.
Best regards

Dear,
1. Use  function module: CO_TX_TEXT_CATALOG_IMPORT
Function group: COTX
Short text: Import of the order texts from the memory section of SAPScript
You must maintain the following parameter:
Exception: NO_CATALOG
2. Create function module: CO_TX_TEXT_CATALOG_EXPORT
Function group: COTX
Short text: Export of order texts back to the SAPScript Memory
No parameters required
Please try and come back.
Regards,
R.Brahmankar

Similar Messages

  • How to use Standard Text Key in maintenance order header long text?

    Dear All,
    I have created a standard text key using transaction CA10 and I want to use this in maintenance order header long text. Is there any way to select any standard text key in maintenance order header long text?
    Regards & Thanks,
    Saif

    Hi
    To use standard texts, perform the following six steps:
    Select the maintenance order and access the operation overview screen using Goto -->Operation overview.
    You can enter standard text keys in this screen or in a detail screen for the relevant operation.
    Enter a standard text key in the appropriate field and press ENTER .
    If the text is longer that the short text line available, the field Text is selected for that operation.
    Check the long text and edit it if necessary. To do this, select the operation and choose Operation--> Long text.
    The system branches to the text editor screen. If you also entered a short text for the operation and specified that this should not be overwritten by the standard text, you will see the short text displayed in the first line of the editor. The following lines contain the standard text.
    Check the standard text and change it if necessary.
    Save the final version of the text and return to the previous screen with Goto--> Back.
    Save the maintenance order.
    Standard texts are created for your system by your system administrator using the Customizing function.
    Regards
    Makarand Gurjar

  • Loading Maintenance Order Header Long Text

    Hi Experts,
    I am trying load Maintenance Order Header Long Text using an LSWM Direct Input Program.
    It states the Long Text successfully transferred, but when I go to transaction IW33, the long text is not displayed.
    How do I get the long text to be displayed in transaction IW33?
    Thanks,
    MSKA

    SAP help states that some long texts may not be readable from the application after they have been imported. They provide 2 solutions in the following link.
    [Importing Texts|http://help.sap.com/saphelp_nw04s/helpdata/en/01/d944c0646cd540b3356552be080353/frameset.htm]

  • Function Module for BOM for posting BOM component long text

    Is there any SAP provided Function Module for posting BOM components long
    text if so please let me know as it is very urgent for me.

    Hello Sridevi,
    The following customer exits are available for BOM, please check the excect one.
    http://help.sap.com/saphelp_46c/helpdata/en/4a/d286ba5a1111d3b47b006094b9d648/frameset.htm
    Hope this helps.
    Regards
    Arif Mansuri

  • How to append new text line to Notification header long text

    In sevice notification , I  append new text to notification header long text . I try FMi write_text, but it will overwrite the existed text , PLS HELP!

    Hi,
    Make  use of the FM "IQS0_ADD_NOTIFICATION_LONGTEXT".
    This will append the new lines to the existing long text.
    Make sure to put "X" for the import parameter "POST".
    Hope this will help you.
    Regards,
    Smart Varghese

  • Maintenance order header long text copy into PR header text

    Dear all,
    Can anyone please let me know how I can copy the Maintenance order header long text into the PR header text of service or component PR.
    Thanks in advance.
    Regards,
    Vineet
    Edited by: vineet sharma on Oct 19, 2011 1:23 AM

    Hi
       Please check this link Re: Copy text from PM order to Purchase Requisition
    regards
    pushpa

  • How to update CC02 Chng Header Long Text?

      Hello everyone,
         I'm trying to better understand how to dynamically update the long text in transaction CC02 from a custom program. I have debugged through CC02 and found that it uses SAVE_TEXT and COMMIT_TEXT so I too, have tried the same.
    What I've found is that as long as a Change Header Long Text was created first in CC02, the code below works successfully without issue, and is reflected when I go into CC02 - I can see my changes.
    On the other hand, if the Change Header Long Text was not already created, and I create it for the first time, this text is stored and I can successfully read it using READ_TEXT Function Modules. However CC02 does not show this saved text. Therefore, any changes made in CC02 will then overwrite my changes made in my custom program.
    I have explored the INSERT parameter of SAVE_TEXT, and pass an X if the Change Header Long Text does not already exist (Determined using READ_TEXT). However, this did not seem to yield any success.
    Can anyone explain why this works correctly when it is already created, but does not work correctly if I am creating the long text for the first time in my program?
    CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            client          = sy-mandt
            header          = lwa_thead
            savemode_direct = c_x
    *        insert          = i_new_longtxt
          TABLES
            lines           = lwa_ltext_tmp
          EXCEPTIONS
            id              = 1
            language        = 2
            name            = 3
            object          = 4
            OTHERS          = 5.
        IF sy-subrc = 0.
          CALL FUNCTION 'COMMIT_TEXT'
          EXPORTING
            object          = lwa_thead-tdobject
            name            = lwa_thead-tdname
            id              = lwa_thead-tdid
            language        = s_lang
          IMPORTING
            commit_count    = iv_updated_texts.
        ENDIF.
    Useful hints or tips will be rewarded! Thank you!

    Hi Custodio,
    Thanks for the reply. To further elaborate, the parameters I've tried passing through lwa_thead are the following:
    CONSTANTS:
        w_tdid            TYPE thead-tdid       VALUE 'AENR', " Change Master Table
        w_tdobject        TYPE thead-tdobject   VALUE 'CHANGE', " Static Object
        w_linesize        TYPE thead-tdlinesize VALUE '72', " 72 characters per line
        w_tdform          TYPE thead-tdform     VALUE 'ECM_LTXT', " Form Name in CC02 Header Long Text
       * Setup header information
      lwa_thead-tdid        = w_tdid. " AENR (Change master table)
      lwa_thead-tdobject    = w_tdobject. " CHANGE
      lwa_thead-tdname      = w_tdname. " Client + ECM
      lwa_thead-tdspras     = s_lang. " Language
      lwa_thead-tdlinesize  = w_linesize. " Characters per line
      lwa_thead-tdform      = w_tdform. " Form ECM_LTXT
      lwa_thead-TDLUSER     = SY-UNAME. " Changed by User
      lwa_thead-TDLDATE     = SY-DATUM. " Date changed
      lwa_thead-TDLTIME     = SY-UZEIT. " Time changed
      lwa_thead-TDLRELES    = SY-SAPRL. " SAP Release
      lwa_thead-TDTXTLINES  = l_records. " Number of records
    For testing purposes, I even mocked the following tran code and program name from CC02 in tdmacode1 to see if that triggered a different result. This did not visibly change anything as far as I could tell.
        w_tdmacode1       TYPE thead-tdmacode1  VALUE 'CC02SAPMC29C',
        lwa_thead-tdmacode1   = w_tdmacode1.

  • User Exit: Saving data in Production Order Header Long Text

    Hi PP Gurus,
    Can any one let me know which user exit can be used to save some data in the Long Text of Production Order Header.
    We try PPCO0007, it works well on ECC, but my client's system version is 4.7, it does not work.
    In 4.7 version, is there any other User Exit or BADI can be used to comply with this requirement?
    It's quite common requirement, hope someone can help me. Thanks.
    Best regards,
    Sun Qiang

    Hi All,
    Thank for your reply.
    After saving the text using 'SAVE_TEXT' function module and commiting it you need to update the 'ltext' field in AUFK table.
    SELECT SINGLE * INTO wa_aufk FROM aufk WHERE aufnr EQ '000012345678'.
    wa_aufk-ltext = 'D'.
    MODIFY aufk FROM wa_aufk.
    It works in Enhancement PPCO0007.
    This call can be closed. Thanks.
    BR
    Qiang

  • Maintenance order - Copy header long text in first operation.

    Hi gurus,
    I have the following requirement I dont know hoy to solve it.
    In our system, there is a certain maintenance order class for corrective operations. During creation, the short text in order header is transferred automatically to the first operation one.
    But this behaviour doesn´t works with long text, although for each operation there is the possibility to enter a long text.
    Any ideas? Thanks in advance.

    Hi Ole,
                This is the standard Behaviour of the system as the system is designed to make sure that there are some Operation maintained in the Operation Tab, and if not maintained then copy the Header Text, that too for the Short Text only.
    please make sure that you are calling the Task List or maintaining the operation in the Operation Tab.
    Hope it helps you.
    regards,
    yawar Khan

  • Production Order header Long text

    Hi ,
    I need to get the long text in the Production Order Header.
    I am aware that I would need to use READ_TEXT FM.
    What are the parameters that I need to put in?
    ID                           
    LANGUAGE                      
    NAME                          
    OBJECT
    Thanks!

    Hi Donna,
    This is the answer:
    ID                              KOPF
    LANGUAGE               EN
    NAME                        035000010000121
    OBJECT                     AUFK
    For name you have to concatenate client number + production order number.
    From my example above 035 (client number) + 000010000121 (production order number) .
    Hope it helps,
    Victor.

  • Long Text problem in Process order header

    Hi All,
    I am using SAVE_TEXT FM to update the header long text in process order.
    Also, I am updating the field AUFK-LTEXT = 'E'.
    But when i display the order and click on long text, it does not display any thing as the text is not saved.
    When I update the text directly in the order using COR2, it gets saved.
    Does anyone know why the text is not being saved through FM SAVE_TEXT?
    Also tried COMMIT WORK but was not successful.
    The paramters I am passing to the FM are
    TDOBJECT = 'AUFK'
    TDID     = 'KOPF'
    TDSPRAS  = SY-LANGU
    TDNAME = sy-mandt+order number with leading zeros.
    and the text lines in internal table.
    Am I missing anything else here?
    Thanks,
    Sandeep

    Hi Sandeep,
    First check table STXH for the order which you saved manually, in order to verify that the values you are passing to the FM SAVE_TEXT are correct.
    Also check the documentation which is supplied with this function to determine the INSERT and SAVEMODE_DIRECT values.
    Also maybe check function COMMIT_TEXT and its documentation.
    Regards,
    Robert
    PS. also test the scenario in which text s/b added to already existing text. The SAVE_TEXT function wipes out everything and therefore you first should read the existing text (READ_TEXT) to retrieve the current text and save this together with the new text using SAVE_TEXT. (check function group STXD for possible related functions to use).
    PPS. Thinking about my comments under PS., I recall now that this was the symptom of the long text passed on through BAPI_SALESORDER_CHANGE and therefore maybe this is not the case for SAVE_TEXT.
    Edited by: RJ. Schamhart on Feb 3, 2011 4:53 PM

  • How to activate Long Text of Order Header in IW31/32

    Hi Expert,
    I have one reqm. like want to upload Long Text in Order Header.
    I have used FM 'Create_Text', its working f9 i.e. creating Long Text for Order Header but not displaying it
    in IW32/33 transaction. Entry for Long Text is available in Table STXL and STXH.
    Please advice me how to activate that Header Long Text which I uploaded earlier.
    Thanks,
    Jay.

    Hi Madhukar,
    Yes I am passing everything correctly, as I am getting Long Text record created in Table STXL & STXH, but not able to see in IW32/33 at the header long text.
    So this is my doubt like how 2 update or activate long text of Order Header?
    Thanks,
    Jay.

  • Display a Long Text in ALV report

    Hi,
    I want to display the PO header long text in ALV Report that is 255 character width.
    Please help me out how to do this.
    please it is very urgent
    Thanks and regards
    Krishna

    Use READ_TEXT and concatenate the first lines of the text.
          CALL FUNCTION 'READ_TEXT'
               EXPORTING
                    id       = 'F01'
                    language = sy-langu
                    name     = lv_name " purchase order with leading zeroes
                    object   = 'EKKO'
               TABLES
                    lines    = t_lines
               EXCEPTIONS
                    OTHERS   = 8.
    Regards

  • How to get text name text object and text id for long text

    Hi,
    I am trying to fetch Long text for a given order number from transaction CO04 in SAPScript. I know that I have to use Include X (OBJECT) XX ID XXX.
    How do I get the text name, text object and text id for the order header long text from Transaction CO04.
    Points will be awarded..
    Tushar

    Tushar,
    When you are in CO02, and are at the Long Text Tab,click on the Icon that is next to the Order Number at the top of the screen (this icon looks like a Pencil and a Pad of Paper and is called "Change Long Text"). When you click on this it will take you to the SAPscript Editor. Now hit Goto->Header and you will get the data you require.
    Hope this helps.
    Cheers,
    Pat.
    PS. Kindly award Reward Points as appropriate.

  • Long text - VA01 & VA03

    Hi All,
    Please let me know the ways to read and update the sales order long text in VA01 or VA02 transaction. Please note that in VA02 transaction, the long text is just entered and it is not in the database yet.
    I'll appreciate you send me the detailed explanation. Thanks much.
    Regards
    Nagarajan

    Hi.
    Two type long text maintain in VA01 one is header long text and one is item long text.
    Header long text you will click the display docu. header details and display all long text then double click the entry text area show the long text window the goto menu click goto option the sub menu display  header what are parameter pass to get long text details and thing do item text also.
    Thanks
    Regards
    I.Muthukumar.

Maybe you are looking for

  • Apple TV rentals no longer working

    I have a 3rd gen Apple TV which has worked flawlessly for all apps, movie rentals and purchases up until a few days ago. Now when you rent a movie there is perpetual spinning during the "loading" screen. It typically I goes on to say "ready to play i

  • How do I display the number of words I've written in the new Pages update?

    I just downloaded Mavericks and updated pages and I can't figure out how to display the amount of words I have written. It used to automatically be at the bottom of the page.

  • Hyperlink won't work

    I am attempting to insert a hyperlink in a PowerPoint for Mac program. I keep getting the error message that it can't find the internet or proxy server. I use Safari, and had no problem accessing this site in a normal internet search. I just can't ge

  • Maintaining custom Web Dynpro Java applications

    We are a relatively new Web Dynpro Java shop, and I hope to propose a standard for code modification documentation to my organization. I have a few questions for WDJ maintenance developers: When documenting creation and modification activities, what

  • Wanted to know about XI

    Hi all, I am new to XI. Just wanted to know overview of XI. Any straight forward documents. Thanks in advance. Cheers, Karthick