How to pass back results of gATP from APO to R/3

Dear all,
we're currently working on a gATP implementation and face following open challenges for which we kindly ask you for your valuable support:
1.) We need to pass back the allocated CVC of the gATP (product allocation) check from APO to z-append fields of VBAP. In order to do that we implemented additional field catalog fields which are updated in one of the product allocation userexits on APO side. Using an enhancement of form MVERF_PRUEFEN in SAPFV45V the data which is passed back from APO to R/3 via field_catalog can be written into the respective VBAP fields. ONLY: this doesn't work for a "complete delivery only" customer/order as MVERF_PRUEFEN is not called in such a case.
---> Do you have any proposals where/how to implement the functionality to write back the results passed back by APO into VBAP fields?
2.) In case of incomplete confirmation (not enough qty) the "APO Product Availability Overview" screen appears. We do not want to show this screen in APO to our users. There should be just a warning message but not this full screen. Do you have any ideas how to turn off the screen (similar to what happens if the order is posted in background)
Thanks again for your great input and help!
M.

Dear Mohan,
thanks for your reply.
We actually use the functionality you described already for passing the required additional information from R/3 to APO. What we're currently searching, is a solution to pass back results (such as the allocated CVC or additional information from APO) from APO back to R/3 and store it there in VBAP-appends.
Thanks,
Maawdee
Edited by: Maawdee on Jun 25, 2010 9:18 AM

Similar Messages

  • How to pass back Subject do Client app after authentication via identity assertion

    I have developed an Identity Assertion Provider based on
    SampleIdentityAsserterProviderImpl provided by BEA.
    It seams that all works fine, but I don't now how to pass back authenticated
    Subject to client application in order to call methods runAs(Subject,
    PrivillegedAction). I have tried build Subject from
    connection.getInputStream() but when I use Subject constructed in that way I
    have received an error:
    lava.lang.SecurityException: Invalid Subject: principals=[user, usergroup1,
    usergroup1]
    Thanks in advance for any suggestions.
    Jerzy Nawrot

    Hi,
    as per the below comment.
    We want to change this and do this dynamic way so that the XCM configuration application can read these dynamic parameters and behave accordingly(like customers with different languages, client systems etc). This is the 1st part .
    You have to use different scanrios to be set in XCM like (customer specific to language, and client), and that to be passed in
    Where language specifications should maintained in XCM settings only. also to be noted that Product catalog for those should also maintain in that specific language.
    "/init.do?scenario=value2;
    The 2nd part leading this scenario is after the portal user successfully lands into ISA application, if the user needs to go back to the WDP java screen, would the JSP based ISA application be able to navigate back to the original WD Java iView Screen. ? or would it open in a new window ? (probably this can be set to be launched in same window)
    I am not sure, but if you go back to WD from ISA , ISA Session will die.
    Let me know if you have any further queries.
    Regards,
    Devender V

  • HT4859 How do I back up my documents from my Macbook on iCloud? or can I only use time machine or external HD?

    How do I back up my documents from my Macbook on iCloud? or can I only use time machine or external HD?
    I think I have missed something in trying to read all of the pages on apple site about icloud.

    Welcome to the Apple Community.
    You can't back up a computer to iCloud.
    You can use any back up software, you should always back up to a different drive.

  • How can I back up my contacts from my iphone to my computer?

    How can I back up my contacts from my iphone to my computer?

    Hi Khuram1981 - thank you thank you thank you!  All sorted!  dont suppose you know how to fix another problem I have??? for weeks now, since updating to ios5 I think, for some reason every time I have tried to log onto app store it says CANNOT CONNECT TO ITUNES STORE.  It's nothing to do with my computer, and I've been to the Geniius bar but they couldnt help and nothing I seem to do lets me update my Apps and even worse, I cant even buy any more.  Any suggestions?
    Again thank you SO much for helping with other problem = a real relief.
    Chatterwind xx

  • How do I back up my music from my iPhone 3G?

    How do I back up my music from my iPhone 3G?

    You didn't need or want any of the data on your computer's hard drive before wiping the hard drive to install Windows 7? No photos, documents or anything was backed up before installing Windows 7?
    The iPhone is not designed or intended to be used as a backup storage device. Maintaining a backup for all important data on your computer's hard drive is important for a number of reasons regardless the platform, but even more so with Windows due to constant virus, adware, and spyware concerns. Not to mention a hard drive can have a partial or complete failure at any time.
    One option you have was as already provided. First you need to re-authorize your computer with your iTunes account with iTunes. With your iPhone connected to iTunes and without syncing, at the iTunes menu bar go to File and select Transfer Purchases From - the name of your iPhone. This will transfer iTunes content that was purchased/downloaded from the iTunes store only.

  • How can get back my backup data from an external element ?

    How can get back my backup data from an external element ?

    See the section titled "restoring data from Time Machine backups" in this Apple support article; that should get you going.
    http://support.apple.com/kb/ht1427
    Regards.

  • Im going to restore my ipod touch(4th gen) to factory settings. my question is, how do i back up all notes from the app "notes" so they can be reinstalled? or is it allready backed up as per the main "back-up" ?

    im going to restore my ipod touch(4th gen) to factory settings. my question is, how do i back up all notes from the app "notes" so they can be reinstalled? or is it allready backed up as per the main "back-up" ? I know its a simple question, but i dont know the answer. please help.

    The iPod backup that iTunes makes includes Notes.and other app data. However, it does not included synced media like apps and music.
    Thus, just restore from backup with all your synced media in your iTunes library.
    iTunes: About iOS backups

  • How do i back up my files from an intel core duo imac to an external hard drive?

    Hello
    How do I back up my files from an intel core duo imac to an external hard drive?

    Like you do with any other Mac*:
    http://www.macmaps.com/backup.html
    Note: if you have a CoreDuo, you can only upgrade up to 10.6.8.  Only Core2Duos and higher can go to 10.7 (Lion).

  • How to pass query result from pop-up?

    Hi!
    First of all, sorry for my english, I hope you could
    understand me :-)
    I'm newbie in Flex, just started. I wrote main application
    with button
    "Login", and when I click on it I generate pop-up window witn
    my
    custom component "LoginForm". In this form I check in my
    MySQL
    database using PHP if the username and the password are
    correct.
    To this point it works.
    Now, I would like to pass the result (the query return full
    name of
    the users if it is correct) to the variable declared in main
    application:
    var person:Staff = new Staff();
    Staff is my class defined in separate file Staff.as with
    public
    variable full_name:String and public method
    setFullName(name:String);
    How to do that?
    Best regards,
    Mariusz

    There are several ways. One way is to use events. This
    example shows several *other* ways.
    http://www.cflex.net/showFileDetails.cfm?ObjectID=558
    Tracy

  • How to pass values to dashboard prompts from external applications

    Any idea is well appreciated.
    How can I pass values of dashboard prompts from external applications to the dashboard prompts so that the dashboard is prefiltered based on values sent by external applications.
    Thanks in Advance!
    Kris

    Kris,
    i am able to change the session variable and able to call the dashboard from external app, but i identified prompt value not changing. but Finally i am able to found a workaround for you.
    Use the following URL and it explained here
    http://localhost:9704/analytics/saw.dll?Dashboard&nquser=Administrator&nqpassword=Administrator&PortalPath=/shared/abcd/_portal/dash1&Options=rmf&DSN=madan
    PortalPath is your dashboard location. /shared/abcd is folder where i saved dashboards. dash1 is my dashboard name.
    internally this dashboard includes many reports that uses the session variable. after doing above this i am able to update the session variable to the value i have given in URL, DSN=value.
    You may observer here that calls the dashboard and passes the value but its not updating the prompt value. so workaround for this is edit your prompt,
    change the Default to - SQL Results and place the sql
    SELECT CASE WHEN 1=0 THEN Markets.Region ELSE VALUEOF(NQ_SESSION.DSN) END saw_0 FROM Paint
    again here Market.Region is column from presentation layer and Paint is subject area. After doing this step, your prompt always shows value in the session varible as default.
    Now include reports and dashboard prompt in the dashboard and run this url from external applicaitons.
    http://localhost:9704/analytics/saw.dll?Dashboard&nquser=Administrator&nqpassword=Administrator&PortalPath=/shared/abcd/_portal/dash1&Options=rmf&DSN=madan
    it worked for me and blog this soon. if it works for you mark the question as answered and mark my replies as correct.
    thanks
    - Madan

  • HT4910 hello i have installed icloud on my mac, ipad and iphone. but when i create a document on my mac it does not show up on Pages file in my Ipad/ How do i get it to go from one to the other? and how do i back up to icloud from my Mac

    Hello
    I have uploaded and installed ICLOUD to all three of my devices MAC, i pad nd Iphone.
    From Ipad to Iphone i am able to retrieve PAGES documents as i write them. BUT now that i am back home i see that none of the new documents i am working on which are stored on my desktop are showing up in my PAGES file on my Ipad or Phone.
    How do i save to icloud from mac, how come i can't retrieve docs from IPAD to MAC either?
    should i back up my mac ICLOUD FIRST? and if so, Where do i back it up from?
    going mad as i edit on one during the day and the other in the evening , and would like them to sync automatically
    please can you help
    thanks
    marellaopp

    SADLY  not as i downloaded an upgrad to my original PAGES/
    i have in the meantim had to open www.icloud. then from there import the file that i am working on and then check on ipad if it uploaded/ yes it did.
    but what a waste of time as it doesn not save any changes done automatically back in the cloud....
    i am now downloading the new LION and hope that it will fix the problem
    i cant find any other way. I was lead to believe that you wrote, it saved automatically, on to the cloud, you then opened anohter device in anotother country even, and the new file was there, waiting, in its latest version.......
    and the same magic was supposed to happen in reverse.
    It doesn't/
    if i have to open a browser, go to www.icloud....why on earth did they not just leave us an icon to drop it in in that case?
    I hope the new lion will help resolve the isssue/
    any other ideas> keep em coming...thank you so much.

  • How to use back to my mac from iOS?

    I have enabled back to my mac on my macbook running ML and have enabled the same for my user ID in the airport express router to which the macbook pro is connected.
    i would like t know how i can access the shared folder from my ios devices while
    within the wifi network
    outside the wifi network over the ios devices 3g internet.
    tried a lot to figure it out since many months now.
    Neerav

    Just some additional info.  For basic back to my mac to work you need a router (any brand) that supports UPNP or NAT-PMP - or an apple airport router device (Airport Extreme, Time Capsule or Airport Express) (which must be configured as your primary router - and not in "bridge" mode).  You need at least two Macs - one in your house - and one as the remote device.  You need to set up your iCloud id on both Macs and enable Back to My Mac in iCloud preferences - using the same icloud id for both Macs.  You also need to ensure that you have enabled at least "Screen Sharing" in the sharing preferences of both Macs - and optionally enable File Sharing.  You will see the Mac in the other Mac's shared pane - in Finder - both locally and remotely.
    If you are using an Apple router (airport extreme, express or time capsule) - the icloud id's that you enter on airport device (via airport utility) - are only for the purpose of remote sharing of drives and printers attached to that airport device - and are not related to the back to my mac functionality.  If you don't need to remote share the printers or drives directly attached to the airport device (via USB) - then you do not need to enter any iCloud id's on the airport device itself.
    For example - you have a time capsule set up as a router.  You have 3 people in your house that want to remotely access files on the Time Capsule's drive(s).  You would enter your iCloud id, along with the iCloud id's of other household members.  You would then all be able to independently share the time capsule drive remotely.
    With an Airport Express router - you would only be able to share a USB printer attached to the Airport Express.
    As for iPad - there may be 3rd party apps that would mimic the Back to My Mac functionality - but to the best of my knowledge there is no Apple-provided Back to My Mac app for the iPad.

  • How do I back up phone numbers from Nokia 6350 bef...

    I got so tired of my buggy Nokia 6350 that I went to my service provider's website (AT&T) and bought an iPhone 3GS. When it arrived I read the instructions, found some confusing directions there and am in the process of asking for clarifications in the AT&T discussion forum.
    The reason I'm posting here is that my brother, who works at a cell phone call center, advised me to back up all my phone numbers from the Nokia before attempting this flip phone to smart phone transition. I have a USB cord that connects the Nokia to my PC, but Windows XP tries to "install the new hardware" and looks for a CD. I never got a CD with the Nokia. And I can't use the Ovi suite because -- just my luck -- the 6350 is one of the minority of phones not compatible with the Ovi suite.
    How do I back up all phone numbers before I attempt to copy them to the iPhone 3GS?  I'm very frustrated..
    Solved!
    Go to Solution.

    Download the pc suite instead of ovi suite. U'll find it under the support page of ur phone on Nokia's site
    Please mark the post as solution if it solves your problem.
    Current Device - Nokia Lumia 1020/920

  • How to pass field symbol or table from one view to another view in abap web dynpro?

    I am creating an Inbound Outbound ALV report in ABAP Web Dynpro. However at selection-screen I have select options and fetching is done at view2. Problem is we can pass parameter using inbound outbound parameters but how to pass internal table or field-symbols from one view to another view? I made use of Assistance Class too but its not very clear to me. Please give me some example or code to sort this problem out.

    I am creating an Inbound Outbound ALV report in ABAP Web Dynpro. However at selection-screen I have select options and fetching is done at view2. Problem is we can pass parameter using inbound outbound parameters but how to pass internal table or field-symbols from one view to another view? I made use of Assistance Class too but its not very clear to me. Please give me some example or code to sort this problem out.

  • Aperture web gallery - how to link back to main page from iWeb?

    Okay, this may be simple, but I can't figure it out.
    I created and uploaded a few web pages with iWeb to my dot.Mac account (web.mac.com/f8lee50) just to get a feel for things. I then created a web gallery with Aperture and uploaded it - naturally Aperture generated a URL for the gallery, which I set up as a link on my "Photos from Hawaii" page (the link is the word 'this' in the second paragraph, if you wawnt to look).
    Okay, so this gets me from the "photos from Hawaii" page to the gallery, and within the gallery I can jump to the various images etc. But how does one navigate back to the "Photos from Hawaii" page from whence they came? Is there some sort of smart link that can be inserted (by Aperture?) that will send the viewer back to the main homepage? Or are the Aperture galleries essentially dead ends?

    Richard, thanks for responding - I'll check that tutorial.
    And thank you for the kind words, me100finn. I have not played with any variables as far as layout on the gallery (I did a bunch of stuff with the books, but the web gallery seems far less flexible) so I cannot answer your wuestion about the gray shadows.
    Steve, thank you for the additional clarification (and the hint about spaces in URLs) - I guess what this all boils down to is that the web galleries from Aperture are not all that useful when they are meant to be a part of a bigger overall site. I'm not sure of what you meant when you say they have little forward or backward navigation in them - at least you can click on a thumbnail to get to an image, click next or previous or the grid to get back to the thumbnail galery. But, 'twould seem that hand coding HTML pages (the very thing I was hoping to avoid) is the only way to really integrate them. Given that, I gues the better approach will be just to use iWeb to load the images anyway.
    Well, folks, thank you all for your answers. Until I do a re-do, I guess the back button is the way to go (which, for the record, I did sorta figure out myself

Maybe you are looking for

  • Reporting Agent and Process chain

    Hi All, We have requirement where every day we need to print some BW reports. For this we have created reporting agent. But when we execute reports manually through reporting agent it works fine. But if we include reporting agent in process chain it

  • I paid for Adobe Export PDF Annual, and now it's not in my account, where did it go?

    Server timed out at the point of accepting terms and conditions and went to a blank screen, when I pressd back it said terms & conditions could not be accepted at this time so I re-signed in, took me to the main page where it says "convert PDF to wor

  • How do I put a bookmark in a folder I created on the toolbar. Dragging does not work.

    I have created a folder on my toolbar but I can't drag bookmarks into it. Whenever I drag the bookmark and it looks like it will be placed in the folder the bookmark is simply repositioned. I've tried right clicking but there is nothing that shows up

  • Wrong distribution key in profit center planning 7KE1

    I have entered the profit center budget in Transaction 7KE1 for profit centet and account using appropriate profile and layout.  The distribution key appearing is "2" however the cost distribution is as per distribution key "1" (equal distribution). 

  • 4Gb Ram In MacBook Pro

    Hi Everyone I was searchinig for ram for MacBook Pro. I came accross this in the apple store online under ram - 15/17inch ram upgrade for macbook pro. 2Gb Ram