Problem in bdc to change  std price to moving price

hi
I had created BDC for changing std price ' S ' to moving price ' V ' . I had done recording for MM02 Trans.
At the time of creation of material ,MM person selects different views for same type of material .
moving price presents  in Accounting 1 View. In recording this view was at 13th position  .but If I check my BDC for other material while running BDC in foreground it takes MRP1 view which is at 13th position 
because here the no of views are more as compared to the recorded material .Again position of recording is also not matching.
please advice what to do in this case ?
Thanks in Advance.
Regards,
Atul

hiii,
take the PSTAT field from mara for that particular material and make the following changes in ur code.
  PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     '1' 'SAPLMGMM' '0060',
     ' ' 'BDC_CURSOR' 'RMMG1-MATNR',
     ' ' 'BDC_OKCODE' '/00',
     ' ' 'RMMG1-MATNR' new_material,
     ' ' 'RMMG1-MBRSH' ind_sec,
     ' ' 'RMMG1-MTART' mat_type.
PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
       ' ' 'BDC_OKCODE' '=P+'.
SEARCH pstat FOR 'K'. "BASIC DATA
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(01)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
  ENDIF.
    SEARCH pstat FOR 'V'. "SALES ORG DATA
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(04)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(05)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(06)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(07)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(08)' 'X'.
  ENDIF.
  CLEAR flag_pur.
  SEARCH pstat FOR 'E'. "PURCHASING
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(09)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(10)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(11)' 'X'.
*************SHAFI********
    flag_pur = 'X'.
  ENDIF.
    SEARCH pstat FOR 'D'. "MRP
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(12)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(13)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(14)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(15)' 'X'.
  ENDIF.
SEARCH pstat FOR 'P'. "FORECASTING
IF sy-subrc = 0.
   PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
    ' ' 'MSICHTAUSW-KZSEL(16)' 'X'.
ENDIF.
  SEARCH pstat FOR 'A'. "WORK SCHEDULING
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(17)' 'X'.
  ENDIF.
  PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         '1' 'SAPLMGMM' '0070',
       ' ' 'BDC_OKCODE' '=ENTR'.
  SEARCH pstat FOR 'Z'. "GENERAL PLANT DATA/STORAGE LOCATION
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(01)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
  ENDIF.
****************shafi**********
  IF NOT v_drg IS INITIAL.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
    ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
  ENDIF.
  SEARCH pstat FOR 'S'. "WAREHOUSE MGMT
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(03)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(04)' 'X'.
  ENDIF.
  SEARCH pstat FOR 'Q'. "QUALITY MGMT
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(05)' 'X'.
  ENDIF.
  SEARCH pstat FOR 'B'. "ACCOUNTING
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(06)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(07)' 'X'.
  ENDIF.
  SEARCH pstat FOR 'G'. "COSTING
  IF sy-subrc = 0.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
     ' ' 'MSICHTAUSW-KZSEL(08)' 'X',
     ' ' 'MSICHTAUSW-KZSEL(09)' 'X'.
  ENDIF.
make sure that u have the ok code 'P+' for view which are displayed after u press page down event.
Hope it helps u..
Regards,
Anil N.

Similar Messages

  • Urgent:Inventory Modelling with Moving price

    I have to create an Inventory report storage locationwise material stock along with standard price and moving average price.
    We have a z cube zic_c03.
    Moving price and standard price is stored an Z ODS on fiscal/period wise.
    I need to have the following fields in the report
    charactersitics
    Plant
    Material
    Storage location
    Price control(from Z ods)
    keyfigures:
    Valuated stock qty(from zic_c03)
    Valuated stock value(from zic_c03)
    Standard price(from ods)-Using routine
    Moving Price(from ods)-Using Routine
    I have created another cube(included all the fields from zic_c03 and added the three fields from ODS).
    For the fields included from ODS, I have written an lookup routine in the new cube (zic_c04) update rule.
    For ex.Stand price routine as follows:
    PROGRAM UPDATE_ROUTINE.
    TABLES: ...
    DATA : tstd like /BIC/AZMM_O0200-pRICE_std.
    DATA : tavg like /BIC/AZMM_O0200-pRICE_avg.
    DATA : tpc  like /BIC/AZMM_O0200-PRICE_CTRL.
    fill the internal table "MONITOR", to make monitor entries
    select single PRICE_STD
      into tstd
      from /BIC/AZMOV_O0100
    where material = COMM_STRUCTURE-material
       and plant = COMM_STRUCTURE-plant
       and FISCPER = COMM_STRUCTURE-FISCPER.
      RESULT = tstd.
      RETURNCODE = 0.
      ABORT = 0.
    I have the following issues:.
    1)After adding the price control Indicator(assigned to all keyfigures in update rule) Valuated stock qty and value showing in negative.
    2)Intially I didn't compress the new cube(zic_c04).After seeing negative values I compressed(no marker update enabled) it and checked.But still showing negative.
    2)If I assign price control Indicator to only standard price and moving price Iam not getting any results for valuated qty and stock(price control Indicator = 'not assigned')
    Pls help me to do the right modelling for the above requirement.
    Thanks in advance.
    Regards
    Soujanya

    Hi,
    I have different Modeling scenario to get MAP in BIW.
    Take a Look on this thread:
    Re: 2lis_03_um and MBEW- STPRS
    Re: How to get Moving Average Prince and Standard Price in BW (inventory cube).
    With rgds,
    Anil Kumar Sharma .P

  • Problem in BDC for Material master Change

    Hi,
      I have made a BDC to change the material master, I have done the recording with SHDB   I want to do changes in Sales data and MRP data, when I do the recording I have selected views and it was 4  , 11 AND 12 VIEW IN select vie option    but in some material  Classifcation view is maitain and it is coming at 2nd position and my selected views are shiftin by one position  due to this BDC is giving error Screen contain no filed  -
    I sthere any way that I acn directly select the Three views as Sales data , MRP1 and MRP2,   because when we do the recording it is not showing the name  it is showing as
    perform bdc_dynpro      using 'SAPLMGMM' '0070'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSICHTAUSW-DYTXT(12)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=DEF_SAVE'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(04)'
                                  'X'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(11)'
                                  'X'.
    perform bdc_field       using 'MSICHTAUSW-KZSEL(12)'
                                  'X'.
    regards,
    zafar

    Hi,
    Myproblem is solve , in the table MARA i found the filed VPSTA : Maitenance status,   Having the vakue may  KVEDLBZX  those value is diffrent for different  material   this value indicates
      User department                       Maintenance status
    Work scheduling                                      A
    Accounting                                               B
    Classification                                            C
    MRP                                                           D
    Purchasing                                                E
    Production resources/tools                       F
    Costing                                                      G
    Basic data                                                  K
    Storage                                                       L
    Forecasting                                                 P
    Quality management                                    Q
    Warehouse management                             S
    Sales                                                           V
    Plant stocks                                                 X
    Storage location stocks                               Z,
    after reading what fields are maitain according to that i have selected the proper views  and my problem is solve.
    regards,
       zafar

  • Table Control BDC to CHANGE the contents problem

    Hi,
    I am having a problem in BDC. The screen is having a table control and I want to change the contents depending on certain conditions.
    This BDC is not to upload the data but to change already existing data.
    How can I dynamically know the contents of the screen or contents or the row so that I can select the correct row to be changed?

    Hi,
    No its not like that.
    Suppose I want to update/change sheduling agreements <b>not upload</b>
    I will be calling the transaction which will list the scheduling lines in a table control. The order of the lines in table control will be as per logic of SAP's Application program.
    Now when I read the file and how will I dynamically know the exact line which should get selected.
    Say my internal table is having the data to be changed but I can not determine the exact ordering of the records as per table control.
    Hence I am facing the problem to know the exact ordering of table control
    Let me give another example. Using ME12 transaction I am supposed to delete certain rows from info records say having condition '15EC'.
    Now when I call a transction how will I know that for a particular vendor which line will contain this condition value so that can select the line and press delete
    Regards,
    Nitin

  • Std price to Moving Avg Price & VICE VERSA

    Dear,
    Im MM01 - Trnx I maintained Moving Avg price ,  i want to convert to Std price  in the given scenorios
    1) Newly created MMR - P.O Created - Mtl not inwarded so far
    2) Mtl already transactions done , so many times.
    Also explain if its Std price to Moving avg what steps need to be done.
    Regards,
    Suresh.P

    Hi
    Under certain conditions, you can change the type of price control:
    From standard price to moving average price :-
    You can make this change at any time. The moving average price (which until now has been updated for informational purposes only) replaces the standard price and is used for valuation from now on.
    From moving average price to standard price:-
    You cannot make this change in the following two cases:
    1. If the material master record is set up as a valuation header record for a material subject to split valuation .
    2. If the standard price comes from costing and is not equal to the moving average price
    If the change is possible, the moving average price becomes the standard price, which is then used for valuation.
    You change the type of price control by overwriting the price control indicator in the material master record with the new indicator.
    Changing the type of price control for a material does not change the value of the material stock, since in both cases the current price becomes the new price.
    I hope it will solve your problem. Please revert back.
    Regards
    Raj.......

  • Problem with BDC on VA02

    Hi All,
    I am facing a problem with bdc on va02. After hitting enter on the first screen it pops an info message "consider subsequent douments". It doesn't get recorded in recorded. Hence I am not able to run the transaction with no screen mode. Please help me to suppress the info message
    Navin

    Hi Navin,
    These kind of messages and pop ups are precisely the reason why use of BDC for updating transactions is NOT advisable.
    If you were to bypass such messages, you would have to put a check to see why the message appears (in this case probably because the sales document flow for the sales order in table VBFA has some documents) and then write a logic to either handle the message or not.
    Instead i would recommend you use the BAPI functions provided by SAP to change the sales order.
    Have a look the BAPI for sales order change attached to the business object BUS2012. For this goto transaction SWO1 and enter the BUS2012 business object. Then goto methods and look for the "change" method. Double click on the method and look at the BAPI used to implement the method. Go ahead and use this method in your program as against a BDC.
    I am sure it will be a much better option.
    Otherwise if you still want to proceed with a BDC, please debug at the point where the message/pop up appears to ascertain reason for the same and then incorporate the same check in your program to handle the pop up.
    Regards,
    Aditya

  • Syntax problem with BDC perform

    Dear Friends,
    small problem in BDC Perform syntax but I am not getting how to do this..
    I have writen the code like this in my BDC byt its throughing the error...Here I want to do the validation on each and every field. I mean If that field values are empty i don't want to change the SAP field value.
    my code is like this.
        PERFORM dynpro USING:
        'X' 'SAPLMGMM' '0080'.
        IF NOT p_int_matl-werks IS INITIAL.
        ' ' 'RMMG1-WERKS' p_int_matl-werks.
        ENDIF.
        IF NOT p_int_matl-werks IS INITIAL.
        ' ' 'RMMG1-LGORT' p_int_matl-lgort.
          ENDIF.
        ' ' 'BDC_OKCODE' '/00'.
    pls give me exact code how to do this...
    Thanks
    Sridhar

    Hi sridher,
    1. this kind of syntax ie. IF will give error.
    2. If ur requirement is : blank value should not be put in bdc,
    3. then one way is to change / write the logic
        inside the form itself.
    4. ie. inside the routine/form DYNPRO.
    5. So, it will be then general for all performs.
    regards,
    amit m.

  • Problem in BDC for CA02

    hello all,
             i am doing BDC for change routing (ca02) transaction.
    in that my need is to assign PRT allocation for operations.
    i have written a program for it but if suppose for a particlular operation i want to assign PRT and if there are no PRT assigned for that particular operation before that recording fails.and if already there is atleast one PRT assigned to that operation it runs fine. so i want to remove this error.for that may be i shd first record tha no of PRTS on screen and save that in particular counter and if suppose its greater than 0 then it will run the code and if not it will escape.
                    I know some of u will not understand the problem..in that case i have all screen shots and program ready for it ....plz send u r mail address to me and i will send u my problem with  all details on u r mail id.waiting for quick reply.
    Edited by: abhijeet shastri on Feb 5, 2008 9:01 AM

    hi,
    Here you have to take 2 perform statements, one is for PRT and another one is for without PRT
    After populating the input internal table, need check whether the particuler operation is having PRT values or not.
    if PRT values are available then go for PRT screen (Perform statement for PRT values).
    if not PRT values are available then go for not PRT screen.
    If the PRT screen is depedable on process operation values.
    then you have to make prevalidation . in prevalidation the appropriate operation containing any values for the same then call perform statement for the same. else skip that session through coding.
    Ask to your functional consultant regarding tables (In which table you will PRT screen values based on process operation fields) for PRT pre validation.
    I hope this message will clear your doubt
    Regards,
    Sreenivasa Babu

  • PROBLEM IN BDC F-04 --NO PAGE DOWN

    HI
    Experts,
    Getting problem in bdc for f-04 , The data is split on basis of
    business area (gsber) , and for one business area there are more
    then 2000 document number, till the screen of doc.no the data is
    coming into fields but i have to put all the doc number for that
    b.area. And only i can enter 16 doc.no as there is no page down i
    have to enter so that it takes another 16 doc.no .
    but i tried it by at new command and then i tried it by on chage of
    but it picks only first doc.no its not piclking all doc.no.
    LOOP AT i_final.
        MOVE i_final TO wa_itab.
        ON CHANGE OF wa_itab-gsber  .
          CLEAR w_count.
          PERFORM bdc_dynpro      USING 'SAPMF05A' '0122'.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                        'RF05A-NEWKO'.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '/00'.
          PERFORM bdc_field       USING 'BKPF-BLDAT'
                                         wa_itab-bldat .                       "'27.07.2006'.
          PERFORM bdc_field       USING 'BKPF-BLART'
                                         wa_itab-blart.                        "'SA'.
          PERFORM bdc_field       USING 'BKPF-BUKRS'
                                         wa_itab-bukrs.                         "'NPIL'.
          PERFORM bdc_field       USING 'BKPF-BUDAT'
                                         wa_itab-budat.                         "'27.07.2006'.
          PERFORM bdc_field       USING 'BKPF-WAERS'
                                         wa_itab-waers.                          "'INR'.
          PERFORM bdc_field       USING 'BKPF-XBLNR'
                                         wa_itab-xblnr.                         "'INR'.
          PERFORM bdc_field       USING 'BKPF-BKTXT'
                                        wa_itab-bktxt.                          "'INR'.
          PERFORM bdc_field       USING 'RF05A-XPOS1(04)'
                                         wa_itab-xpos1.
          PERFORM bdc_field       USING 'RF05A-NEWBS'
                                         wa_itab-newbs.         "'50'.
          PERFORM bdc_field       USING 'RF05A-NEWKO'
                                        wa_itab-newko.          "'9991010'.
          PERFORM bdc_dynpro      USING 'SAPMF05A' '0300'.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                        'BSEG-WRBTR'.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '=PA'.
          PERFORM bdc_field       USING 'BSEG-WRBTR'
                                        wa_itab-wrbtr.                            "'826532.58'.
          PERFORM bdc_dynpro      USING 'SAPLKACB' '0002'.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                        'COBL-FIPOS'.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '=ENTE'.
          PERFORM bdc_field       USING 'COBL-GSBER'
                                         wa_itab-gsber.         "'1101'.
          PERFORM bdc_field       USING 'COBL-PRCTR'
                                         wa_itab-prctr.         "'2000'.
          PERFORM bdc_dynpro      USING 'SAPMF05A' '0710'.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                        'RF05A-XPOS1(03)'.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '=PA'.
          PERFORM bdc_field       USING 'RF05A-AGKON'
                                         wa_itab-agkon.         "'2810200'.
          PERFORM bdc_field       USING 'RF05A-XPOS1(03)'
                                         'X'.
        ENDON.
        PERFORM bdc_dynpro      USING 'SAPMF05A' '0731'.
        PERFORM bdc_field       USING 'BDC_CURSOR'
                                      'RF05A-SEL01(06)'.
        PERFORM bdc_field       USING 'BDC_OKCODE'
                                      '=PA'.
        w_count = w_count + 1.
        CONCATENATE 'RF05A-SEL01(' w_count ')' INTO w_bdc.
        PERFORM bdc_field       USING   w_bdc
                                        wa_itab-sel01.
        IF w_count >= 16.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '/00'.
          w_count = 0.
        ENDIF.
       ENDON.
       AT END OF gsber.
    *IF W_FLAG = 'X'.
          PERFORM bdc_dynpro      USING 'SAPDF05X' '3100'.
          PERFORM bdc_field       USING 'BDC_OKCODE'
                                        '=BU'.
          PERFORM bdc_field       USING 'BDC_CURSOR'
                                        'RF05A-ABPOS'.
          PERFORM bdc_field       USING 'RF05A-ABPOS'
                                        '1'.
          PERFORM bdc_transaction USING 'F-04'.
       ENDAT. "At end of
    *ENDIF.
      ENDLOOP.
      PERFORM close_group.

    Iam doing a bdc for F-04 (post with clearing header date)
    i got a file in which the data is splited on business area wise,
    and when i enter the details on first screen
    with post key 40 and enter after entering the details here like
    busines area profit cenrter i have to click
    process open item .
    here i have to select the doc.no and enter acct no and again
    have to process the open item .. where exactly my problem is
    when i process it i will get ascreen in which
    the doc.no are
    from to
    and i can enter only 16 doc no here but where as there are more
    then 50 doc number for one businees area in file ..there is
    HOPE U GOT MY POINT NOW .
    REGARDS

  • Can we change v to s ( standard price)

    Hi,
    Can we change v price to S (std. price), what precautions and we will be the effect?
                     Samir

    hi
    If you want to change the Price control from standard price to moving average price
    You can make this change at any time. The moving average price (which until now has been updated for informational purposes only) replaces the standard price and is used for valuation from now on.
    If You wanna change the price control from moving average price to standard price
    You cannot make this change in the following two cases:
      If the material master record is set up as a valuation header record for a material
    subject to split valuation .
      If the standard price comes from costing and is not equal to the moving average
    price
    If the change is possible, the moving average price becomes the standard price, which is then used for valuation.You change the type of price control by overwriting the price control indicator in the material master record with the new indicator.Changing the type of price control for a material does not change the value of the material stock,
    since in both cases the current price becomes the new price.

  • Std price to Moving avg - Vice versa

    Dear,
    Can we change the price from S to V  or Vice versa - ( The scenorio is Mtl already avl at stores, Production shop , some nos yet to be supplied from Vendor)-
    HOW to do ,plz explain.
    Regards,
    Suresh.P

    hi
    Under certain conditions, you can change the type of price control:
    From standard price to moving average price :-
    You can make this change at any time. The moving average price (which until now has been updated for informational purposes only) replaces the standard price and is used for valuation from now on.
    From moving average price to standard price:-
    You cannot make this change in the following two cases:
    1. If the material master record is set up as a valuation header record for a material subject to split valuation .
    2. If the standard price comes from costing and is not equal to the moving average price
    If the change is possible, the moving average price becomes the standard price, which is then used for valuation.
    You change the type of price control by overwriting the price control indicator in the material master record with the new indicator.
    Changing the type of price control for a material does not change the value of the material stock, since in both cases the current price becomes the new price.
    I hope it will solve your problem. Please revert back.
    Regards
    Jay

  • Change price control indicator from standard price to moving avg price.

    Hi All,
    There is a material which has a negative stock for the previous period and the previous period is already closed.
    When i want to change the price control indicator from S to V for that material in the current period, it shows an error that "negative stock is there, unable to change price indicator".
    Kindly help me to solve this issue.
    Thanks,
    AK

    the price control indicator can be changed  from standard price to moving avg price at any time .......with some restrictions.
    And one of these restriction is the one you see.
    You must not have negative stock.
    Hence you have to make the negative stock zero
    Since your negative stock is in the previous period, you either have to allow posting into previous periods (trx MMRV , of course Finance has to allow this as well)  first. Then you can post e.g. a 202 movement with previous period date  which has a quantity that equals your negative quantity. then you change your price control, then you do a 201 movement (again with previous period date), finally you can restrict posting into previous periods again in MMRV.
    or you just wait a few days, then with the month end closure your curent period becomes previous period and hopefully you will not have negative stocks again. then you can change the price control without any problem (I usually take care that moving average and standard price are equal befor I change the price control)

  • Problems on BDC

    hello expert,
          I had a problem on BDC . it is that after recording , I want to upload my pc file to the server ,then change the material description . (I record TRX MM02).
    after I upload the local file to the server , when I execute the BDC session , it poped up a window shows 'select at least one view',
    I just wandered how to skip this popup window , I just only want to see the view of BASIC DATA1 .
    Kind Regards
    Nick

    Hi,
    You need to do the recording again. It seems you recording file is not complete.
    While recording perform the steps for update in the way you want you system
    do to it for you.
    Also check whether you are calling MM02 or MM01 while calling the BDC.
    Regards,
    Prakash Pandey

  • How to forbid any further changes for PO (QTY and price ) after it has been

    Hi,
    How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Hi,
    Price anyway cannot be changed once GR is posted on the PO item, it can be changed only by cancelling the GR, the same applies to IR too.
    But quantity can be changed at any time.
    So if you are looking at blocking qty too, then a customized message through save exit is the option, I am not aware of any standard SAP messages that can be configured to achieve this..
    Ramesh

  • How to forbid any further changes for PO (QTY and price )?

    Hi,
       How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Better to post this in logistic forum.
    THere will be some config option to do so but normal FI perosn would need to dig deep, a MM perosn should answer quickly.
    Reg
    Hein

Maybe you are looking for

  • Problem in Data Source Creation

    Hi, I am trying to create a Data Source from trans. RSO2 from -extraction from DB view - view/table -(my table name). But when i am trying to save this, it is giving the error "Invalid Extract structure template (my table name)". My table is valid an

  • Why can't I use the function of menu item 'issue delivery output'?

    why can't I use the function of menu item 'issue delivery output' in main screen of delivery note? And at the same time I can't use the button of printing in main screen of delivery note. the main screen of delivery note I mean above is in screen of

  • Need to create a user policy form

    Can anyone help? I need to create a policy form in Dreamweaver CS4 that a user needs to accept, or not, before proceeding further to another page in my site? After they accept the form the functionality needs to take the individual to another page wh

  • 120Hz monitor usage

    NVidia GeForce GT 330M on the Core i7 MacBook Pro 15" I have the Asus VG236H 120Hz 3D Vision LCD Monitor. I also have the DVI Dual-Link adapter from Apple that they assured me at the store would allow me to run the MacBook Pro at 120hz on the monitor

  • Original Bios for 660 06SB and 060B

    Hi, I've bought 2 660 in the same shop, the same day and i got 1 with samsung ram (602-V287-06SB1301098348) and 1 with hynix ram (602-V287-060B1301094976) After blue screen when activation of the SLI, i've done a clean install of W7.  Now, i've red b