PR to PO creation drag & drop partner funtion not working.

Hi,
While creating the PO by using Drag & Drop function in ME21N, the partner function (PI,OA) of the vendor are not appering in P.O. Header except VN funtion. But if we created the P.O. Manually (with same PR) it is appering in P.O. I would like to know is this standard fuctionality of SAP or it has any patch/Note to correct it?

hi Jitendra Kinja
i am facing a simlar kind of issue in my SAP system , is there any workaround for this?pl let me know
thanks
Dkmurthy

Similar Messages

  • Drag/Drop inside SWFLoader not working

    I've got a Flex application that loads a secondary Flex app via SWFLoader. The secondary app uses drag/drop operations to rearrange components, delete them etc.  The secondary app works perfectly while it is running by itself (eg. not 'embedded' via SWFLoader into the main app).
    Once I load it into the main application using a SWFLoader drag/drop operations no longer work correctly. All other events seems to work fine. It is only drag/drop that don't always work right.
    Is there something I am missing that would cause this issue? I'm thinking there may be a property I need to set on the SWFLoader. Hopefully someone can help.

    Thanks Alex.
    I did as you say, and DragManager is in the report file in several places. Also, Drag/Drop does work inside of SWFLoader for the TileList in the loaded app, and even somtimes as it should as far as the drag/drop operation I am talking about, but not always.
    It seems to work sometimes and not others. When it does work it is not nearly as smooth as when I run the app as a "stand alone" and I never see the drag proxy while dragging inside of SWFLoader.
    Is there anything else that could be causing these issues? 

  • Reinstalling CS2, and dragging/dropping files does not work

    I have Photoshop CS2. Or at least I
    had it. I had updated my operating system to Tiger, and it just caused a bunch of files to change, nothing really bad. It gave me an error message upon opening photoshop that "files necessary for running Photoshop were missing from the Application Support folder"
    So I read the advice on this FAQ:
    Scott Weichert, "Double-click/Drag-&-drop Photoshop files opens application but not file or I get a message saying that some files in Application Support are missing and I have to reinstall. (Photoshop CS/CS2/CS3)" #, 29 Dec 2003 2:45 pm
    And did what it said. I trashed the CS2 folder, and now when I try to re-install it my serial number won't work. Is my $400 serial number now permanently registered on a nonexistent platform?
    As an active photographer and graphic artist, I need Photoshop constantly. So any advice would be greatly appreciated as soon as possible. Thank you.

    The problem you got into is a known problem after updating to Tiger. It is a small 4K file that gets trashed with the update. It is called the Adobe Unit Types. Both Photoshop and Photoshop Elements need this file to function.
    One way to get it back is to reinstall Photoshop, the other is to add this file again.
    You can get the file from here http://www.dd.se/Tips/bildbehandling/downloads/AdobeUnitTypes.zip
    It is only 3,7 KB big.
    You put the file you download here:
    [hard disk] /Library/ScriptingAdditions. If you don't have a Scripting Additions folder, you create it.
    As you trashed Photoshop, you need to completely deinstall it to be able to reinstall it.

  • MY DRAG & DROP JIGSAW STILL NOT WORKING!

    After 3 drag and drops of the puzzle i get this error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at MultimediaProducttest_fla::MainTimeline/dropIt()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at MultimediaProducttest_fla::MainTimeline/pickUp()
    ACTION SCRIPT 3!!! HELP PLEASEEEEEE!
    restbar_btn4.addEventListener(MouseEvent.CLICK, restbar4Clicked);
    museum_btn4.addEventListener(MouseEvent.CLICK, museum4Clicked);
    sark_btn4.addEventListener(MouseEvent.CLICK,sark4Clicked);
    market_btn4.addEventListener(MouseEvent.CLICK, market4Clicked);
    park_btn4.addEventListener(MouseEvent.CLICK, park4Clicked);
    function home4Clicked(event:MouseEvent):void {
        gotoAndPlay("Home");
        removeF();
    function removeF():void {
        pone_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        pone_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        ptwo_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        ptwo_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        pthree_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        pthree_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        pfour_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        pfour_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        pfive_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        pfive_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        psix_mc.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
        psix_mc.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
        removeChild(pone_mc);
        removeChild(ptwo_mc);
        removeChild(pthree_mc);
        removeChild(pfour_mc);
        removeChild(pfive_mc);
        removeChild(psix_mc);
        pone_mc=null;
        ptwo_mc=null;
        pthree_mc=null;
        pfour_mc=null;
        pfive_mc=null;
        psix_mc=null;
    function restbar4Clicked(event:MouseEvent):void {
        gotoAndPlay("Restaurant");
        removeF()
    function museum4Clicked(event:MouseEvent):void {
        gotoAndPlay("Museum");
        removeF();
    function market4Clicked(event:MouseEvent):void {
        gotoAndPlay("Market");
        removeF();
    function park4Clicked(event:MouseEvent):void {
        gotoAndPlay("Park");
        removeF();
    function sark4Clicked(event:MouseEvent):void {
        gotoAndPlay("Cutty");
        removeF();
    var startX:Number;
    var startY:Number;
    var counter:Number=0;
    pone_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    pone_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    ptwo_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    ptwo_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    pthree_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    pthree_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    pfour_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    pfour_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    pfive_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    pfive_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    psix_mc.addEventListener(MouseEvent.MOUSE_DOWN, pickUp);
    psix_mc.addEventListener(MouseEvent.MOUSE_UP, dropIt);
    function pickUp(event:MouseEvent):void {
        event.target.startDrag(true);
        feedback_txt.text="";
        event.target.parent.addChild(event.target);
        startX=event.target.x;
        startY=event.target.y;
    function dropIt(event:MouseEvent):void {
        event.target.stopDrag();
        var myTargetName:String="target"+event.target.name;
        var myTarget:DisplayObject=getChildByName(myTargetName);
        if (event.target.dropTarget!=null&&event.target.dropTarget.parent==myTar get) {
            feedback_txt.text="Good Job!";
            event.target.removeEventListener(MouseEvent.MOUSE_DOWN, pickUp);
            event.target.removeEventListener(MouseEvent.MOUSE_UP, dropIt);
            event.target.buttonMode=false;
            event.target.x=myTarget.x;
            event.target.y=myTarget.y;
            counter++;
        } else {
            feedback_txt.text="Try Again!";
            event.target.x=startX;
            event.target.y=startY;
        if (counter==6) {
            feedback_txt.text="Congratulations, you've finished!";
    pone_mc.buttonMode=true;
    ptwo_mc.buttonMode=true;
    pthree_mc.buttonMode=true;
    pfour_mc.buttonMode=true;
    pfive_mc.buttonMode=true;
    psix_mc.buttonMode=true;

    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is not in the display list
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).
    If you go into your Publish Settings Flash section and select the option to Permit debugging, your error message should have a line number following the frame number which will help you isolate which object is involved.

  • AICS4 drag/drop from finder not working

    so I'm a huge fan of dragging and dropping my images from the finder into an AI doc, but suddenly i can no longer do this. yes, all the layers are unlocked and visible, so it's not that. they're RGB images (jpgs, psds, mostly) and the document is RGB, so it's not that.
    did i accidentally hit a keystroke that would prevent this from happening properly? the ai doc window highlights when i drag over it, but then it just sort of twinkles and does nothing.
    i've restarted illustrator, still no go.
    any ideas?
    thank you,
    erika

    I can place the image the slow and boring way, one at a time. however, i cannot drag and drop from Bridge either.
    There's something up with the file. it works fine in a new file. what did I do?

  • Drag and drop feature is not working in Maverick?

    what can i do when the Drag and Drop feature is not working in my I Mac Using Maverick 10.9.4, it will not do it at all i must do copy and paste.
    reading from earlier forums this has been a problem in earlier versions for the mac.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Drop Down menus not working in newest Internet Explorer.

    Drop Down menus not working in newest Internet Explorer. Ant suggestions??

    <script language="JavaScript" src="mm_menu.js">
    Wait - are you using the long-discredited Macromedia "Popup menus"?
    I'm surprised those still work in any browser. You should read this about them -
    http://www.losingfight.com/blog/2006/08/page/3/
    It's illuminating....

  • Drop down menus not working in Firefox 24.0

    Drop down menus not working in Firefox 24.0 but they still work in Safari/IE/Chrome.
    http://www.horizonhomes-samui.com/
    I'm using Windows 8.

    OK
    Application Basics
    Name: Firefox
    Version: 24.0
    User Agent: Mozilla/5.0 (Windows NT 6.2; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0
    Extensions
    Name: Adobe Acrobat - Create PDF
    Version: 1.2
    Enabled: false
    ID: [email protected]
    Name: Wondershare Video Converter Ultimate
    Version: 6.0.0
    Enabled: false
    ID: {8D150B8F-EFE8-45a3-A4A3-053020F48FAC}
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.disk.smart_size_cached_value: 358400
    browser.places.smartBookmarksVersion: 4
    browser.startup.homepage_override.buildID: 20130910160258
    browser.startup.homepage_override.mstone: 24.0
    browser.urlbar.autocomplete.enabled: false
    extensions.lastAppVersion: 24.0
    gfx.direct3d.last_used_feature_level_idx: 0
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1382343540
    places.history.expiration.transient_current_max_pages: 104261
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    privacy.sanitize.migrateFx3Prefs: true
    storage.vacuum.last.index: 0
    storage.vacuum.last.places.sqlite: 1382343540
    Graphics
    Adapter Description: Intel(R) HD Graphics 3000
    Adapter Drivers: igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32
    Adapter RAM: Unknown
    Device ID: 0x0116
    DirectWrite Enabled: false (6.2.9200.16581)
    Driver Date: 7-31-2012
    Driver Version: 9.17.10.2828
    GPU #2 Active: false
    GPU Accelerated Windows: 0/1 Basic
    Vendor ID: 0x8086
    WebGL Renderer: Google Inc. -- ANGLE (Intel(R) HD Graphics 3000 Direct3D9Ex vs_3_0 ps_3_0)
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: none
    AzureFallbackCanvasBackend: cairo
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: true
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10
    Version in use: 4.10
    NSS
    Expected minimum version: 3.15.1 Basic ECC
    Version in use: 3.15.1 Basic ECC
    NSSSMIME
    Expected minimum version: 3.15.1 Basic ECC
    Version in use: 3.15.1 Basic ECC
    NSSSSL
    Expected minimum version: 3.15.1 Basic ECC
    Version in use: 3.15.1 Basic ECC
    NSSUTIL
    Expected minimum version: 3.15.1
    Version in use: 3.15.1

  • The itunes ogg drop X component not working

    Hi there,
    I installed the itunes ogg drop X component not working from Ogg Drop X 1.0b5 and rebooted.
    I still cant play ogg streams. they play fine in a VLC player so I know they work.
    any body get the Ogg Drop X 1.0b5 itunes component working. How do I get it goin'?
    Cheers

    no response.

  • I pad dropped...not work now.. can it be fixed or is it trash??

    I pad dropped...not work now.. can it be fixed or is it trash??

    Nobody on here knows what damage has been caused to the iPad. I don't know what country that you are in, but you could try going to an Apple store, or looking on this page for your country's service options : http://support.apple.com/kb/index?page=servicefaq&geo=United_States&product=ipad

  • In Oats Drag and Drop Api is not working in Firefox Browser

    To Write OAts test for Drag and Drop functionality
    we are using "dragTo" API.
    Ex :
    web.image("/web:window[@index='0' or @title='Fusion Applications']/web:document[@index='0' or @name='aqizmnwha_1']/web:img[@absoluteLocator='" + sourceIndex + "']")
                     .dragTo("/web:window[@index='0' or @title='Fusion Applications']/web:document[@index='0' or @name='aqizmnwha_1']/web:img[@absoluteLocator='" + targetIndex + "']");
    This Api is not working in firfox.(works in IE browser).
    Is there any other way we can test DnD functionality in firefox and IE?
    Thanks in Advance!
    Thanks,
    Siddi

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Drag&drop columns no longer works for selected columns in EA3

    Hi
    drag&drop from navigator to build select statements in EA3 uses all columns of the tabl instead of the selected ones!
    Best regards
    Joe

    It's working for me in our current dev build, if it's broken in EA3, it's since been fixed.

  • My drag and drop feature is not working

    How do I enable my drag and drop feature when it has stopped working?

    When you say it is frozen and not working... what exactly is happening when you try to drag a song to your Shuffle?
    CG

  • Drag and drop from Aperture not working?

    This sounds like a pretty stupid issue but... when I attempt to drag & drop an image from Aperture (to anywhere, e.g. desktop, iweb, mail) it usually doesn't let me. Some photos will drag out but most won't (Two pictures of the identical format and size - one will let me drag&drop it and the other won't), and the export feature takes forever. I tried making sure that aperture is maintaining the previews and that the file to export is half size but still not working... any ideas?

    Not stupid at all. That's a feature I use all the time and I'd be pretty PO'd if it wasn't working.
    Your profile doesn't indicate whether you're running Aperture 3.x or not. Did the problem appear after an update or has it always been that way on your installation?
    -Steve

  • Drag and Drop Feature is not working

    I have a mid 2012 MacBook Pro running 10.8.3 and all of a sudden the drag-and-drop feature isn't working. I was dragging photos from my job's website and adding them to a folder, but after about three photos in, it stopped working and no matter what I do it won't drop into the folder. How can I solve this?
    Thanks

    Can you drag anything into the folder, such as files from another folder?

Maybe you are looking for

  • Creation of material Documents for RMPM adjustments using BAPI

    Hi can any one help me Creation of material Documents for RMPM adjustments using BAPI... i should be grateful to you... advance thank you with regards venkat

  • Can 'GUI_UPLOAD'  to be used to upload excel file lonely?

    Hi experts, I wonder that can 'GUI_UPLOAD'  to be used to upload excel file lonely. I tried and use 'asc' as the L_FILETYPE, but the data uploaded contain many '###yyy'. But if I save the excel file as a txt file, the data can be uploaded by 'GUI_UPL

  • BW Table for crystal report runtime statistics

    Hi All ! I need to do some analysis on the runtime of crystal reports. Is there any table in BW side, that shows the statistics of executed crystal reports ?I want to see information like, start time, end time etc. Thanks in advance. Ozan

  • 8.1 Discover Image

    I am getting this error when trying to run my discover image in wds with 8.1 boot disk. Windows 8 works great. Windows 8.1 unicast works as well. an unknown command-line option [/wds /wdsdiscover /WdsServer:xxx] was specified

  • Capture all sql statements of a logical transaction

    Hi! How can i capture all sql statemnts of a logical trasaction(ALL sql stamtements before a commit) . Could somebody please reply... Thanks null