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

Similar Messages

  • Inbound IDOC User Exit ZXVEDU04 change IDoc Data

    Hi all,
    We have to develop an user exit for changing the Plant, Shipping Point and Storage location
    We have identified the exit ZXVEDU04 . Is there some other exit for this ??
    But which internal table we are supposed to change this to change the data .
    If possible send me a sample code
    Thanks in Advance .
    Vivek K ..

    Hi all,
    I have done this for a single line item IDoc .
    How do i go for IDocs with more than one line item ???
    I have hardcoded VBAP-WERKS(1) etc for Plant, Strg Loc and shp pt .
    How to identify how many line items are there in the IDocs ??
    Thanks in Advance .
    Vivek K ..

  • User Exit To Change Posting Date In T-Code: F110

    Hi,
    I need to change the posting date while doing payment run from T-Code: F110.
    Kindly advice me how to go forward with it.
    Regards,
    Rohini.

    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

  • How to change release dates for videos?

    does anyone know how, there's no option to input that data in iTunes.

    Try this post http://discussions.apple.com/message.jspa?messageID=6283879#6283879
    tt2

  • User exit to change item level data in purchase order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirment is
    For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in itemlevel data.
    Regards,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

  • Help - User exit to change item level data in Purchase Order

    Hi,
    Can anyone let me know the user exit to change item level data in purchase order . there is a badi ME_PROCESS_PO_CUST for this but the issue is its method process_item gets triggered only when the item is changed. My requirement is For purchase order document types u201CZSOu201D and u201CZCOu201D, where the purchase order is a u201CLimits Orderu201D only i.e. no materials or services on the purchase order, the print price indicator field should be set to u201Cblanku201D (unchecked).   now i cant use ME_PROCESS_PO_CUST  because process_item wont get triggered if there is no change in item level data.
    Thanks,
    Rahul

    Hi Rahul,
    Probably EXIT_SAPLMEKO_002.
    hope it helps,
    Edgar

  • User exit  to change material availability date

    Hi Gurus,
       my requirement is like I need to change the material availability date based on some conditions.
    Is there any User Exit to change the availability date so that I can dump my code in the user exit .
    If not is there any alternative process to get the solution.
    Thanks,
    Sudhaa.............

    Hi Sudha,
    Can you tell me your requirement clearly please.
    Regards,
    Dhanunjaya Reddy

  • Need to know the user exit to change unlimited check box in delivery tag

    Need to know the user exit,
    To change the <b>unlimited check box(</b>EKPO-UEBTK) in <b>delivery tag</b> of <b>item details</b> for tcode <b>ME21N/ME22N</b> on <b>SAVE</b>. 
    Thanks in Advance.
    Baburaj

    HI Baburaj,
    Use the BADI ME_PROCESS_PO_CUST to change the unlimited check box(EKPO-UEBTK)
    Implement the BADI and insert the code in the method PROCESS_ITEM
    Example code :
    *Data Declarations
    DATA: ls_mepoitem TYPE mepoitem,
          ls_mepoitemx type mepoitemx,
            ls_customer TYPE mepo_badi_exampl,
            ls_tbsg     TYPE tbsg.
      INCLUDE mm_messages_mac. "useful macros for message handling
    *here we  get item data
      ls_mepoitem = im_item->get_data( ).
    *work area for price value
    data : begin of it_eban,
      banfn type  mepoitem-banfn,
      bnfpo type  mepoitem-BNFPO,
      pries type mepoitem-NETPR,
    end of it_eban.
    *Get the Purchase requisition price from EBAN table
    select single banfn bnfpo preis from eban into it_eban
                                            where
                                              banfn = ls_mepoitem-banfn
                                          and bnfpo = ls_mepoitem-bnfpo.
    *if entry is available.
    if sy-subrc eq 0.
    *check if price is zero
        if it_eban-pries EQ 0.
    *if zero, set FREE field of PO to 'X'.
          ls_mepoitem-uebtk = 'X'.
        endif.
        endif.
    *Set updated fields
    CALL METHOD im_item->set_data
    EXPORTING
    im_data = ls_mepoitem
    Reward if Helpful*****

  • User exit to change the storage section indicator (MLVS-LGBKZ)

    Hi.
    I'm looking for a user exit which be able to change the storage section indicator (field MLVS-LGBKZ) proposed by the material master data in the process of creating a TO (transaction LT06). I haven't found any user exit for this. Do you know any user exit to change this value?
    Thanks in advance

    hi,
    thank you for your response.
    whatever the exit which you have been provided, not calling when i creating PR through MD50.
    i need an exit which will trigger when we create PR through MD50.
    Many thanks,
    Regards,
    kiran

  • User exit to change sort on ME57 t-code in SAP MM

    Do we have any user exit to change the sort on ME57 output screen, I have to sort ME57 by Storage bin, we dont have storage bin on ME57 output, so i have add storage bin  and sort.
    Can any body help me to solve this problem?
    thanks,

    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

  • Release Date for Albums Year, MONTH DAY

    Why can't I enter the release date for albums (Year month and day)?   Itunes has a field for year but that's it.    I would have loved to be at the meeting where it was discussed.
    "Year, month and day? why the heck would any want that?"
    "Well a lot of us want to see our albums in chronological order and you can't do that with just the year, many albums come out every year"
    "Blah Blah Blah, music is just to dance to, no one cares about dates, besides it would four extra digit fields in each entry"
    But seriously, I would think that Itunes would aspire to be THE program for music lovers.
    Instead of being able to just enter the release dates I have had to come up with my own work around.  I put a the release date in the format yyyymmdd in fromt of each title and then sort by titles.
    Now all of my Beatle albums finally show up in chronological order by release date.   But why should I have to massage the data like this.   I can't imagine what goes on at Itunes planning  sessions.  I'm very unhappy about the loss of cover flow but that's another story.

    I'm glad to hear that I am not the only one who sees this as a problem.  And another Beatles fan too.
    This is so fundamental.  Every album has a release date and it's part of the data that is always associated with  that album.   Why did Apple look at the data available for an album and consciously decide to truncate it?
    What kind of music lover isn't aware of when albums are released?  I just don't get it.
    I like having the date yyyymmdd in front of each album.   It isn't pretty but it means the albums are chronological.   If you want, you could just put this in the sort field and leave the regular album title in the regular field.   Then the names would be right and they would sort correctly.   But again.  Why should we have to do all that? 
    Apple is busy constantly changing where the controls are on I tunes  rather than fixing something simple and important like this.
    Today I wanted to load some songs onto my ipod touch and it took me 10 minutes to figure out how to sync because the last itunes update got rid of the side bar.  
    How are you supposed to get comfortable using a product when they keep moving the controls around?   Just quit apple.   leave the controls where they are.  Add new controls if needed but stop moving them.  I know I'm ranting now but I am honestly angry and frustrated,

  • User exit to copy the data from sales order to billing document

    hi everyone,
    Is there an user exit to copy the data from sales order to billing document?
    Regards
    Prabudh

    hi
    copy control would be the better option to choose.. but still u can a give a search in list below and opt for the right one..Refer to the link below..
    http://www.planetsap.com/Userexit_List.htm
    User exits for Sales order
    1•USEREXIT_DELETE_DOCUMENT
    2•USEREXIT_FIELD_MODIFICATION
    3.•USEREXIT_MOVE_FIELD_TO_VBAK
    4.•USEREXIT_NUMBER_RANGE
    5.•USEREXIT_SAVE_DOCUMENT
    User exits for billing
    1.•USEREXIT_ACCOUNT_PREP_KOMKCV (Module pool SAPLV60A, program RV60AFZZ)
    2.•USEREXIT_ACCOUNT_PREP_KOMPCV
    3•USEREXIT_NUMBER_RANGE_INV_DATE (Module pool SAPLV60A, program RV60AFZC)
    4•USEREXIT_PRINT_ITEM (Module pool SAPLV61A, program RV61AFZB
    5.USEREXIT_PRINT_HEAD (Modulpool SAPLV61A, Programm RV61AFZB)
    Reward if Useful
    Thanx & Regards..
    Naren..

  • Release date for Arch 0.8 ?

    Hi all,
    I am a Slackware user in search of a new home. I have installed and played around with ArchLinux 0.7 on my test machine and feel ready to install it on my workstation, along with the current Slackware installation, in order to ease migration.
    On the main web page, it says that version 0.8 is 'pending'. As I like to install from CD, and as I couldn't find any -current ISO, is the relase date for version 0.8 close, far or undefined?
    Regards,
    -pu

    uselpa,
    Basically there are two suggestions I can give you:
    1 - Use the 0.7 - base iso. Which only contains the base for Arch, which is what most people do. Install that and the pacman -Syu up to the current release state.
    2 - Since you have to do 3 installs, and from what it sounds like you need to be up and running as quickly as possible, use the 0.7 full iso's. They contain the base and a few more apps (some DE's and what not). That way you'll have a full working system and can pacman -Syu later on when you have time.
    Basically to answer your question, there is no stated release date for 0.8, as Arch doesn't really function like that. Things are similar to Slackware, where you can follow Slackware-current and stay up to date. With Arch however, there really isn't anything other than current. So version numbers and releases don't really matter.
    I hope I cleared this up for you. If you have anymore questions feel free to ask .

  • Release date for

    Does anyone know if there is a release date for the X-Fi drivers for XP, I see the Vista drivers have been up for some time. Or are we XP users getting the shaft? It's going to take a lot of convincing for me to move over to Vista, I don't see DX0 as incenti've enough for me to shell out 200 bucks for an upgrade.

    Did Creative forget about XP users of something, it's been a year since there was a driver, and it seems like they only fixed Vista drivers. I'm not looking to switch to Vista, unless I have to, there's no justification for it, it's as good as an OS like Windows ME, which only lasted a year or so.

  • Release Date for next BEA Workshop?

    Hi:
    I haven't seen much activity around BEA Workshop 3.3 as far as new releases for more than 1/2 of a year. Is there a release date for the next version? What will it be? What happens to those people who already have subscriptions to BEA Workshop?
    Thanks
    Mike

    William Hortman wrote:
    The new Workshop 10.1 does not work with Eclipse 3.3(Europa)? That's disappointing.If you like Eclipse 3.3 you might be interested to know that BEA will be
    releasing WebLogic Server Tools 1.0 based on Europa this Monday the
    16th. WebLogic Server Tools does not have all of the Workshop features
    such as Beehive support or AppXRay, but it has Workshop's WebLogic
    Server integration bits and a few other basic WebLogic Server tools
    (such as support for "Shared J2EE Libraries / Library Modules"). These
    are the same bits as were shipped for 10.1, but they have been ported to
    work on Europa.
    Note that if you are currently a Workshop users, WebLogic Server Tools
    is not an upgrade path for Workshop projects. WebLogic Server Tools is a
    paired down offering designed for people using basic Eclipse/WTP
    facilities and wanting good WLS integration. Full Workshop on top of
    Europa is a bit out in a future.
    - Konstantin

Maybe you are looking for

  • Hard disk failing -- how to safely backup data / remove bad sectors?

    I'm sorry if this is posted in the wrong forums, I wasn't sure where to go. It appears that I have a bad block on my hard drive.  During normal boot-up, arch ran its regular scan of my / partition, and failed giving an error that looked something lik

  • Merge 2 IPhoto together ?

    Hi, I own 2 apple's computer and I have pictures in IPHOTO on each computers. How can I combine all of my pictures on a single machine in IPHOTO. I want to merge my 2 IPHOTO together on 1 machine and keep all my info ex. rating, folder, album... Rega

  • QCOW LVM What would be the best file system ?

    I would like to put my kvm instances (iso + qcow2 file) in separate logical volumes (I am using LVM). I am just wondering if there is a better file system to handle just these two particular files. Just ext2 ? Thanks for any hints.

  • Auto incremnt of code

    hi i have made a udf in bp master address tab say U_LCODE and have placed the value as LOC0000001 now next time it should be auto incremented by 1 overtime the address name  field in the BP Master address TAB changes  Regards, Manish

  • ITunes 7.1.1 Parental Controls Permanently Unlocked!

    So, after upgrading to iTunes 7.1.1, I find it impossible to lock the Parental Controls Preferences after making changes: Configure selections, click lock, authenticate. Restart application after quitting. Access Parental Controls in Preferences only