Change in scheduling agreement schedule lines .

Dear All ,
        We have activated release strategy for scheduling agreement .Previously while maintaining schedule lines it was not going for release .
         But now while maintaining schedule lines in ME38 it is going for release .I want to know what is the reason and I want to stop this .
         We have made some changes in Closed PO amendment ,like we have changed the release indicator value R -6- 10% to R - 6 -0% .
Like whenever we make change in price of a PO even a 1paise
it should go for release .
          The release strategy for SA and PO is same .

Hi,
Since you have changed the release indicator it is again going for release for any change.
Please change the release indicator to 2 from  6 so that you can change the schdeule lines or any modiifcation again release will not set
Please check the release indicator in P.O and SA
G.Ganesh Kuamr

Similar Messages

  • KANBAN cycle - Change of Schedule line dellivery date.

    Hi,
    I have some queries in KANABAN scenario
    1) How to change the schedule line delivery date generated from KANBAN cycle.
    2)How to avoid generation of schedule lines from KANABAN if the Scheduling agreement was not released.
    regards,
    Kannaiah Naidu

    Hi,
    1.It is not possible to change the schedule lines of the Scheduling agreement with kanban indicator. Only work arround solution is to remove the kanban indicator. Then you can change the schedule line.
    2.Using user exit, during emptying of the bin check whether scheduling agreement is released on not.If not released generate error.
    Regards,
    Krishna A S V

  • Delivery Date needs to be changed on Schedule lines

    Hi All-
    I am using BAPI_SALESORDER_CHANGE, to update the delivery date on the schedule lines...If I have 2 lines of schedule, needs to be updated the second one ETENR '0002'...
    Bapi returns message that successfully processed, when I go back and look at Sales order, I don't se any changes on schedule line..
    I am pssing into BAPI, sales doc and schedule line with the delivery date and the flag 'U'..and also I am using BAPI commit...
    But, let me know if I am missing something and also let me know is it possible to change schedule delivery date or not?
    Thanks,
    Sony

    Hi
    Please follow this process.
    Only specify fields that should be changed
    Select these fields by entering an X in the checkboxes
    Enter a U in the UPDATEFLAG field
    Always specify key fields when changing the data, including in the checkboxes
    The configuration is an exception here. If this needs to be changed, you need to complete it again fully.
    Maintain quantities and dates in the schedule line data.
    1. Minimum entry:
    You must enter the order number in the SALESDOCUMENT structure.
    You must always enter key fields for changes.
    You must always specify the update indicator in the ORDER_HEADER_INX.
    2. Commit control:
    The BAPI does not run a database Commit, which means that the application must trigger the Commit so that the changes are read to the database. To do this, use the BAPI_TRANSACTION_COMMIT BAPI.

  • How to change the schedule line date in SO with reference to value contract

    Hi SD Guru's,
    I need to change the schedule line date in the sales order with reference to the value contract by using some algorithm that i will write. The problem that i can't find the suitable place to add the algorithm. I can't add it to the Copy control because there is no schedule lines in value contract and copy control for schedule lines does no exist.
    I can not add to user exit MV45AFZZ  , because order that was created with reference to the value contract, does not go through this user exit.
    Do you have some ideas where i can add it?
    Thanks and Regards
    Viky
    Edited by: Viky Sloutsky on Oct 20, 2010 12:43 PM

    Hello Viky
    How about using program MV45AFZB- USEREXIT_CHECK_VBEP or USEREXIT_MOVE_FIELD_TO_VBEPKOM
    or program FV45EFZ1- USEREXIT_CHANGE_SALES_ORDER
    Does the program go through these exits when an order is created with ref to a value contract??
    Also I am wondering why you need to change a Schedule line determined by Availability check and/or delivery scheduling?

  • Changing of Schedule line

    Hi Friends,
    I have a below mentioned issue.
    We have nearly 500 sales order created on jan 1st 2010 and which are scheduled for the delivey on April 2nd 2010.
    But now the stock is ready and we want to deliver all the sales orders.
    So my question is how to change the schedule lines for the current date to all the sales orders inorder to deliver the stock immediately.
    Kindly provide me the solution ASAP
    Thanks
    RAM

    Hi
    When you run a V_V2 rescheduling program, by inputting material and plant, all the open sale order (back orders) schedule lines get confirmed.
    Then you can proceed with delivery creation through VL01n or vl10e etc.
    thank you
    Anirudh

  • Change the schedule line committed qty in PO items using ME_PROCESS_PO_CUST

    Dear Experts,
    I want to make the PO item schedule line committed quantity MNG02 field to zero, for this purpose I wrote the logic as below.
    but its not changing the committed quantity to zero. Please advice me.
    method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
    DATA: lwa_po_header TYPE REF TO if_purchase_order_mm,
            lwa_mepoheader TYPE mepoheader,
            lwa_mepoitem TYPE mepoitem,
            lwa_mepoitemx TYPE mepoitemx,
            lwa_ekko TYPE ekko,
            lwa_ekpo TYPE ekpo,
            lwa_ekpv TYPE ekpv,
            lwa_eket TYPE eket,
            tp_minqty TYPE min_qty,
            tp_clabs TYPE labst,
            tp_kosch TYPE kosch,
            tp_werks TYPE werks_d,
            tp_tdid type tdid,
            ta_textlines type MMPUR_T_TEXTLINES,
            lwa_textlines LIKE LINE OF ta_textlines,
            lwa_minstk TYPE zminstk.
      DATA: schedules TYPE PURCHASE_ORDER_SCHEDULES,
            schedule LIKE LINE OF schedules,
            lwa_schedule TYPE meposchedule,
            tp_mtvfp TYPE mtvfp,
            tp_avqty TYPE BSTMG,
            tp_minqty1 TYPE BSTMG.
      if sy-tcode = 'ME21N'.
    Get PO Header data
        lwa_po_header = im_item->get_header( ).
        lwa_mepoheader = lwa_po_header->get_data( ).
        MOVE-CORRESPONDING lwa_mepoheader TO lwa_ekko.
    Get PO Item data
        lwa_mepoitem = im_item->get_data( ).
        MOVE-CORRESPONDING lwa_mepoitem TO lwa_ekpo.
    *-> Get schedule line data
                  CALL METHOD im_item->get_schedules
                    RECEIVING
                      re_schedules = schedules.
                  LOOP AT schedules INTO schedule.
                    CALL METHOD schedule-schedule->get_data
                      RECEIVING
                        re_data = lwa_schedule.
    *-> Change Committed quantity
                    lwa_schedule-mng02 = 0.
                    CALL METHOD schedule-schedule->set_data
                      EXPORTING
                        im_data = lwa_schedule.
                  ENDLOOP.
                    CALL METHOD im_item->set_data
                      EXPORTING
                        im_data = lwa_mepoitem.
        ENDIF.
    endmethod.

    Hi Siddu,
    Please finf enclosed with the suedo code.
    DATA: LS_MEPOITEM TYPE MEPOITEM,
                LS_OBJ TYPE REF TO IF_PURCHASE_ORDER_MM,
                LS_MEPOHEADER TYPE MEPOHEADER.
    *IM_ITEM is ur importing parameter
    in order to get the  item details :
    LS_MEPOITEM = IM_ITEM->GET_DATA( ).
    *In order to get the current document type
      LS_OBJ = IM_ITEM->GET_HEADER( ).
      LS_MEPOHEADER = LS_OBJ->GET_DATA( ).
    Now you have your document type in LS_MEPOHEADER-bsart ...
    IF LS_MEPOHEADER-bsart ... = ur custom doc type .
    *Set the return item = 'X'.
    LS_MEPOITEM-RETPO = 'X'.
        CALL METHOD IM_ITEM->SET_DATA
          EXPORTING
            IM_DATA = LS_MEPOITEM.
    ENDIF.
    Hope this helps you,,,
    Regards,
    Deepak.

  • VA02 changing the Schedule line

    Hi All,
    I have an issue where in one Sales order is created. after saving the order whenever you open in change mode(VA02), and though you do not make any changes, when it prompts for Save you say yes. Then if you see the changes made for the order in Environment-> chnges,  for a perticular line item the schedule line two is deleted and created agian. It will be saved by the user id of the user who opend the order in the change mode.
    when it promts for save, If you say NO, then no changes will be recorded.
    Kindly help me with the issue.
    Please let me know If any OSS notes exists for correction. Its happening only with a perticular order.
    Thanks
    Swathi

    Dear Swathi,
    Not sure if this is a standard issue. Could you please check with your ABAPer if they have done any changes in the user exit specific to orders?
    thank you
    Venkatesh SP

  • MASS CHANGE IN SCHEDULE LINE DATE

    Hi All,
    Will u advise whether it is possible to change schedule line date in MASS
    Example. We are having make to order scenario. Sales order is prepared with 25 different line items with shipment date 10 th Feb. Out of these 25 items 10 items are ready by 20 th Jan. If we want to ship these goods on 20 th Jan. we have to change schedule line date item wise.
    Is there any way that we can make this change in a mass without changing delivery date of the sales order.
    Thanks
    Ravi

    V_V2 calls a program that can be 'customized' since it consist of 2 phases:
    1) selection phase
    2) rescheduling phase
    You can copy program SDV03V02 into a custom one and add your own selection criteria without altering the second part of it.
    I alreay made it and it works fine even when upgrading.
    regards
    Roberto Mazzali
    pls. reward if helpful

  • Purchase Ord delivery date changes SO schedule line date?

    Hi,
    I am purchasing a drop ship item as per sales order. The account assignment in the purchase order is the Sales order. 
    Why in some cases the schedule line date in the sales order changes when I change the delivery date in the purchase order? whereas in other cases it does not.
    Please help me out with this question.
    Sincerely.
    Puja

    Puja,
    The SO schedule line date should not change when you change the purchase order delivery date.
    However, if you change the PO del date, AND a user performs re-ATP against the sales order, OR if you are running backorder processing (rescheduling) of sales docs, then the SD item/schedule date may change to match the changed availability situation caused by the change of the delivery date of the PO.
    Look in the sales order in VA03, then Environment>changes.  Look to see if anyone or anything has 'touched' the SO item that is home to the schedule lines that were affected.
    Regards,
    DB49

  • Change Schedule Lines values for Each Item for a Scheduling Agreement ?

    Hii
        I want to change the Schedule Line Schedule Qty for Each Line item for a
    Scheduling Agreement .
    I cannot use BAPI_PO_CHANGE as this is for PO only and gives error for
    a scheduling agreement.
    I am on 4.6c so i SAP does not have BAPI_AGREEMENT_MAINTAIN .
    Please help me out on using a BAPI or FM to do this.
    Regards
    Gaurav

    Hi,
    isn't the Schedule Line a special case of SALES order  that might be changed with a BAPI_SALESORDER_MAINTAIN.... If ther is no BAPI for this in your system, you might create new contracts with reference to existing ones using BAPI_CONTRACT_CREATEFROMDATA.
    Regards,
    Clemens

  • Scheduling Agreement -Schedule line should not pass the requirement to MRP

    Hi Friends!
    As we all know the scheduling agreements is outline agreement with future schedule lines, with this system will  pass the requirements to MRP for the schedule line which is even after 5 years, so my requirement is  if the schedule line date is above 15 days from the current date then requirement should not pass to MRP. 
    solution which we gave is, SA initially will determine the schedule line category as  CN (which will not transfer the requirement) and  a batch job program will run daily and it will check for each schedule line if any of the schedule is with in the 15 days from the current date then it will change the schedule line category from CN to CP. 
    Now the problem is , by using Batch Job which program I have to call to change the schedule line category?????
    1. we tried BAPI_SALESORDER_CHANGE but when we are changing the CN to CP it is not performing ATP where as if we do manually it is performing.
    2. we tried BDC but here also we facing some strange problem i.e. while recording the ATP screen is not populating where it is coming while doing manual.
    Can someone let me know which one program we should call in Batch job to do this change.
    Regards
    Nath

    Hi nath,
    i also failed in changing shedule line category in userexit and in BAPI.
    in one case, i succeded in doing it with a bdc after MV45AFZZ / userexit_save just bevore the datas are reset but after the commit-work is processed.
    the other possibility is, to change the accepted amount in userexit RV03VFZZ / USEREXIT_AVAILABILITY_OUT.
    3. possibility is, to block the order with a delivery - block , same as the credit-control-block. This block can be set in MV45AFZZ or perhaps in BAPI too.
    hans

  • Scheduling Agreement Schedule Lines firmed after outbound delivery

    Dear All,
    We use scheduling agreement for cross-company process in our client.  After MRP run schedule lines created automatically. For the next step outbound delivery is created via VL10F (or VL10B).
    After outbound delivery creation, on MD04 or ME39, i see the schedule line firmed (*). Because firmig MRP doesn't change those schedule lines. This is a problem for our client.
    Do you know a way for MRP can change the schedule lines even outbound delivery created ? How can i manage this situation ?
    Best regards,

    Hi Anil
    The '*' that you see means that the schedule line has been changed manually and the Firming indicator (EKET-FIXKZ) is set when there is any change to the Schedule line.
    So, when a Delivery is created, the schedule line should be 'Fixed'.
    Otheriwse, MRP can delete or change this schedule line and it would cause an inconsistency in the system. This is the logically intended behaviour.
    Please see the F1 help for the field EKET-FIXKZ:
    "Schedule Line is "Fixed"
    Fixes the schedule line and determines that it cannot now be automatically changed as a result of materials planning and control/MRP activities.
    Procedure
    The indicator is set automatically if:
    .- You make manual changes to a line of a scheduling agreement delivery schedule that was created via the materials planning process
    .- You create a schedule line manually
    Dependencies
    You can specify whether Materials Planning/MRP can change delivery schedule lines within the firm and trade-off zones in the additional data for the scheduling agreement item."
    I hope this helps.
    Anna

  • Delivery before the schedule line date in scheduling agreement.

    Hi All,
    I have a situation where in I am using JIT delivery schedule for processing the delivery requirement from customer. In this, lets say, I have a schedule as 08/05/2009 for material A to deliver 1000 qty and the material is made available to me after production as of 07/05/2009 and I want to despatch the material on 7th only and not on 8th. The system does not allow me to do this.It allows me to make a delivery only on 08/05/2009.
    Is there any alternative to this and is this SAP standard behaviour.

    I think you can change the schedule line date in scheduling agreement itself and do the delivery.
    regards,
    Sudhir

  • BAPI to read and change schedule lines in APO

    Hello experts,
    We want to firm schedule lines inside the firm zone of the APO procurement scheduling agreements with a daily job. For this we are trying to use BAPI BAPI_POSRVAPS_GETLIST3 and BAPI_POSRVAPS_SAVEMULTI3. The getlist one does not return schedule lines, it returns purchase orders and purchase requisitions. Are these the right bapis to read and change schedule lines in APO? or is there anyother one we can use?
    Thanks and regards,
    Ergul

    Hi,
             You can use the below code to read the schedule lines.
    Checking a session exists
        CALL FUNCTION '/SAPAPO/RRP_SIMSESSION_GET'
          IMPORTING
            ev_simsession = gv_sims
            es_gen_params = gv_params.
    If not create a new session and read it
        IF gv_sims IS INITIAL.
          CALL FUNCTION '/SAPAPO/RRP_SIMSESSION_CREATE'
            IMPORTING
              ev_simsession = gv_sims.
          CALL FUNCTION '/SAPAPO/RRP_SIMSESSION_GET'
            IMPORTING
              ev_simsession = gv_sims
              es_gen_params = gv_params.
          g_cre_chk = 'X'.
        ENDIF.
    CALL FUNCTION '/SAPAPO/CMDS_TPSRC_GET'
        EXPORTING
          iv_ebeln                       = p_l_t_acknh_ebeln
          iv_ebelp                       = p_l_t_acknh_ebelp
        TABLES
          et_tpsrc_all                   = lt_tpsrc
        EXCEPTIONS
          matid_not_found                = 1
          locfrom_not_found              = 2
          locto_not_found                = 3
          scheduling_agreement_not_found = 4
          error_selecting_schedagreement = 5
          OTHERS                         = 6.
      IF sy-subrc = 0.
    reading the scheduling agreement records
        READ TABLE lt_tpsrc INTO ls_tpsrc INDEX 1.
        CALL FUNCTION '/SAPAPO/PWB_BZQID_GET_ORDER'
          EXPORTING
            iv_simid               = '000'
            iv_bzqid               = ls_tpsrc-bzqid
          IMPORTING
            ev_ordid               = lv_iordid
          EXCEPTIONS
            lc_connect_failed      = 1
            no_elements            = 2
            unit_conversion_failed = 3
            OTHERS                 = 4.
        IF sy-subrc = 0.
          CALL FUNCTION '/SAPAPO/PWB_GET_RELATED_ORDERS'
            EXPORTING
              iv_ordid             = lv_iordid
              iv_order_type     = '16'
              iv_simid            = '000'
            IMPORTING
              ev_ordid          = lv_eordid
            EXCEPTIONS
              order_not_found   = 1
              lc_connect_failed = 2
              no_elements       = 3
              OTHERS            = 4.
          IF sy-subrc = 0.
            APPEND lv_eordid TO lt_ordid.
            CALL FUNCTION '/SAPAPO/DM_PO_READ'
              EXPORTING
                iv_simsession     = gv_sims
                is_gen_params     = gv_params
                it_ordid          = lt_ordid
              IMPORTING
                et_schedule       = p_lt_sched
              EXCEPTIONS
                lc_connect_failed = 1
                lc_com_error      = 2
                lc_appl_error     = 3
                OTHERS            = 4.
          ENDIF.
        ENDIF.
      ENDIF.
    Use '/SAPAPO/CMDS_SNP_MM_ORD_MODIFY' function module to change the schedule lines (Pass '16' to iv_order_type parameter).
    Let me know if u have any issues.
    Regards,
    Siva.

  • ME38 Schedule Line Mass Change

    Hi Experts,
    I have a requirement to change Schedule lines(Line wise) quantity from excel sheet by delivery date.
    I tried  BAPI_SCHEDULE_MAINTAIN  but I am getting below error due to my system setup.
    Scheduling agreements with time-independent conditions are not supported So i couldn't change any schedule line.
    Because  time-independent conditions  is deactivated in my SAP system.
    Is there any other solution like BDC or LSMW ?.
    If through BDC is possible how can i go particular item wise?.
    Experts please give me solution <removed by moderator>.
    If you want further details I can ready to give.
    Edited by: Thomas Zloch on Feb 24, 2012

    I tried with userexit_move_field_vbep but no luck.
    Bala: i can use the save_document user exit but if i go and see the schedule line it will show the old date and time. I think that is usefull when saving the application.
    Sorry, i forgot to mention one more thing.. i.e., user can change the date and time using 'fast change of' option in menu bar.
    Please let me know which field do i need to change to change the date. I tried VBEP-EDATU and VBEP-EZEIT.
    Thanks in advance
    Sam

  • MD04 firm schedule line - ME38 schedule line manualy changed

    Hello Gurus,
    many users change manually quantity in schedule lines but then the schedule is locked and becomes firm in MD04 ( * ) so that MRP does not take this quantity into account.
    How to change this behaviour as I want the MRP to take this modification into account ?
    Thanks a lot.

    Hi,
    When your users change a schedule line they are automatically firmed as the system can only assume that they know more about the supply position than it does.
    MRP does take the quantity into account, however, it is not allowed to change the date nor the quantity, so any increase or decrease in demand is reflected in the first unfirmed schedule line.
    This behaviour is not configurable.
    If the firmed schedule line is not correct because the user has made a change in error then you need to set the quantity to zero so that the schedule line is deleted. MRP will then create a new schedule line in line with the planning parameters and current stocks / demand.
    Hope that has answered your question
    Alex Dixon

Maybe you are looking for

  • Problem with my Adobe Premiere Elements on Imac

    I have the brand new IMac 27inch 2013  i5. When I'm working on Adobe Premiere ELements 9, the program is opening a message which is telling me that there's an error. Then the program closes. It ALWAYS happens when I'm trying to put a menu in my video

  • Itunes will not open on new computer

    I am getting an error message "iTunes has encountered a problem and needs to close" whenever I try to open iTunes or when I connect my iPod to my new computer. Help!

  • Purchase Order - Pricing Error related to Freight

    Hello All, In Purchase Order there is a condition type related to Frieght . Though it is defined manual the system is picking up automatically for few materials. Do note that no condition records exists for the same. But by default whenever i create

  • Clearing documents (net=0) in Cashflow Analysis

    Hi experts, should i ignore the clearing documents (net=0) in Cashflow Analysis. For example follwing movements are available for cash flow relevante Bank account  offene posten 50 offene posten -30   clearing doc 20   clearing doc -20 Which one is c

  • Image in JAR not found/used

    I have a gif image that is called by a JLabel: JPanel cp = new JPanel(new GridLayout(0,2)); cp.add(new JLabel(new ImageIcon("test.gif")));I produced a jar by using this command: "jar cvfm MyApp.jar manifest.txt *.class test.gif" The jar is correctly