Want some Userexit or Badi for me23n for updating dates .

Hi ,
i want to update the validity start and validity end before displaying in the aditional info TAB of the ME23N.  
i need to pass the pricing date(PRSDT) from VFKP table to these fields...
Can anyone help me regarding this .
Regards,
Shilpa.

Hi,
You can achieve this using enhancement MM06E005 i am not sure if you have these fields on the header or the item level, i assume they are on the header level so you can use FM EXIT_SAPMM06E_006.
Regards,
Himanshu

Similar Messages

  • Creating a external content type for Read and Update data from two tables in sqlserver using sharepoint designer

    Hi
    how to create a external content type for  Read and Update data from two tables in  sqlserver using sharepoint designer 2010
    i created a bcs service using centraladministration site
    i have two tables in sqlserver
    1)Employee
    -empno
    -firstname
    -lastname
    2)EmpDepartment
    -empno
    -deptno
    -location
    i want to just create a list to display employee details from two tables
    empid firstname deptno location
    and same time update  in two tables
    adil

    When I try to create an external content type based on a view (AdventureWorks2012.vSalesPerson) - I can display the data in an external list.  When I attempt to edit it, I get an error:
    External List fails when attached to a SQL view        
    Sorry, something went wrong
    Failed to update a list item for this external list based on the Entity (External Content Type) 'SalesForce' in EntityNamespace 'http://xxxxxxxx'. Details: The query against the database caused an error.
    I can edit the view in SQL Manager, so it seems strange that it fails.
    Any advice would be greatly GREATLY appreciated. 
    Thanks,
    Randy

  • Validity Table not updating for 0IC_C03 while updating data

    Hi,
    1.Validity table not updating for 0IC_C03 while updating data in my BW 7.4 With HANA data base?
    Key fields : 0Plant
                       0Calday
    if you run this programe after loading data - RSDG_CUBE_VALT_MODIFY it is updating.
    2. I am not getting no marker update option in non-cumulative Info cube 0ic_c03 manage tab or in DTP tabs check as per 7.4 modifications?
    and  2LIS_03_BX in DTP I am getting below this option only
    Can you please give me solution for this issues.
    Regards
    Umashankar

    Hi Uma,
    Please go through the below link which might be helpful.
    Not able to Edit Validity Table : RSDV
    Marker Update Option is available under Collapse tab of Info cube.
    Thanks,
    Karan

  • Urgent please: Master-Deatils OAF Page for enter and Update data

    Hi all,
    i need your help to build master-details oaf page for Enter / Update data
    for example: We have Locations , Department , Employees tables
    all these tables on one oaf page (OAAdvancedTable)
    when user enter New Location and go to Enter it's Departments and for each department, he can Enter they employees.
    and Regarding to Update date:
    - when user select Location , Department table fetch all departments and user can update
    waiting your support for urgent please
    Regards
    Hany

    i do these Steps :
    1- Create LocationEO,DepartmentEO and EmployeesEO
    2- Create Association between LocationEO and DepartmentEO with one-to-Many relation (LocToDeptAO)
    3- Create Association between DepartmentEO and EmployeesEO with one-to-Many relation (DeptToEmpAO)
    4- Create View Object (LocationVO)
    5- Create DepartmentVO (and add LocationEO due to LocToDeptAO)
    6- Create EmployeesVO (and add DepartmentEO due to DeptToEmpAO)
    7- Creare View Link between LocationVO and DepartmentVO (Based On LocToDeptAO) --> LocToDeptVL
    8- Creare View Link between DepartmentVO and EmployeesVO (Based On DeptToEmpAO)---> DeptToEmpVL
    9- Add LocaionVO to Application Module, then add DepartmentVO Via (LocToDeptVL)
    10-Add EmployeesVO to Application Module Via (DeptToEmpVL)
    and Then Run Test AM, all data fetch sucessfully, and i can insert data with proper relations
    NOw, i want to implement this Business Logic in single oaf Page using 3 OAAdvancedTable (Master - Details -Details )
    Regards

  • What is required userexit or badi or enhacement for material number ??

    HI Sir,
    Issue,
    In MM01  TCODE
    when we are entering the material number   it should be the  12digit  otherwise it has to give the error message.
    so plz help what is the exact exit and the code .
    thanks and regards
    syed

    Hi,
        Check these BADI's
    WRF_DISCONT_PARAMS_I                    BAdI: Parameters in Fashion Discontinuation
    WRF_DISCONT_FACT_E                      BAdI: Follow-Up Actions in Discontinuation
    WRF_DISCONT_CHECKS_I                    BAdI: Scope of Check in Material Reorganization
    MG_MASS_NEWSEG                          User-Specific Fields & Segments in Mass Maintenance
    MATGRP_SKU_UPD                          BAdI for Article Hierarchy Connection
    CDT_CHECK_MATERIAL                      Checks for Existence of a Material in a CDT
    BADI_MM_MATNR                           Modification-Free Archiving Enhancement of MM_MATNR
    BADI_MATNR_CHECK_PVS                    Check Material for Use in iPPE
    BADI_MATERIAL_REF                       Addition of customer-defined default data for material
    BADI_MATERIAL_OD                        Integration of New Objects in Material or Article Master
    BADI_MATERIAL_CHECK                     Enhanced Checks for Material Master Tables
    BADI_GTIN_VARIANT                       User Exit for Customer-Specific GTIN Variant Check
    BADI_EAN_SYSTEMATIC                     BAdI for Internal Control of EAN Logic
    Regards,
    Srini.

  • Script to query OU for last Windows update date and time

    Hi All, I need help in writing a script which can query an OU in active directory and then return most recent date of windows updates installation. It will also be helpful if the script can sort the names and then send output to a file (any format will
    do). I know basic of querying a local computer but not remote query, I am terrible at scripting side of powershell. Thanks people.

    I am referring to the script below, how can I get the result to output in an XLS or CSV format, I tried couple of combinations but couldn't get it to work.# This script shows the last time that a successfull Windows Update was installed.clsadd-PSSnapin quest.activeroles.admanagement 
    $OnlineServers = @() 
    Get-QADComputer -SearchRoot 'domain.com/ServerOU'-OSName "Windows*Server*"| %{ 
      $PingResult = Get-WmiObject-Query "SELECT * FROM win32_PingStatus WHERE address='$($_.Name)'"If ($PingResult.StatusCode -eq 0)  
         # Add the current name to the array$OnlineServers+= "$($_.Name)" 
    foreach ($Serverin$OnlineServers ) 
            $key = “SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\Results\Install” 
            $keytype = [Microsoft.Win32.RegistryHive]::LocalMachine 
            $RemoteBase = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey($keytype,$Server) 
            $regKey = $RemoteBase.OpenSubKey($key) 
            $KeyValue = $regkey.GetValue(”LastSuccessTime”) 
            $System = (Get-Date-Format "yyyy-MM-dd hh:mm:ss")  
            if    ($KeyValue-lt $System) 
                Write-Host " " 
                Write-Host $Server"Last time updates were installed was: "$KeyValue
        }

  • BADI/User Exit for Order processing

    Hi Experts,
    I have a requirement that whenever someone modifies the order belonging to a specific order category then some error/ warning is issued. Can you please suggest some User Exit/BADI in APO for the same.

    Hi Tiago,
    My requirement is to block the processing of Released process order from both Product view and Detailed Scheduling Board.
    If I am getting you correctly then in the mentioned BAdI and Method --I should call FM --/SAPAPO/OM_PEG_CAT_GET_ORDERS (to fetch orders by order category) to see whether the order category is for released process order or not.
    If its Released process Order --then I should block the change. Is that correct for both Product View and Planning Board?

  • Userexit or BADI in O4C1/O4C2

    Dear SAP Experts,
    I would like to implement some userexit or Badi in order to control what the user inserts in a field of the O&G transaction O4C1/O4C2. Specifically, I need to obligate the user to fill the field OIGC-TU_ID. I could not figure out so far, that there is any way to do it, not by codification nor by configuration. If you have any suggestions, I would appreciate it a lot.
    Thank you very much in advance,
    Regards
    Dominik Ley

    Dominc,
    Please check the user exits mentioned below
    customer-function '140'
    customer-function '120'
    customer-function '110'
    If none works then check
    OIG_DG_DATA_MAINTAIN
    Note : please take help of Technical person or break point whether it suits ur requirement
    Hope this would help .
    Regards
    Ramvelu

  • Finding Userexit or BADI for vl10batch transaction

    Hi All,
    We are using the VL10BATCH transation for creation of delivery note which can create one Delivery document for multiple line items.
    VL10BATCH transaction which inturn creates variants for VL10 transactions based on material, partner, Salesorder details and batch job will be scheduled once the variant is saved.
    I have a requirement to change the VL10BATCH transaction, that it should create 1 Delivery document per 1 line item. Is there any BADI or any userexit available which is called before Delivery document creation, so that I can enhance the userexit or BADI and can restict it to only 1 Delivery for 1 line item.
    Any inputs on this will be a valuable help for me.
    Thanks and Regards,
    Reddem.

    Hi Reddem!
    Try one of them userexits
    LV50R_VIEWG01 - LV50R_VIEWG17
    Otherwise you can make a lot of settings in VL10 on the User Role tab. E.g. Dlv creation profile, you can find some user-exits with F1-Help and F4-Help on input fields.
    br
    Kalman

  • Userexit or BADI for program *RMMRP000* for background job

    Hi,
    We are scheduling background job for MRP through SM36 using program  RMMRP000 or Through Transaction MDBT (MDBT is calling program RMMRP000) which creates PR (through background job).
    I want to default one field in PR (PO Price field in valuation tab in PR default to gross) using any userexit or BADI.
    Can any body suggest me userexit or BADI for program RMMRP000 for background job
    Regards.

    Hi,
    1. The below are the List of  Userexit for this MDBT t.CODE.
    2. But i dont see any one helping to resolve your issue.
    3. May be you should lookg at the Userexit for me21n or relevant Purhcase requisition creation transaction.
    reg
    dsk

  • Exit or BADI for ME23N Deletion

    Hi All,
    I have a scenario like in PO have only one line item ,i want to delete that one line item for particular users (Authorization role)
    if i have more than one line item i don't want to delete .
    please tell me how can i solve this .
    Thanks,
    KK
    Moderator message : Thread locked, reason mentioned in [Exit or BADI for ME23N Deletion|Exit or BADI for ME23N Deletion]
    Edited by: Vinod Kumar on Aug 19, 2011 1:42 PM

    Hi
    In rel 4.6C you can find these BADIs:
    - MB_DOCUMENT_BADI or MB_DOCUMENT_UPDATE
    and these exits: MBCF0002, MB_CF001
    Max

  • Hey, I have $2350-2400 and I want some proper guidance for the macbook pro

    HEY!!!
    Guys I will try to make this as easy as possible!
    First let me tell you I am 15, I love graphics, music and literature and I have no credit card, my iTunes account has no money, I'm using an account that doesn't require credit cards! So (ugh) I buy all the free apps
    Anyway
    Dad gave me $2400 to buy a macbook pro and keep the change but since I live in Italy, I have to convert them to Euros.
    $2400-1821 EUR
    So I came up with 2 conclusions and I just want some opinions on which is the smarter decision.
    Well apparently there are 4 types of laptops I can get right now from the macs.....
    to make this as simple and as easy as possible (and to show off my ICT skills ) I made a table which includes
    1) the laptop mentioned
    2) the price in dollars (which I got directly from the apple store in the US)
    3) the price in euros (which I got directly from the apple store in Europe)
    Macbook Pro Kind
    Price in dollars
    Price in EUR
    13-inch: 2.5GHz
    $1119.00
    1249.00 EUR
    13-inch: 2.9GHz
    $1499.00
    1549.00 EUR
    13-inch: 2.5GHz with Retina Display
    $1499.00
    1549.00 EUR
    13-inch: 2.6GHz with Retina Display
    $1699.00
    1749.00 EUR
    But you can install somethings on to your laptop right there in the shop and I wanted two things,
    1) pages: I thought would help with my writing because I write poems, novels, stories, etc
    2) numbers: this program just deals with spreadsheets and charts and just the mathematical area and thought that this would help when doing A levels and GCSE math
    3)keynote: This is basically like power point and it just makes presentations.
    each of these programs are 18 EUR
    One more thing, since I am planning on using this laptop for several years, I change  changing countries often and so the laptop can come with an adapter that works in both European and American countries
    But thats 80 EUR
    The laptop (the edition i want) is 1749 EUR
    that means with all these additional stuff
    I calculated it on the apple store
    1749.00 EUR + 18 EUR + 18 EUR+ 18 EUR 80 EUR = 1883.01 EUR
    If we were in america then according to the website's store
    $1699 + $19.99 + $19.99 + $19.99 + $79.00=  $1847.96
    I'd be buying the SAME amount of things in the States for $1847.96 and I'd have 552 dollars change but in Italy everything would cost 1883.01 EUR which is the equivalent of $2481.61 which is more expensive than the US!
    BUT
    You have to consider the fact that this is with all the additional costs
    The additional things I thought I'd need
    If I said "no just buy the laptop"
    then the correct price in dollars is $1699
    the correct price in euros would be 1749 EUR
    the laptop only. No extra features.
    1749 EUR in Dollars would be $2305!
    Exactly $2305!
    That means I would only have had 95 dollars difference.
    Anyway the bottom line is all these additional things that I was talking about, the softwares and everything, they're going to help me in the near future, not RIGHT now.
    So what I can do is just buy the laptop and then as I progress in to year eleven, slowly by slowly, I can start buying the softwares.
    I'm sorry I'm unburdening ALL these different information on you, but I just wanted to approach this from as many angles and be as aware of all the variables as possible.
    SOOOOOOOOOOOOOOOOOOOOO
    (THIS IS THE CONCLUSION)
    OPTION ONE
    Buy the 13-inch: 2.6GHz with Retina Display Macbook Pro for 1749.00 EUR including all the additional features (the three softwares and the adapter which together have the total value of 134 EUR)
    Therefore the total amount of money we'd be spending is
    1883.01 EUR
    That means the total cost of everything would be $2481.62 and I'd get no difference
    OPTION TWO
    Buy the 13-inch: 2.6GHz with Retina Display Macbook Pro for 1749.00 EUR and then when I am 16 or 18 I buy these softwares with a credit card and apply them for my A levels later.
    That means the total amount we'll be spending is
    1749.00 EUR
    Which is $2305
    I will have $95 (72 EUR) pocket money.
    (BY THE WAY, MY PARENTS WORK FOR THE UNITED NATIONS AND DON'T PAY VAT OR SOMETHING AND SO WE KIND OF SOMEHOW GET A 20% DISCOUNT SO THE PRICES WILL BE A BIT OFF AND CHEAPER.... I JUST CAN'T BE BOTHERED TO DO ALL OF THE CALCULATIONS BUT YEAH.....................)
    Thanks for reading
    Please reply ASAP I'm buying the mac extremley soon.....

    Never heard of .MOD format, but generally VLC player will play most any format.
    It's free, open source so no harm in trying:
    http://www.videolan.org/vlc/

  • I am trying to update some apps but my ipad wont let me because it wants me to enter the security code for my credit card and I dont want to do that so how do i fix this?

    I am trying to update some apps but my ipad wont let me because it wants me to enter the security code for my credit card and I dont want to do that how can i fix this?

    Try temporarily disabling your firewall and antivirus.

  • I want to use my IPOD Classic 160gb for notepad entries in addition to the music and books I listen to. It is set to "Open ITunes when connected to computer" and "manually manage music and videos". How can I do that without losing some of the features

    I want to use my IPOD Classic 160gb for notepad entries in addition to the music and books I listen to. It is set to "Open ITunes when connected to computer" and "manually manage music and videos".  How can I do that without losing some of the features of those two?   I just want to add a feature.  Thanks

    Settings>Store (or iTunes & App Stores if you are running iOS6)>Apple ID. Tap your son's ID and sign out. Sign in with your ID and password.
    You shouldn't lose the music, but if you try to update any apps that you bought with the family ID, you will have to use that password that is linked with that ID in order to update.
    Avoid downloading past purchased content with the old ID if you can since you will associate the iPad with the old ID for 90 days and you will lock yourself out of your own, new ID for that period of time. Read more about associated devices in iTunes here.
    iTunes Store: Associating a device or computer to your Apple ID

  • I have brought a 17'' MacBook Pro 2.5ghz core 2 duo 2gb. Model A1261. It seems I can upgrade to either 8gb or 16gb ram! But since It's 2006'ish, I just want some advice on the best ram that would work for a good price. Thanks :)

    I have brought a 17'' MacBook Pro 2.5ghz core 2 duo 2gb. Model A1261. It seems I can upgrade to either 8gb or 16gb ram! But since It's 2006'ish, I just want some advice on the best ram that would work for a good price. Thanks :)

    Keiran420 wrote:
    8 gb will do I guess
    Based on the information that you have supplied, you have a Early or Late 2008 MBP.  Maximum RAM that it will accept is 6 GB with the following specifications:   200-pin PC2-5300 (667MHz) DDR2 SO-DIMM.
    The best sources for Mac compatible RAM are OWC and Crucial.
    Ciao.

Maybe you are looking for

  • Shade of current day in iCal

    i used the technique described in this post http://discussions.apple.com/thread.jspa?messageID=3470962&#3470962 to fix the problem of the alarm message coming up offscreen. worked great for me and many others (many thanks). now that i have downloaded

  • No sound of any kind after ios8 update

    Recently I updated my iPad to iOS 8 and the subsequent updates. Since then there has been no sound at all. When I start music, the playlist will skip through all the songs, eventually crashing. When I start apps they don't work or don't have any soun

  • Problem During NWDS start up

    Hi all,     I have installed Net weaver IDE in my system.Now i have started my IDE by clicking on the icon. It was shown me a Browse option to select workspace. I have selected default workspace. But it is giving me an error saying : Problem during s

  • Auto fill is now storing my security number as well as my credit card number. How can I stop this? Thanks

    I've been concerned for sometime about the amount of information that autofills on forms but failed to find security settings to prevent this. Today I find that not only my credit card number but also my credit card security number was there for auto

  • Clearing recently opened files

    How does one clear an application's recently opened files when control-clicking on an application? Clicking on the mac at the top left corner and clearing recently items only clears that menu, there still remains individual menus for say, preview or