LSMW Maintenance Plan (IP01) - Header texts

Hi,
LSMW Object 0460 (Maintenance plan) Method 0001 (Create),
Maintain Structure Relations show the following:
IBIPMPLA IBIP: Maintenance Plan
IBIPMPOS IBIP: Maintenance Item
IBIPTEXT IBIP: Long text line
IBIPOLST IBIP: Objectlist
IBIPBDCD IBIP: Direct BDCDATA: formatted BDCDATA: expert use only
Problem / question: I need to maintain the text for the header. Why is there no IBIPTEXT immediately after IBIPMPLA?
Thanks for any help.

Hello,
         I need to migrate Long text for Header in Maintenance Plan, Does any one has solution for this?
Thanks in Advance.
Regards,
Ravi Kishore.

Similar Messages

  • LSMW-Maintenance plan

    Hi,
       How to upload  for <b>Multiple maintenance items for single maintenance plan</b> in LSMW. Can anybody provide me template for this?
    Thanks
    Seenu

    Hi Seenu,
    I have not tried this, but very much like LSMW of task List, you have to use the Vertical Columns for the same fields for different Item.
    regards........

  • BAPI for Creation of Maintenance Plan (TCode - IP01)

    Hello
    Kindly help me with the BAPI for Creation of Maintenance Plan (TCode - IP01)
    Thanks and Regards
    Avishek

    Hi
       Check Tcode: IBIP. and LSMW method and below link it may be helpful.
    [link|Re: LSMW for uploading equipment.]
    Thanks,
    Asit Purbey.

  • 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

  • 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

  • LSMW - Direct Input - Sales order - Header Text

    Hello,
    I upload scheduling agreement with header text.  Upload is successful and I have seen the text from both front end and table STXH.  However, this field is set mandatory, and even it is uploaded, it is still shown on incompletion log.  Only when I manually make some change it passes the incompletion check.
    Here is what i have done In LSMW::
    BTEXHKOM                       Communication fields for maintaining text header
        Fields
            OLDNR                        Document and item number of the data in the external system
                                Source:  ZHEADER-OLDNR (QAD SO no.)
                                Rule :   Transfer (MOVE)
                                Code:    BTEXHKOM-OLDNR = ZHEADER-OLDNR.
    Caution: Source field is longer than target field
            LAISO                        Language according to ISO 639
                                Code:    BTEXHKOM-LAISO = 'EN'.
            TDID                         Text ID
                                Rule :   Constant
                                Code:    BTEXHKOM-TDID = 'ZTTR'.
           BTEXLKOM                       Communication fields for maintaining text lines
               Fields
                   OLDNR                        Document and item number of the data in the external system
                                       Source:  ZHEADER-OLDNR (QAD SO no.)
                                       Rule :   Transfer (MOVE)
                                       Code:    BTEXLKOM-OLDNR = ZHEADER-OLDNR.
    Caution: Source field is longer than target field
                   TXPARGRAPH                   Tag column
                                       Code:    BTEXLKOM-TXPARGRAPH = '/'.
                   TXLINE                       Text editor text line
                                       Source:  ZHEADER-ZTEXT1 (Title of transfer)
                                       Rule :   Transfer (MOVE)
                                       Code:    BTEXLKOM-TXLINE = ZHEADER-ZTEXT1.
    I put them under same structure ZHEADER together with other header fields in SA. Is there anything missing?
    Thanks in advance.
    Susan

    Hi all,
    Many thanks for the suggestions.  One of our expert developers got involved and provided the solution.
    In order to have item level text populate, the VBAP-PSTYV  (the sales document item category) field also needs to be populated.  The VBAP-PSTYV field value is dependent on the sales document type.  (Or, at least it is for the configuartion set up in my example)  The sales document type is VBAK-AUART.
    Stuart

  • LSMW Sales Order BAPI : Header & Item Text

    Hi frenz,
           I'm migrating Sales Order data using LSMW with BAPI method. We got four files...
    one for header, one for item, one for header text, one for item text.
    Now my problem is how do i update both header and item text.
    B'cos while assigning structural relations we got only one text structure(E1BPSDTEXT) common for both header and item. So which source structure(whether header_text or item_text) should be assigned to this segment(E1BPSDTEXT)?
    Else is there any other way to update both header and item texts?
    With regards,
    praveen.

    Unfortunately, you cannot assign more than one source structure to a target structure. But you can still manipulate the code. Here is how.
    Let us say your source structure defined for item texts is ITEM_TEXTS. In your field mapping section for E1BPSDTEXT, double click the '__BEGIN_OF_RECORD__' in change mode. It will pop-up a warning message, say 'yes' and proceed. Remove all the coding that is there in this section, but copy the lines to somewhere(say x buffer) before you do that. You will need those lines below. Just add the following lines there.
    if v_transferred_texts = 'X'.
    *-- all the texts are transferred, don't need to process again.
      skip_record.
    endif.
    You need to define 'v_transferred_texts' in the
    '__GLOBAL_DATA__' section as follows.
    data: v_transferred_texts type c.
    Now double click on '_END_OF_RECORD_' in change mode. It will pop-up a warning, but you can say 'yes' and proceed. This will open up the coding window with one line of code in it 'transfer_record.'. Here you need to add your coding as follows.
    *-- move the header texts
    LOOP AT HEADER_TEXTS.
    *-- This should <b>ALWAYS</b> be there
      g_edidd_segnam = 'E2BPSDTEXT000'.
      g_edidd_segnum = '0021'.         
      g_edidd_psgnum = '000001'.       
      g_edidd_hlevel = '02'.           
      clear E1BPSDTEXT.                
    *-- fill each field of the following fields
      E1BPSDTEXT-DOC_NUMBER = SALESHEADER-ORDERNUMBER.
      E1BPSDTEXT-ITM_NUMBER = '000000'.
      E1BPSDTEXT-TEXT_ID    = HEADER_TEXTS-TEXTID.
      E1BPSDTEXT-LANGU      = SY-LANGU.
      E1BPSDTEXT-LANGU_ISO 
      E1BPSDTEXT-FORMAT_COL
      E1BPSDTEXT-TEXT_LINE  = HEADER_TEXTS-TEXT.
      E1BPSDTEXT-FUNCTION   = '005'.
      transfer_record.
    ENDLOOP.
    *-- Now move the item texts
    LOOP AT ITEM_TEXTS.
    *-- This should <b>ALWAYS</b> be there
      g_edidd_segnam = 'E2BPSDTEXT000'.
      g_edidd_segnum = '0021'.         
      g_edidd_psgnum = '000001'.       
      g_edidd_hlevel = '02'.           
      clear E1BPSDTEXT.                
    *-- fill each field of the following fields
      E1BPSDTEXT-DOC_NUMBER = SALESHEADER-ORDERNUMBER.
      E1BPSDTEXT-ITM_NUMBER = ITEM_TEXTS-ITM_NUMBER.
      E1BPSDTEXT-TEXT_ID    = ITEM_TEXTS-TEXTID.
      E1BPSDTEXT-LANGU      = SY-LANGU.
    *  E1BPSDTEXT-LANGU_ISO  =
    *  E1BPSDTEXT-FORMAT_COL
      E1BPSDTEXT-TEXT_LINE  = ITEM_TEXTS-TEXT.
      E1BPSDTEXT-FUNCTION   = '005'.
      transfer_record.
    ENDLOOP.
    *-- set the flag that the texts have been transferred
    v_transferred_texts = 'X'.
    Please let me know how it goes.
    Srinivas

  • Header Text field manadatory in Automatic Inv. settlement plan

    Hi Friends,
    We have made field Header text Manadatory (RBKP-BKTXT), so that when we perform LIV you must enter the details.
    Now we are planning to do Invoice plan and in that when performing MRIS system automatically makes LIV as per settings. Because of above settings we couldn't able to perform MRIS. System is throwing error that " Please Enter Text in Doc. Header Text Field"
    How to over come this.
    Regards,
    Sai Krishna

    Hi,
    We have to do thru user exit or do validations thru FI.
    Regards,
    Sai Krishna

  • Table for maintenance plan and maintenance cycle and Unit

    Hello,
    I need to know the table where the values are stored for maintenance plan, maintenance cycle and Unit.
    I know that we can get the maintenance cycle and unit from MMPT table.
    Question 1
    If the maintenance plan has only a single cycle then the data is stored in above table MMPT, but if a maintenance plan has mutiple cycles like 1 maintenance plan has maintenance cycle as 364 Days and 1092 days then the data is not stored in MMPt table.
    Question 2
    Requirement is I need to develop a report where in I need maintenance order, maintenance plan and the relevant maintenance cycle and unit. Supose an maintenance order is created for the above maintenance plan which has 2 maintenance cycle how can I identify for which maintenance cycle the order is created.
    Regards,
    Narendra

    Hi,
    Please review PM tables
    PM/SM/SD Tables
    MPOS                       Maintenance Items
    AFAB     Network - Relationships
    PLKO     Task list
    PLAS
    AFFH     Operations
    PRT assignment data for the work order
    AFFL     Work order sequence
    AFFT     Order process instructions
    AFFV     Order process instruction values
    AFFW     Goods movements with errors from confirmations
    AFIH     Maintenance order header
    AFKO     Order header data PP orders
    AFPO     Order item
    AFRC     Table of planned changes to conf.: Automatic goods receipt
    AFRD     Default values for collective confirmation
    AFRH     Header information for confirmation pool
    AFRU     Order completion confirmations
    AFRV     Pool of confirmations
    AFVC     Operation within an order
    AFVU     DB structure of the user fields of the operation
    AFVV     DB structure of the quantities/dates/values in the operation
    MPOS     Maintenance ITEM
    AFWI     Subsequently posted goods movements for confirmations
    AUFK     Order master data
    AUFM     Goods movement for order
    MPLA     Maintenance Plans
    BGMK     Master warranty header
    BGMP     Master warranty item
    BGMS     Text item master warranty
    BGMT     Master warranty text
    BGMZ     Warranty counter information
    CRHD     Work Center Header
    CRTX     Text for the Work Center or Production Resource/Tool
    EQKT     Equipment short texts
    EQST     Equipment link to BOM
    EQUI     Equipment master data
    EQUZ     Equipment time segment
    HIKO     Order master data history
    IFLO     Functional Location (View)
    IFLOT     Functional location (TABLE)
    IFLOTX     Functional location: Short texts
    IHGNS     Plant maintenance permit segment
    IHPA     Plant Maintenance: Partners
    IHSG     Object-related permits in Plant Maintenance
    ILOA     PM object location and account assignment
    IMPTT     Measuring point (table)
    IMRG     Measurement document
    KAKO     Capacity Header Segment
    KONP     Conditions (Item)
    KONV     Conditions (Procedure Data)
    OBJK     Plant Maintenance Object List
    QMEL     Quality notification
    QMFE     Quality notification - items
    QMIH     Quality message - maintenance data excerpt
    QMMA     Quality notification - activities
    QMSM     Notification - Tasks
    QMUR     Quality notification - causes
    STPOA     Name is does not have an A at the end; BOM items
    T001     Company Codes
    T001L     Storage Locations
    T001W     Plants
    T077D     Customer account groups
    T003O     Order Types
    T352R     Maintenance revisions
    T353I_T     Maintenance activity type description
    T356     Priorities
    T357G     Permits
    T357G_T     Table 357G texts
    T370A     Activity category for PM lists
    TINCT     Customers: Incoterms: Texts
    TVKO     Organizational Unit: Sales Organizations
    TVKOS     Organizational Unit: Divisions per Sales Organization
    TVKOV     Org. Unit: Distribution Channels per Sales Organization
    TVTA     Organizational Unit: Sales Area(s)
    VIAUFKST     Order selection view
    MMPT Cycle detail
    Regards
    Carlos

  • Load maintenance plan data

    Hi,
    I have a file to load maintenance plan data(IP01).I used the standard program riibip00.
    But only those maintenance plan categories for which the call object is initial are supported.(Mentioned in documentation of riibip00)
    I have them not initial.
    How do I proceed, other than Recording?

    Hi Maruthi,
                      At my place though we have done the same using a BDC, but uploading a maintenance plan is quite possible via LSMW using"Direct Input Methord", IBIP Structure.
    Object is 0460
    methord is 0001.
    you can even create a strategy plan using the same Program IBIP.
    hope it will help you.
    Regards,
    Yawar Khan

  • Header text updation at the time of IP10

    When the user converts the maintanence plan for PRS at the time of IP10 the user wants to know the below
    1. Need to get the prs number in the footer so that immediately he can not it down
    2. They have some specific text to be updated in the PRS where while converting that in to po the same will get reflected in the PO print previe
    at the time of creation of PR itself the same text need to get updated in PR header text and as well as in the item level

    PRAVANESH TN,
    You post isn't clear...
    I'm assuming that a PRS is a purchase requisition??
    And where is this text coming from?
    PeteA

  • URGENT HELP *** Need to load BOM Header TEXT

    Hello Experts,
    How can i load BOM Header text using LSMW
    Thanks
    S

    Two ways to upload:
    1. Via FM: SAVE_TEXT
    2. Create a recording to add text for BOM Header and Use accordingly.
    Regards
    Eswar

  • Changing a cycle in an active maintenance plan

    Hello All,
    I received a request from an end user to make a change to an active maintenance plan. The plan has a 3mo cycle. The users would like to first, generate a call for March 2011 and second, to change this to a an annual cycle. I am able to use the 'Restart in Cycle' to generate a call in March, unfortunately, I am not able to figure out how to change the cycle from 3mo to 12mo. Is it possible for to change the plan cycle from 3mo to 12mo once the plan is started? The header section in IP10 is grayed out.
    At the moment, it looks as though I need to create a new maintenance plan to accommodate the request.
    Thanks in advance.
    Anna

    Mahee,
    Appreciate your quick response. This was a strategy plan and I was able to make the changes as you had suggested, through the task list.
    Thank you so much for your help!
    -Anna
    Edited by: Anna Vuong on Feb 24, 2011 10:08 PM

  • Copy GOS attachment from maintenance plan to order

    Hello,
    we use maintenance plans to create maintenance orders.
    The idea is to attach checklists and other documents (excel, word, pdf) to the maintenance plan and this should be copied to each maintenance order. We attach att the moment this documents using GOS.
    Is there a standard way to copy document attachments from plan to order?
    Or has one of you realized a solution for this requirement?
    Thanks a lot.
    Kind regards
    Manfred

    Hi,
    PRT is Production Resources / Tools.
    PRT can be an equipment or a material or document or even a free text.
    Simply, it is an object/item that is required to carry a particular application.
    There are other benefits os PRT as well.
    Comprehensive documentation is available online.
    You can attach a document as a PRT by:
    1. Select the task list operation & click on PRT push button below operation list.
    2. On PRT selection dialog box, select "Document" push button.
    3. You will get relevant fields for selecting a document from DMS.
    4. Select your document & save.
    Regards,
    Vijay

  • Create PR header text via BAPI

    Dear all,
    Is there any BAPI which enable us to create the header text for the purchase requisition?
    I have tried out BAPI BAPI_REQUISITION_CREATE but the text creation is at item level.
    Please advise.
    Thank you in advance.

    Hi,
    Since the text could be read using FM 'READ_TEXT', then it should be able to save it using FM 'SAVE_TEXT'.
    Or you could use LSMW with direct input method with object 0001 method 0001 and program name /SAPDMC/SAP_LSMW_IMPORT_TEXTS.
    Another method is by using BDC after BAPI_REQUISITION_CREATE.
    Please note that above method only applicable if the PR is successfully created.
    Regards,
    Teddy Kurniawan

Maybe you are looking for