Header text not printed for scheduling agreement

Hi All,
I have issue with header text print out for scheduling agreement (SA).
In SA when I am manually writing some note and then taking print out, system is giving me correct output with maual note.
I have one standard text (ST) which I need to be printed in evry SA, so in SPRO I created new head text for vendor and in copying rule for text for SA, I created linkage of SA header text with Vendor head text.
In vendor master, I inserted ST in newly created vendor header text.
So now when ever I create new SA for vendor system will determin header text from vendor master.
Now after creating SA when I check the SA, I am able to my ST in SA, but at the time of print out this ST in not printing.
Please let me know what could be the reson.
Regards,
Sameer

I dont understand about what you mean by expand.
When you a print PO, PO text  (header or item) it will check to the configuration setting.
The system didnt care if its adopted from vendor master or info record, or whatever you make in the copying rule.
In your case : you create a standard text then it get copied into PO , then you set the standard text to the PO for print out, example the standard text : word is
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
Then in the PO the text appear will be like below(the same, because it get copied)
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
If you configure it in define text for SA, then it the print out it will also (the same)
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
So what text need to expand?

Similar Messages

  • Document flow is not updated for Scheduling agreement

    Hi Gurus,
    Can you please advise on the below issue..
    Some deliveries created with reference of schedule agreement are not displayed in scheduling agreement in forecast delivery schedule under delivery tab and as well as not updated in document flow for VBFA table.
    There are two ways to create delivery with reference of Scheduling agreement , 1)  Create Delivery order (Order Type   : TAM) with reference of SA, then delivery for TAM order.
    2) we can add the line item in existing TAM order with reference of SA .
    Advance thanks for your valid points.
    Best regards,
    Venkat.

    Hi Ram,
    Thanks for the reply, there is no issue in copy control settings.
    Best regards,
    Venkat.

  • SAP SCRIPT: Header text not printing - Custom Purchase Order.

    Hello Experts,
    I have used the standard MEDRUCK and copied to ZMEDRUCK. I want the PO header text to print in my form.
    I have used subroutine-pool and called it in the form.
    Here is my subroutine
    FORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    *  HTEXT = EKKO-EBELN.
      READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    TNAME = EKKO-EBELN.
    *CONCATENATE EKPO-ebeln EKPO-ebelp INTO v_item_text.
    *MOVE v_head_text to HNAME.
    CALL FUNCTION 'READ_TEXT'
      EXPORTING
    *   CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
    *   ARCHIVE_HANDLE                = 0
    *   LOCAL_CAT                     = ' '
    * IMPORTING
    *   HEADER                        = TNAME
      tables
        lines                         = li_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.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CLEAR out_tab.
    out_tab-VALUE = TNAME.
    CONDENSE out_tab-VALUE.
    MODIFY out_tab TRANSPORTING VALUE WHERE NAME = 'TNAME'.
    ENDFORM.
    And my script in the form is
    PERFORM FETCH_TABLE_DATA IN PROGRAM ZMEDRUCK_SUBP2
    USING &EKKO-EBELN&
    CHANGING &TNAME&
    ENDPERFORMpar RECEIVED FROM M/S     &TNAME&
    The header text is still not flowing in my form.
    What mistake i'm I doing here ?
    How can I resolve this ?
    Pls help !

    Hi,
    Data is li_lines internal table. 1st you have to read the text form the internal table line by sy-tabix.
    At last you have to concatenate these variable into the out tab value.
    you can use the following code
    ORM fetch_table_data TABLES in_tab STRUCTURE itcsy
                                 out_tab STRUCTURE itcsy.
      TABLES EKKO.
      DATA: BEGIN OF header OCCURS 0,
              ld_txt1(163),
              ld_txt2(163),
              ld_txt3(163),
            END OF header.
      DATA: li_lines LIKE STANDARD TABLE OF tline WITH HEADER LINE,
            ID like THEAD-TDID,
            TNAME LIKE THEAD-TDNAME,
            TDOBJECT like THEAD-TDOBJECT.
      DATA  HTEXT LIKE EKKO-EBELN.
    READ TABLE in_tab WITH KEY EKKO-EBELN.
      if sy-subrc = 0.
      TNAME = in_tab-value.
      ENDIF.
    ALL FUNCTION 'READ_TEXT'
      EXPORTING
      CLIENT                        = SY-MANDT
        id                            = 'F01'
        language                      = 'E'
        name                          = TNAME
        object                        = 'EKKO'
      ARCHIVE_HANDLE                = 0
      LOCAL_CAT                     = ' '
    IMPORTING
      HEADER                        =
      tables
        lines                         = li_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.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    data : f_lines TYPE i,
    DESCRIBE TABLE li_lines LINES f_lines.
    data: lstr type String,
          lstr1 type string,
          lstr2 type string,
          lstr3 type string,
          lstr4 type string.
    read table li_lines index 1.
    lstr = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 2.
    lstr1 = li_lines
    condense lstr.
    clear li_lines
    read table li_lines index 3.
    lstr2 = li_lines
    condense lstr.
    clear li_lines
    if f_lines GT 3.
    ead table li_lines index 4.
    lstr3 = li_lines
    condense lstr.
    clear li_lines
    ead table li_lines index 5.
    lstr4 = li_lines
    condense lstr.
    clear li_lines
    endif.
    data : v_text type text.
    concatenate  lstr1 lstr2 lstr3 lstr4 into v_text separate by ' '.
    CLEAR out_tab.
    READ TABLE out_tab WITH KEY name = 'TNAME'.
    out_tab-value = v_text
    MODIFY out_tab INDEX sy-tabix.
    Regards
    Nayan Kumar

  • EDI Message not Transmitted for Scheduling Agreement

    Hi guys!
    Does anybody know what should I check to see why the EDI message for a delivery line in the scheduling agreement has not been transmitted? Would really save me
    Regards,
    Ileana

    Hi
    First check the message whether it has been processed properly or not . goto ME39 , Check the message(Shift +F1)
    if the message is in red, check the processing log,
    If the message is in yellow , process the same using ME9E
    If the message is in grren means the Idoc's are generated.
    Now got Transaction WE05 & Check the IDoc's giving the Basic type  - DELFOR02
    Give from & to dates based on the rpocessing date of the message.
    Here check the Idoc's are in Red or green . If in red check the Message in the Status.
    Thanks & Regards
    Kishore

  • Column Header Text not displaying for multi-set column block

    Hello,
    I have assigned a key figure set to a column block in a report writer report in ECC 6 using table FAGLFLEXT with both additional text functionality use and without use of additional text.
    I can't get the column headings text for these key figure sets in the column block to appear on a report writer report.
    Your assistance in getting the column headings text to appear will be greatly appreciated.
    Thanks,
    Michael Hamp

    For more clarity, and to make sure that the error is not in my database or series query, I have replicated the error online here:
    http://apex.oracle.com/pls/apex/f?p=27270:4
    I plotted 3 series in the first region, including one series with no data for one period.
    I plotted the fourth series in the second region, which has no data for 2 months. When I try to plot this in the first chart, nothing is displayed.
    I can't understand why this is happening, I hope that there is a solution for this. I can share the workspace password where the above application is, if some one wants to take a look.

  • Spool - text not printing for 1st run

    Hi Experts,
    I am sending the Sap SCRIPT layouts from my print program to a spool request.
    When i execute my print program directly (without going to debuggng mode), some part of the texts (headings.. etc) are NOT seen on the layout.
    But when i run the print program via debugging mode and later turn the debug off then i am able to see the complete text on the layout from the spool.
    Please tell me what more i should have to do have complete texts on my layout on the direct exec of my print prgram?
    Thanks
    Dany

    Hi Pawan,
    The code is huge and is enclosed in loops.any ways the sample is here
       call function 'OPEN_FORM'                   
            exporting                              
                 application    = 'TX'             
                 archive_index  = ' '              
                 archive_params = ' '              
                 device         = 'PRINTER'        
                 dialog         = ' '              
                 form           = space            
                 language       = sy-langu         
                 options        = zoption          
            importing                              
                 language       = sy-langu         
            exceptions                             
                 others         = 1.               
    zoption has :
    zoption-tddest    = usr01-spld. 
    zoption-tdimmed   = 'X'.        
    zoption-tddelete  = 'X'.        
    zoption-tdprogram = sy-cprog.   
    loop at itab.
    call function 'START_FORM'       
           exporting                   
                form      = w_form     
                language  = sy-langu   
                startpage = 'FIRST'.   
    another loop contains the call to main  windows
    loop.
    endloop.
      call function 'END_FORM'                       
           importing                                 
                result                   = zitcpp    
           exceptions                                
                unopened                 = 1         
                bad_pageformat_for_print = 2         
                others                   = 3.        
    endoop
      call function 'CLOSE_FORM'                  
           importing                              
                result                   = zitcpp 
           exceptions                             
                unopened                 = 1      
                bad_pageformat_for_print = 2      
                send_error               = 3      
                others                   = 4.     
    zitcpp has :
    zitcpp-tddest    = usr01-spld.  
    zitcpp-tdimmed   = 'X'.         
    zitcpp-tddelete  = 'X'.         
    zitcpp-tdprogram = sy-cprog.    
    zitcpp-tdnewid = ' '.            
      Can you please help me with this?

  • MRP To Generate SCHEDULE LINES for Scheduling Agreement

    Hi
    I have followed the below steps but still the Schedule lines is not generated for scheduling agreement.
    1Maintain MRP views 1,2,3,4 for the material in material mste.(MM01)
    2. Maintain Purchase Info Record for the vendor plant & material combination.(ME11)
    3. Create Scheduling agreement using ME31L
    4. Maintain source list for the material & the scheduling agreement # and Line item set the MRP relevant indicator 2 (Necessary ?) ME01
    During Run MRP for the material.the below details entered///
    Processing key NETCH Net Change in Total Horizon
    Create purchase req. 1 Purchase requisitions in opening period
    Schedule lines 3 Schedule lines
    Create MRP list 1 MRP list
    Planning mode 1 Determination of Basic Dates for Planned
    Run MDBT or MD02 but still doesn't create the schedule lines......Anything else missing.
    MRP1:
    MRP Procedure: PD
    MRP Group: 0000 (External Procurement only)
    Lot Size: EX (Lot For Lot)
    MRP2:
    Procurement Type: F
    Sched Margin Key: 000
    MRP3:
    Avilablity chec: 02 (Individual requirement)
    MRP: 4
    Nil

    Raj,
    Source List a Mandatory for Scheduling Agreement, if you want to create automatic Scheduling line.
    Plz use (2) in MRP RELEVENT tab in ME01 (Source List).
    rest of the thing is ok, make sure a material master(MRP 2 VIEW) in that view you have to give a planed delivery days. it is must.
    HOPE IT WILL WORK
    Regards:
    Poision

  • Foreign Trade - Legal Control for scheduling agreements

    We are on version 4.6C and I am setting up the legal control for my company.  It seems to work quite well for sales orders but then when I went in to configure scheduling agreements it errors and tells me you cannot do legal control for document type "E" which are typically scheduling agreements.
    I cannot find any documentation on this.  Does anyone know why legal control does not work for scheduling agreements and/or is this functionality available in the Global Trade Services module??
    Thanks in advance for any and all help!!
    Debbie

    Jean,
    I have done a Foreign trade implementation.
    The core team of the client are FT experts and they would tell you about the legal requirements. Your job is to map them in SAP FT.
    In this process you would gain Knowledge about  Foreign trade regulations of that country. Remember its country specific.
    The ECCN's are provided by the client. Info abt the same is extensivley available on the NET.
    You have to get the list of all the mtrls which fall under the controlled cantegory of the respective commerce ministry and then start the config setting  these mtrls as relevant for FT checks.
    Thanks
    Vishal

  • Inbound Delivery For Scheduling Agreement Lines using LSMW

    Hi,
    We need to create inbound deliveries for scheduling agreements. Our scheduling Agreements are too big with 200 lines. But the vendor used to send only few discrete lines in his ASN. Is it possible to create inbound deliveries for the Scheduling agreement using LSMW? Is there any standard BAPI or IDOC available to handle this in LSMW? Has anyone done this before?
    Our requirement is as follows.
    1. Create Inbound Delivery for few lines of the Scheduling Agreement
    2. The delivery quantity of the inbound delivery will be a partial quantity of the Scheduling Agreement
    3. Materials are batch managed and the batch number for each inbound delivery item need to be captured.
    4. Vendor's ASN Number and its item number need to be captured at inbound delivery header and item level respectively.
    Note: Delivery Schedule of the Scheduling Agreement is not used in the above scenario.
    If you have any input, it will be really appreciated.
    Regards,
    SP0526

    Hi,
    You can give your scheduling agreement number in the field Purchase Order.
    If you want select from the list, you can click on PO tree (just under create inbound delivery). There selet document category as "L". You will get the scheduling agreement list.
    Regards,
    Prabu

  • Taxes for Scheduling Agreement

    Hi,
    i have used FM CALCULATE_TAX_ITEM in PO Print program to get the tax amounts. I want the same for Scheduling Agreement. But an error occurs in the same saying ' Tax Code XX Country IN does not exist in procedure TAXINN' . How can i get the tax amounts for the same?? Tax Code is entered and the taxes are calculated & diplayed automatically in the transaction.
    Ur valuable inputs awaited..
    Thanks & Regards,
    Bikash
    Message was edited by: Bikash  Agarwal

    Hi Brijesh,
    This may be the late reply to ur query,
    kindly maintain condition record in transaction FV11 for the tax code which u have specified in purchase order.
    otherwise u will keep on getting this message for same tax code
    regards
    satish jadhav

  • What is the procedure for scheduling agreements, for manual entry

    dear sirs,
    pls explain the procedure for scheduling agreements(manual)  creating and invoicing.

    From the Purchasing menu, choose Outline agreement ® Scheduling agreement ® Create.
    The initial screen appears.
    Enter the necessary data. Any data you enter under Default Data: Item will appear as default data in each item.
    In the Agreement type field you specify whether you are creating a scheduling agreement with or without release documentation, for example. The agreement types LPA (with release documentation) and LP (without release documentation) are defined in the standard system.
    Press ENTER.
    The header data screen appears.
    Enter the duration of the scheduling agreement. Check the other fields on this screen. Make any necessary changes (e.g. the terms of payment) and define the header conditions (see Maintaining Conditions).
    Press ENTER.
    The item overview screen appears.
    Enter the necessary data for each item (material number, target quantity, price, receiving plant, account assignment etc.).
    Material without material master record: leave the field for the material number empty and enter the following:
    – A short description of the relevant material or service in the Short text field
    – The material group to which the material belongs
    – The account assignment category (column A)
    – The target quantity and the order unit
    If you specify an account assignment category, you must enter the relevant account assignment data for each item of the scheduling agreement. To do so, choose Item ® Account assignments.
    (See also Account Assignment.)
    If necessary, review the details for each item. Select the item(s) to review. Then choose Item ® Details to call up the item detail screen.
    Enter the desired conditions for the item (discounts, surcharges etc.). To do so, select the item and choose Item ® Conditions.
    Enter further text for the item if any additional instructions to the vendor or to Goods Receiving are necessary. Choose Item ® Texts ® Text overview.
    Save the scheduling agreement.
    Fi you want to use firm zone then
    On the scheduling agreement item overview screen, select the item for which you wish to define delivery schedule time zones.
    Choose Item ® More functions ® Additional data.
    In the Firm zone field, enter a number of days (calculated from the current date) defining the period after whose expiration the firm zone ends and the trade-off zone begins.
    In the Trade-off zone field, enter the number of days (calculated from the current date) defining the period after whose expiration the trade-off zone ends and the planning zone begins.
    If the firm zone is to cover one month, enter the value 30 (days) in the Firm zone field. If the trade-off zone ends one month after the firm zone, enter the value 60 in the Trade-off zone field.
    In the Binding for Materials Planning field, specify whether Materials Planning may change schedule lines that fall within the firm or trade-off zones.
    Save your data.
    Delivery schadule
    Choose Outline agreement ® Scheduling agreement ® Delivery schedule ® Maintain.
    The initial screen for the creation of delivery schedules under scheduling agreements appears.
    Enter the document number of the scheduling agreement and press ENTER.
    The item overview screen for the scheduling agreement appears.
    Select the item you wish to schedule. Then choose Item ® Delivery schedule.
    Enter the following for each schedule line:
    - Date category (Month, Week, or Day) and the corresponding date
    - Delivery time-spot (if applicable)
    - Quantity to be delivered (the unit of measure is the same as in the scheduling agreement)
    Referencing a purchase requisition: Choose Sch. agmt. schedule ® Create w. reference ® To purchase req. to adopt the delivery data from an existing requisition.
    Save the delivery schedule.
    Invoice is same like PO

  • Delivery Schedule for Scheduling Agreement

    Hi Gurus,
    Can I do GR for scheduling agreement(with delivery schedule) if the GR is earlier than delivery date? What should I do to be able to do so?
    Thank you very much

    Hi
    'Propose all Items" is ticked so that MIGO proposes all the items irrespective of the delivery date and quantity. This means that even if the delivery date has not yet been reached or the complete qty has been received, the system will still allow you to do the GR.
    Hope this clarifies.
    Thanks

  • Idoc Message type for Scheduling agreement

    Dear Experts,
    How to configure to create Idoc for Scheduling agreement (not the releaseed schedule lines) ?
    I am trying to use message type ORDERS05 but it is not working.
    Will any body guide me preferably step by step process for this ?
    Thanks in Advance,
    Best Regards,
    Raju

    Hi Anji,
    Thanks for the Reply. But i think ORDRSP is for Order Confirmations.
    But I have to send Outbound Idoc for a Schedule Agreement.
    Whether the same  Idoc type & Messge type used for SO/PO(e.g ORDERS05, ORDERS/ORDCHG) can be used for Scheduling Agreement.
    Please Advice.
    Regards,
    Anbalagan

  • Confirmation Control for Scheduling Agreement

    Hello Experts,
    I have got situation for subcontracting scheduling agreement where client doesn't need confirmation control. They want to perform GR against scheduling agreement after creating delivery schedule without extra activity(Confirmation).
    Process flow is:
    1. Create work order(generates purchase requisition for subcontracting activity)(CO01)
    2. Create delivery schedule against purchase requisition for scheduling agreement(ME38)
    3. Create delivery to supplier through ME2O
    4. Confirm Goods receipt(ME38)
    5. Goods receipt(MIGO)
    I am trying to avoid step 4.
    Standard scheduling agreement setup automaticially fetches confirmation control key 0004. If I am disabling it manually, and not performing step 4, system throws message "no GR relevant item in PO"
    Can somebody suggest settings to achieve my scenarion
    Thanks and Regards
    Gyanesh

    Hello PavanKumar,
    The inbound delivery is one type of confirmation you are receiving from the vendor so I dont think you will be able to create the inbound delivery without confirmation control key.
    Hope this helps.
    Arif Mansuri
    Reward if answre is helpful.

  • Release strategy for Scheduling Agreement(SA)

    Dear Forum,
    This issue is with regards to the release strategy for Scheduling Agreement(SA)
    Until now release has only been applicable to contracts at our client site. But we now plan to introduce it for SA as well. Such a feature is available in SAP but the problem is that with the given release strategy GR is not allowed until the release is affected. The system allows you to post the delivery schedule.
    Now what I want is that after making the SA the system should not allow to make delivery schedule if release is not affected.
    We also have MRP run at client site..Kindly suggest the procedure as, how to configure it.Are der any User Exit for the same,if so please discuss..
    Warm Regards
    Nainesh
    SAP ECC 6.0

    Hi,
    What's the SA Type that was created via MRP.
    If it's LP (without release document), release will not do anything BUT
    If it's LPA (release document), then you will not be able to Post the GR until release is affected.
    Thanks.
    Scheduling Agreement can be categories as
    1) LP (without release document) and
    2) LPA (with release document)
    If use LP, you can do GR without release but with LPA, you need to release the schedule line via ME38.
    Thanks.
    NanoSAP  
    Posts: 58
    Registered: 1/5/09
    Forum Points: 6 
       Re: release strategy for Scheduling Agreement(SA)  
    Posted: Jun 26, 2009 8:32 AM    in response to: sathish.kumar           Reply 
    Dear Mr.Satish,
    Thanks a lot for your earliest reply...But my point is i want the system should not allow to make delivery schedule if release is not affected...Though schedule lines are generating through MRP run...Is is possible,by any chance...??

Maybe you are looking for

  • Problem with "PL/SQL Dynamic Content" and displaying rows

    hi, im new to APEX, and pl/sql [but not web dev or sql]. ive found the bit in APEX that lets you add data from your DB using the 'CREATE' > 'PL/SQL Dynamic Content'. maybe there's a better option for people who dont know pl/sql? i dont know? however,

  • Ignore blank rows inbetween in Xcelsius

    Hi, We are using Xcelsius 2008, we need to ignore blank rows which are there inbetween few rows. so we have few rows data and few blank rows rhen data and blank rows. Ignore blank rows will only ignore the rows if its in end but it doesn't if we have

  • Declaration in include

    <b>Is it good program practice</b> to keep all declaration in an INCLUDE? If yes <b>what we can we keep in an INCLUDE</b>? Global declarations?? only global itabs or global variables also. Thanks, RAJA

  • Java.sql.SQLException: Invalid column index error While getClob()

    I have code which works fine in Iplanet or stand alone Java program using WLS Connection Pool, But not from the the WLS servlet. This uses 9.1 Oracle JDBC Thin Driver Code snippet: cstmt.setString(1, servicename); cstmt.setString(2, params); String r

  • Illegal characters in SOAP message

    Hi I consistently get the following in the server log (I'm using JAX-WS 2.1): Couldn't create SOAP message due to exception: XML reader error: javax.xml.stream.XMLStreamException: ParseError at [row,col]:[1,1] Message: Content is not allowed in prolo