Need a Exit to default price data for ME21/ME21N

Hi Experts,
I need a exit for tcodes ME21/ME21N to default item price data when they create a Purchase order and pop-up a error message if they manually change the price and try to save the purchase order.
I tried to find a exit using SMOD but couldn't figure out which one would be suitable.
Please  give your valuable suggestions.
Thanks in advance,
Kishore

Hi Asik,
Thanks for your reply.
I am working in version 4.7 and i am not able to view the badi in SE18 is it because of the version difference...which i am not sure abt.
Can u suggest me any exits if available for my requirement.
Regards,
Kishore

Similar Messages

  • Set Default Price List for a BP

    How can we set a default price list for business partners of type customer?

    RIcky, Whatever you set in the PaymentTerms->list is the default list for that customer.
    If you want default for all customers perhaps to make it easier while you create a new customer, I would just pull up a customer right click and duplicate. Hopefully you  have original customer's price list there.
    Admin->SystemInit->Document Setting has default Base price used for profit calculations.
    It is little dangerous to assign default price list to all customers, as by mistake, they may end up getting discounts they are not supposed to get!

  • Payment terms default baseline date for delivery

    Dear All,
    Our requirement is for some customers we need set the baseline ref to SO date, for some customers we need set the baseline ref to delivery date, for some customers we need set the baseline ref to invoice date, but I can not find from customizing.
    Please help me.
    regards
    Nathan.

    Hi,
    I can only find document day, posting day, entry day, no default.
    can you help me what those mean?
    regards

  • User exit to change Release date for ME54N

    Dear Folks,
    I need and user exit / BADI to update EBAN-FRGDT (Release date) based on the value in EBAN-FRGKX (Release indicator).
    For example : If the PR release indicator changed to "F", I need to change the EBAN-FRGDT (Release date) to sy-datum and then save.  Please help me. 
    Thanks,
    Kishore. P

    Hi Rohini ,
    I have used BTE 1120 (Business Transaction Event) to change the value date for line items (BSEG-VALUT) for F110.
    May be this can help u ..... try once ....
    Regards,
    AKS

  • We are in urgent need of the end of support date for Firefox 3.6. I have been unable to find this information anywhere. Can someone please provide the date, or a link to the location on the Mozilla web site for lifecycle dates?

    We are currently supporting an older application which will no longer be patched for future browser releases. We need the end of support date, so we can plan accordingly. Any assistance is truly appreciated.

    Hi Tony, and thanks for the reply. I was hoping that might be the case.
    Does Mozilla not publish lifecycle dates for Firefox? The reason I am inquiring further, is that our intention is to have upgraded the product we are currently running by late August of next year. I was trying to determine if 3.6 would be supported through August of 2012. I probably should have been more specific with my initial post.

  • Need total consumption quantity year to date for item in inventory

    Hi All,
    I have a requirement as below.
    I need to find the total consumption quantity for a item year to date in inventory i.e i need to find out total issued quantity from year to date for a item.
    so i need following details.
    Consumption 1st year
    Consumption 2nd year
    Consumption 3rd year
    we are following fiscal year JAN-DEC.
    I am looking for a query to find out the above details, please help me out
    Thanks

    Hi Prashant,
    I will try this out. If I remember correctly this did not work especially since we are using the same base condition across the board. I may have to try copying this standard condition and re-assigning it accordingly.
    Thanks for the suggestion
    Anirudh

  • Urgent!How to set the default selected date for an OAMessageDateFieldBean

    Hi,
    There is messagetextinput on the page.the dataType is Date.
    if I do not input anything on this messagetextinput ,when I click on the date icon,the default selected date is today.
    But I want to set the default selected date base on another messagechoice.
    Is that possible?
    binghao.

    Sumit/Binghao,
    When u set deafult date in the OAMessageDateFieldBean, the OAInlineDatePickerBean (which are referring as datepicker popup windows), takes the default value from OAMessageDateFieldBean.
    If you explore OAMessageDateFieldBean in framework, u will find its nothing but a onClick js event is called on the imageicon attached with messagetextinput bean(in case the type is Date) and OAInlineDatePickerBean is opened in a modal js window.
    So, here is code for setting default value both in both in OAMessageDateFieldBean and OAInlineDatePickerBean :
    OAMessageDateFieldBean dateField = (OAMessageDateFieldBean)webBean.findIndexedChildRecursive(<item id>);
    dateField.setValue(pageContext,new Date(100, 06, 04)/* 4th July 2000*/);
    One more important thing, here Date class is java.sql.Date.I hope i am clear.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How do I set default start date for email flags

    In IOS 4 and 5 every time i put a flag on an email it used "today's date" as the default date for the flag when the flag synched with Outlook.  Under IOS6, my email flags show up in Outlook with "no date".  Is this an IOS 6 change or did I somehow change the default to "no date" by mistake on my iphone.  This is importatnt becasue Outlook allows you to arrange you inbox by Flag Start Date.  When you arrange it this way, all the flagged emails move to the top by date.  You can then remove all the non-flagged emails as a group.

    Yes. On my new iPhone 5 the iCal week begins on a Monday not a Sunday and does not give me the option to edit in settings on the phone

  • Need logic to find Year to Date for customer exit variable

    Hi to all,
    I am creating customer exit variable for query .
    query should display data according to current system year from jan till current system date.
    here senario is like that user never enter year and query will automatically will fetch the data according to current year starting from jan to current system date.
    example.
    current year 2010 and today is system date is sep 29 2010, so query will display data from jan 2010 to current data sep 29 2010.
    please can any one provide me logic for that.
    any code .
    regards
    pavneet rana

    Hi,
    You need to create the characteristic customer exit variable of type select-options. Restrict your keyfigure based on this variable.
    In the logic in CMOD,
    write as below
    i_step =2.
    case i_vnam.
    When 'exit variable'.
    temp = sy-datum+0(4).
    concatenate temp '0101' into temp1.
    l_s_range-low= temp1.
    l_s_range-sign = 'I'.
    l_s_range-opt = 'BT'.
    l_s_range-high= sy-datum.
    append APPEND l_s_range TO e_t_range.
    endcase.
    For any further help on customer exit based variable, please refer below article.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/20f119d9-922d-2c10-88af-8c016638bd90?quicklink=index&overridelayout=true
    Edited by: Rahul K Rai on Sep 29, 2010 3:09 PM

  • Default Billing date for cancellation of F2 invoice

    Hello
    I am trying to default the billing date to the system date in the cancellation document, but it is not working. Can someone give me advice with my customize settings? My invoice is F2 and my cancellation is S1 (ECC 6.0)
    In Billing copy control (VTFF), billing ->billing, I go to the settings for F2 -> S1.
    At the header screen, copying requirements and other values are blank. Do I need to maintain any values here?
    At the item screen for my item (TAN), copying reqs is set to 005 (Cancellation Header), Data VBRK/VBRP is set to 011 (Bill date = today).
    If anyone can give me advice on my settings, it would be greatly appreciated
    Regards
    Ken

    Use the include program for invoice <b>RV60AFZC</b>
    in the userexit USEREXIT_NUMBER_RANGE_INV_DATE you have to do the coding.
    <b>For using this userexit make sure that you are not using USEREXIT_NUMBER_RANGE for assigning internal number range to invoices of different plant/company code.</b>
    The following codes will make all invoices created (S1 or F2) take system date by default, you can modify it to make it work only for S1 (Cancellation invoice)
    FORM USEREXIT_NUMBER_RANGE_INV_DATE USING US_RANGE_INTERN.
    Example: Number range from TVFK like in standard
    US_RANGE_INTERN = TVFK-NUMKI.
    *{   INSERT        DEVK906746         
    data : date  type dats.
    date = sy-datum.
    vbrk-fkdat = date.
    modify vbrk.
    *}   INSERT
    ENDFORM.

  • How To Change Default Expiration Date for Portal User in Linux and Windows?

    Hello,
    I have a couple of environments I recently installed:
    1. Oracle Application Server 10 Release 2 (10.1.2) SEOne on Windows
    2. Oracle Application Server 10g Release 2 (10.1.2) Enterprise Edition on Linux
    I heard the portal and orcladmin user passwords will expire in about 60 days. I want to prevent this from happening. How can I set the expiration date to never expire for both these users? Or at least give me some warning?
    I heard that you can do this through the Oracle Directory Manager. However, I am unsure as which server to enter on the field. I've used the following:
    <servername>.hostname.com/389
    <DBname>.hostname.com/389
    They say 389 is the default port. Since I did not really
    Does anyone have any ideas?

    You have the answer in yours hands:
    Search for "60 days" in the forum
    How can I enfore Password Expiry Without Lockout?
    for instance.
    For the servername, it's the name of your server and the port is depending of your platform (have a look to $ORACLE_HOME_INFRA/install/portlist.ini) and
    chech the value for: Oracle Internet Directory port
    Patrick.

  • Need quantitative as well as amount data for an account member

    Requirement of the report is that for an account dimension member, there needs to be quatity, amount as well as a ratio in a single line along with the unit for the quantity (which i will keep in the custom dim).
    Is this possible.. what are the ways i can handle this?
    i was thinking of creating two scenarios.. one for the quantity data and the other for the amount data... will this work? i will calculate the ratio at the report level (smart view)
    please help me with your thoughts.
    Many thanks,
    anji.

    Hi anji,
    One possibility is to turn the structure around, by using a custom member as your report row and use different accounts to input your quantity, value and ratio. Further, the ratio account can be defined as dynamic account and write a dynamic rule to calculate the ratio.
    Regards,
    --Kostas                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Setting default opening date for iCal calendar to be some future date?

    Is it possible to set the default date at which an iCal calendar opens to be some specified future date?
    I want to enter multiple events for a week-long program that begins on November 1, 2008, into a special iCal calendar for that program, as the dates and times for those events become known between now and then. So, each time I click on that calendar's icon, I'd like to have it open at 1 Nov 08, instead of having to step forward to that date each time I re-open the calendar.
    Any way to do this?

    christ. no answer to this?
    i just did this on a trip to boston and i /thought/ i had it fixed when i went to paris recently.
    perhaps getting a new motherboard on my MBP means i have to set my settings again to get this to work? does anyone know if this only works by setting a /combination/ of settings on iCloud and in iCal preferences...?

  • Default Price Lists for BPs

    Forum,
    Is it possible to set a price list as default for new customers?
    Regards,
    Juan

    Hi
    Have u checked in BP Master in Payment Terms --> Price Lilst.
    Here u can select the  price list is and the same Price will reflect in Marketing Document for that BP.
    Giridharan V

  • Need a report column to hold data for one row only

    Hey Guys,
    I have a report which has a column that links to another page in my APEX application.
    There is a requirement where only one of the rows in this report needs to have a link so I need the column to show the page link for one row and one row only.
    The report will have about 5 rows at a time so is there a way to just make this link appear for the one row(it will be the top row) in the column attirbute in APEX? or can this be done in the SQL for the report?
    Any help is much appreciated
    Thanks
    -Mark

    Hi
    The only way (I believe) to do this is within the SQL. Then you just wrap the column in a CASE statement and if it meets your criteria then build up the link and if not then display normally.
    Something like this...
    SELECT ename,
           CASE WHEN empno = 7839
           THEN '<a href="f?p='||:APP_ID||':4:'||:APP_SESSION||'::NO::P4_TARGET_ITEM:'||empno||'" >'||empno||'</a>'
           ELSE TO_CHAR(empno)
           END empno
    FROM empCheers
    Ben

Maybe you are looking for