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.

Similar Messages

  • 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

  • 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]

  • 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

  • Default Production Order Component Long Text

    Dear guru ,
    Whose are the defaults for production order component long text ?
    Can I copy this text only from bom ?
    Can I copy this text also from material master ?
    Thanks

    Hi,
    The defaults are from the BOM item text 1 & 2. POTX1 & POTX2 fields.
    I suppose no option from material master.
    Hope this helps
    Regards
    Raju

  • Production Order Component long text

    I'm an ABAPer trying to find the long text of a production order component.
    I'd expect to find it as a text with object "AUFK" id "MATK" but that's not the case. I can't find it anywhere in table STXH where it would show up if it were kept like any other text. So where is it kept?

    Whenever you maintain a Production Order Text in CO03, system generate a unique HEADER details for that particular text with unique values of fields-Text Name, Language, Text ID & Text Object.
    You can see 4 unique values by first double clicking on Production Order Long Text and then Goto --> Header.
    Once you've these values, run FM- READ_TEXT (transaction-SE37) and put Text Name, Language, Text ID & Text Object at required places and execute, you will get desired Accounting Text.
    Regards,
    Anup

  • 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

  • Purchase order  item long text

    Hi  to all experts,
    pls.help me of this requrement i need to get  a table of long text of  purchase order  item long text .
    can anybody know where long text will saved .
    Regards ,
    Kiran.

    Here is an example.
    report zrich_0001 .
    data: name type thead-tdname.
    data: lines type table of tline with header line.
    parameters: p_ebeln type ekko-ebeln,
                p_ebelp type ekpo-ebelp.
    concatenate p_ebeln p_ebelp into name.
    call function 'READ_TEXT'
         exporting
              id                      = 'F01'
              language                = sy-langu
              name                    = name
              object                  = 'EKPO'
         tables
              lines                   = lines
         exceptions
              id                      = 1
              language                = 2
              name                    = 3
              not_found               = 4
              object                  = 5
              reference_check         = 6
              wrong_access_to_archive = 7
              others                  = 8.
    loop at lines.
      write:/ lines.
    endloop.
    Regards.
    Rich Heilman

  • Function module for detailes description of Order and long text in task

    Hello gurus,
                       please help me with Function module for detaile description of Order and long text in task list(operation Tab)?
    regards,
    YK

    Hi, 
    You should be able to read the Order short text directly from table AUFK. The Order long text or task list long text can be read by using FM "Read_text". Use Goto> Header on every long text screen to identify the parameters that need to be passed hen using this FM.
    Regards
    Narasimhan

  • Make Scrap portion field in production order header as display only

    Hi Experts,
    We have a requirement to make scrap field(CAUFVD-GASMG) in production order header as display field only. We do not want users to enter any values here to denote the quantity scrapped in production orders. I am not aware of any configuration to make this field as display only. Please let me know which user exit or BADI available for this purpose. We do not want to use any screen variants and transaction variants and would like to restrict this at order type or plant level.
    Thanks
    Rijil

    Hello Rijil,
    If not with variants than check with enhancement.
    PPCO0006  Enhancement to specify defaults for fields in order head
    PPCO0012  Production Order: Display/Change Order Header Data
    PPCO0018  Check for changes to production order header
    Regards,

  • 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

  • Batch determination in the production order header

    Hi,
    I'm trying to determine the batch for the production order header (AFPO-CHARG). I've set up the search strategy, added the procedure to the relevant plant/order type combination in OPL8 and created the batch search strategy to default the batch, however, when I create the order the batch does not default. Am I missing anything obvious?
    Thanks in advance!

    Hi
    Batch Search strtaegy is used to get the batch numbers of the components in the production order or get the batches in the delivery of the sales order.
    These batches can be selected based on the selection criteria and the sort rules.
    I do not completely understand what you mean by batch at heaser level.
    If you mean to say the batch number for the header material then you can not search that batch since it has to be created first.
    Hope this helps.
    Cheers

  • Table for field "delivered" in production order header general tab

    Hallo everyone,
    I am looking for the field "Delivered" in the production order header on tab General. Can anyone tell me in which table it is stored?
    Thanks and regards,
    Jessica

    Hi,
    Field "ELIKZ" ("Delivery Completed" Indicator) is available in Table "AUFM" (Goods movements for order).
    Here You can co-relate this with field "AUFNR" (Order Number)

  • Default of fixed batch number for production order header????

    Hi Experts,
    In SAP, when create a production order, in the production order Header view, in the "Good Receipt" Tab, there is a field "Batch" , which means "Assigns a material that is manufactured in batches or production lots to a specific batch ".
    For some special reasons, we want for some certain materials,when create production order every time,the "Batch" field will be a fixed values.
    For example,for material "AB1" ,"CD2",when create production order every time,the "Batch" field will be "2345" automatically,do not need input manually.But for all the other materials, the "Batch" field would be null ,no value.
    How can I do this? How can assign fixed batch number values to some certain materials in production order?
    If there needs some ABAP development,which user exit do I need??
    Thanks for any reply!

    Hi V.SURESH
    Thanks very much!
    I know what you mean. Default batch number in the production order eans, there is no use of using batch management.
    In fact, my purpose is just want to  deactivate the batch management for some certain materials.
    So for some certain materials,when create production order every time,the "Batch" field will be a fixed values.
    How can I do this? How can assign fixed batch number values to some certain materials in production order?
    If there needs some ABAP development,which user exit do I need??

Maybe you are looking for