User-exit on APO side for the deliveries that are coming from R/3

Hi,
When a delivery is created in ECC for a VMI customer, it creates an EI order in APO. We need to record some details of these orders on the APO side.   Can you please let me know the user exit/BADI that gets triggered when a delivery comes to APO through CIF which we can use for our requirement?
Thanks in advance.

Hi,
    You can use APOCF006(EXIT_/SAPAPO/SAPLCIF_PU_001) CIF User exit on APO side for CF_OBJECTTYPE = B(Delivery).
I hope this will help you.
Regards,
Saurabh

Similar Messages

  • I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to

    I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to it. I've checked the obvious things, changed the fuse, tried different cables, poked paperclips in reset holes, but nothing doing. I wonder if there is anyone who knows what might be wrong. I was hoping to get some of its content transferred soon, but I'm guessing that can't be done if it can't be started up. Many thanks, if you can help

    Hello,
    >It's as though no power is getting to it.
    Would it be correct to assume that no sounds at all can be heard? Also, no lights, not even green or amber at the power button?
    >unfortunately had a power cut.
    Was it possibly a power cut in connection with a thunderstorm? Any other evidence of higher than normal voltages (light bulbs, et cetera)? Has the line voltage been checked (measured with an appropriate voltmeter/multimeter)?
    If necessary, it would be possible to remove the hard drive, and then connect it to an external IDE/ATA to USB adapter (example below). That way you could gain access to files on the hard disk from another computer.
    http://www.newertech.com/products/usb3_universaldriveadap.php
    Jan

  • How to remove the buttons which are coming from a report?

    Hi All,
    I need to remove the buttons from an iview which is a sap transaction. when i execute the  report program which uses a ldb (PCH) shows a selection screen having all the buttons.
    We have created variants for this.Now i want to remove the buttons which are coming from the report program.how to do this ?
    Lakshmi.

    Hi,
    I think u r mentioning about the addition buttons that appear in the selection screen when using a logical database. for removing these buttons u can use a function module RS_SET_SELSCREEN_STATUS  for setting ur own pf-status
    do this in "at selection screen output" of the program..
    in the tables parameter, u have the option for giving the ok-codes that u want to remove. append all the ok-codes into this table.
    for getting the ok-codes u can use "tab" and go the button.. press F1. it will give the ok-code.
    Regards,
    Anoop

  • HT5312 I'm trying to change my security answer as the ones that are coming up are telling me there incorrect but they aren't and now it has locked me out

    I'm trying to change my security answer as the ones that are coming up are telling me there incorrect but they aren't and now it has locked me out

    Aleesha Malone wrote:
    ... now it has locked me out
    See Here... ask to speak with the Account Security Team...
    Apple ID: Contacting Apple for help with Apple ID account security
    Or Here  >  Apple  Support  iTunes Store  Contact

  • My iMac holds my main iTunes account.  How do I find out a list of all the devices that are authorized from this computer?

    My iMac holds my main iTunes account and it shows 4 devices are authorized to play iTunes.  I can only name 3.  How do I find out a list of all the devices that are authorized from this computer?

    I don't believe this is possible, but you can deauthorize all your computers and start over if you are concerned.
    See here
    Best of luck

  • User exit or BADI available for the CAPP in CA03.

    Hi,
                I have a requirement to populate the standard CAPP values to the work center activities of the routing only when all the activities are having a blank value.Please see the below paragraph for better understanding.         
    Currently in SAP when executing CAPP for a work center of the routing it over writes the existing values populated on the routing for the setup,labor,standard labor,man occupation,machine occupation…etc whether the values are blank or not. An enhancement needs to be made to only populate operations standards when all the values are blank.
    If routing is not populated with setup, machine, labor standards, man occupation, machine occupation and work center is setup for default standards in CAPP, then run the CAPP process to apply standards from work center zcappstds table. The program that is run to apply these standards currently is SAPLCETO. Potentially ca96 and the batch process that updates the material master RCPMAU01 will have to be adjusted as well.
    Please help me if anybody knows the user exit/Badi for this requirement.Please reply me soon this is an urgent requirement
    thanks in advance,
    Samyuktha.

    I dont have details abt exact user Exit or badi which will suit ur requirement. But below info will give you the way to find out the same.
    Have a look at below link,
    http://www.erpgenie.com/sap/abap/code/abap26.htm
    which gives the list of exits for a tcode
    There are multiple ways of searching for BADI.
    • Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE
    • Finding BADI Using SQL Trace (TCODE-ST05).
    • Finding BADI Using Repository Information System (TCODE- SE84).
    1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.
    Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.
    The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name.
    2. Start transaction ST05 (Performance Analysis).
    Set flag field "Buffer trace"
    Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)
    Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.
    Push the button "Deactivate Trace".
    Push the button "Display Trace".
    The popup screen "Set Restrictions for Displaying Trace" appears.
    Now, filter the trace on Objects:
    • V_EXT_IMP
    • V_EXT_ACT
    Push button "Multiple selections" button behind field Objects
    Fill: V_EXT_IMP and V_EXT_ACT
    All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.
    So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA
    3. Go to “Maintain Transaction” (TCODE- SE93).
    Enter the Transaction VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    Go to TCode: SE84->Enhancements->Business Add-inns->Definition
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI’s for the given package MB.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • User exit or badi neede for the vl02

    Hi All,
    My user will do the GOODS ISSUE Through the VL02 ,So the shelflife expiry date will perform at this time,it will give the error message if the Batch shelf life expiredate is not matching with material master shelflife expriry date,but my user wants to skip this check for a particular movement type , So to solve this issue can any one tell which enhancement technique is suitable to solve this issue,if that is user-exit or BADI Please could you give that user-exit/BADI Name .
    Thanks in advance..
    SRIHASA

    you can use these many badi for user exist in vl02:
    Enhancement/ Business Add-in            Description
    Enhancement
    VMDE0004                                Shipping Interface: Message SDPACK (Packing, Inbound)
    VMDE0003                                Shipping Interface: Message SDPICK (Picking, Inbound)
    VMDE0002                                Shipping Interface: Message PICKSD (Picking, Outbound)
    VMDE0001                                Shipping Interface: Error Handling - Inbound IDoc
    V53W0001                                User exits for creating picking waves
    V53C0002                                W&S: RWE enhancement - shipping material type/time slot
    V53C0001                                Rough workload calculation in time per item
    V50S0001                                User Exits for Delivery Processing
    V50R0004                                Calculation of Stock for POs for Shipping Due Date List
    V50R0002                                Collective processing for delivery creation
    V50R0001                                Collective processing for delivery creation
    V50Q0001                                Delivery Monitor: User Exits for Filling Display Fields
    V50PSTAT                                Delivery: Item Status Calculation
    V02V0004                                User Exit for Staging Area Determination (Item)
    V02V0003                                User exit for gate + matl staging area determination (headr
    V02V0002                                User exit for storage location determination
    V02V0001                                Sales area determination for stock transport order
    Business Add-in
    DELIVERY_ADDR_SAP                       Address Change in Delivery Processing
    DELIVERY_PUBLISH                        Announcement of delivery data during database update

  • HT5622 my stepdad used to use my phone and the imessage accounts have now joined together by mistake we don't know how it happened but is there a way we can separate the two accounts because we are able to read messages that are coming from two different

    hello can i please get some help, my stepdad used to use my phone a while ago, i deleted his old account from my phone, last night out IMessages merged without us knowing how it happened, he is able to read any messages that are coming into my phone through IMessage and also i am able to read his and this is happen from two different phone, i dont know how to fix  this or two separate the two accounts, is anyone able to help please

    Settings>Messages Send and Receive should only have the phone number and addresses checked that you want reaching that individual devices  If your step-dads number and email are checked just tap them it will remove the check.

  • How to seperate the pulses that are acquired from real world according to their pulse heights in LabVIEW.

    Hi everybody,
    Can any one help in getting out this. Actually I am acquiring gamma rays from proportional counter into the LabVIEW, Coming to the analysis part, I need to seperate the pulses according to their pulse heights. After seperating them I need to digitise the pulses that are seperated. So I request you to sort out this as early as possilbe.
    Thanks in advance.
    A.Giridhar Yadav.

    I am confused about your description. You indicate that you are acquiring the signals but then you want to digitize them later? Any signal processed by LabVIEW has already been digitized because the software only works on numbers, not continuous voltages.
    1. How are you acquiring the data from the proportional counter into LV? What DAQ device are you using? What sample rate?
    2. What is the duration of the pulses? Gamma pulses from PMT and scintillators are usually rather short.
    3. Do you have any log amplifiers or other signal conditioning between the detectors and the DAQ device?
    Lynn

  • User-Exit OR a BAdi for the Purchase order create.

    Hi,
    I am looking for a User-Exit or a BAdi which is fired when the Purchase order is being created in the SRM server via Web template. The requirement is as follows:
    There is a flag(Check box) at the the item level, Basic Data tab. This flag is called as Unlimited Overdelivery Allowed. It is with the tolerances field. Now I want this flag to be always set for a PO of a material of certain type.
    Can anyone tell me which User-Exit OR Badi I should use to always set this flag?
    The Technical field name is UNLIMITED.
    I tried a lot but could not get any.
    Regards,
    Deepak.

    Hi Deepak,
      Did you try doc_change badi? THis badi is available in all the bus objects.
    thanks,
    Ashwin

  • User Exit transaction FB05 with data of documents that are to be cleared.

    Hi,
    Is there any user exit or badi in transaction FB05, where the data of documents that are to be cleared and the data of payment document are available?
    I need that in the F110 transaction, the field SGTXT of the payment document is filled with the field XBLNR of documents to compensate.
    Thanks in advance.
    Regards,
    Ana Lucas

    Hi,
    The field XBLNR of the clearing document isn't the same of cleared document.
    In the substitution we don't have available the data of cleared document,  but only the data of clearing document.
    Regards
    Ana Lucas

  • My account states I'm authorized 5 computers however I only have 2 computers that are working, how do you account for the 3 that are not working

    I have owned 5 computers which had iTunes loaded, however only 2 of the computers actually work.  My account states I'm authorized 5 computers, how do I update my account to indicate that.  The only option I saw was unauthorize all computers

    Mash,
    If a computer is authorized but is discarded withour deauthorizing, it continues to count as an authorized computer. 
    But, it is simple enough to "Deauthorize All" and then re-authorize just the ones that you are still really using.

  • The apps that are downloaded from itunes store are not getting installed pls help

    I am currently using the latest version of itunes. And i am using an iphone 3g ios 4.2.1 version. And whenever i am downloading any of the free application from itunes store from my pc the application is getting download properly and when i try installing it on my phone it gets installed but after installing there is a process of finishing sync when that appears the mark from that application disappears on its own and the app is not installed on the phone.
    Please help me
    Thank you

    Oooft thanks for rapid responce!!  It is same account as purchased app, defo compatible (3 of them used to be on ipod then disappeared)  and this is only computer I've ever used with ipod.  I also did a software update just incase and tried dragging and dropping them into device but it won't let me!!!!!  I will try the restictions thingy!

  • How can I get iTunes to recognize the apps that are missing from the library screen but still on the machine??

    My apps are not showing-up in the iTunes library but they are present in the apps folder. How can I get iTunes to recognize their presence?
    Library-Apps-All (only three of several hundred appear).
    Apps are still present in Users-Music-Mobile Applications
    I am running iTunes 11.0, OS X 10.8.2 on a Mac Pro. 
    Ran Disk Utility, Techtool, Disk Warrior and then reinstalled Mountain Lion, updated it and repaired permissions. No change.
    There is a file that says 'iTunes Library (damaged), which is the iTunes Database file. How can that file be re-created?
    Any technical help on replacing that file with a new, fresh one would be appreciated!

    It has always been very basic to maintain a backup of media and other important files.  If you chose to reinstall the OS without having a backup, well that just is not smart.
    If you are in the US and running iTunes 10.3 or later, iTunes purchases can be redownloaded via iCloud.  Simply log into the iTunes store, select purchases, purchase history and redownload the content.
    If you are not in the US.... well, seems you just learned and important and possibly expensive lesson.

  • Urgent : I want to modiy the values that are transfered from R/3 to CRM

    I have created a custom field in both CRM and R3. When the tha value of the firld is changed in VA02/Va01 i want the change the value in between. i want to change the value before it is changed in CRM how can i do it...
    Thanks in advance.

    Hi Bharath
    You can use the BADI 'CRM_DATAEXCHG_BADI'. In this BADI, use the method 'CRM_DATAEXCH_R3D_MBDOC_FILL'. this is for data transfer from R/3 to CRM.
    Please reward points if helpful!!
    Warm regards
    Debolina

Maybe you are looking for