Why the PO action history is not updating when i perform the vacation rules

Hi,
Can any one explain why the action history is not updating when performed the vacation rules using the below example
Example: A >B>C>D are in the approval hierarchy here I have defined the vacation rules by login to the user C here I selected the item type as “All” and delegated to D.
Now the buyer “A” has sent the document for approval. The user “B” can successfully reserve funds and approved the document. Now the document is automatically delegated to D. Here D can open the document from open notifications and approved the document. Now when I checked the Action history here I cannot find the performed name D who has actually approved the document.
Note:we are using the 11.5.10.2 version.
The Action History in the following manner
Seq Action Performed By
================================
4 Approve C
3 Forward B
2 Reserved B
1 Forward A
0 Submit A
From the above action history why the user D name is not showing. Can any one let me know ASAP?
Regards,
Keivn.
Edited by: user10960960 on May 5, 2009 3:36 AM

When you set up the vacation rule, if you simply delegate the ownership to D, then C retains the ownership and the approval occurs with C's limits. And hence D is treated as the approver.
If you transfer the ownership, then C is out of the picture. The notification goes to D and when he/she approves, D's limits kick in and he will be seen as approver.
Hope this helps,
Sandeep Gandhi

Similar Messages

  • Why app store keep asking me to update when i deleted the app

    app store alert me to update the app ... i never use this app and i deleted the app...
    but app store still has the alert red sign on the app store ... why this is still on since i deleted the app?...
    i used cleanapp to remove the app ... is it the removal is not 100% or else?...
    please advise for a solution...
    thanks...

    You may have installed a hacked app, originally from the Mac App Store. It contains the receipt for a different app, downloaded using an account that you don't control. You need to identify and remove the hacked app.
    Important: The app you need to remove is not necessarily the one named in the App Store alert. For example, if the App Store says you need to update "Twitter," the hacked app may be "Angry Birds" or something else entirely. Don't make any assumptions about which app you're looking for. To find it, you have to carry out a systematic search.
    Triple-click anywhere in the line of text below on this page to select it:
    kMDItemAppStoreHasReceipt=1
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    In the Finder, press command-F to open a search window, or select
    File ▹ Find
    from the menu bar. In the search window, select
    Search: This Mac
    from the row of tokens below the toolbar. Below that is a popup menu initially showing Kind. From that menu, select  Other...
    A sheet will drop down. In that sheet, select Raw Query and click OK or press return.
    Now there will be a text box to the right of popup menu. Click in that box and paste (command-V).
    The search window will show all the App Store products you've installed. Compare those search results with the list of your purchases from the App Store. To see the complete list, you may need to unhide hidden purchases. If any apps were download from the App Store using other Apple ID accounts that you control, sign in to the store under each of those ID's and check the purchases.
    At least one of the items listed in the search window is not among your purchases in the App Store. Move each such item to the Trash. You may be prompted for your administrator password. Empty the Trash.
    Log out and log back in. Test.

  • All components not updating when I change the L&F

    I have developed a GUI and want Windows LookAndFeel for it. Please excuse me if I use some terms incorrectly. I'll explain my class structure first -
    1. class MainWindow - Contains the main method and invokes MainFrame
    2. class MainFrame - Creates the basic GUI and all the components and their event-handlers
    3.class MainPanel - Contains the actions to be taken in response to an event in MainFrame
    4. Dialog Boxes : Their are several classes implementing several dialog boxes which I load as needed.
    I have changed the L&F in the MainFrame class after all the MainFrame class components have been loaded. I have also used updateComponentTreeUI( ) to update all components already formed. I found out that not all components are having the Windows L&F when I tried out a JProgressBar. Instead of the green-broken progress indicator (Windows XP style), it was showing the gray-filled indicator (Java style). Then I noticed even the Menu Items are having the default L&F. Can anyone comment. Not giving any code because I am not sure which part of the huge GUI code should I post, i.e. where the problem really lies.

    You just said it doesn't work for a menu. So you
    create a frame with a menu and a menu item. About 10
    lines of code. Then you add two buttons one to switch
    to the Windows LAF the other to the Metal LAF.
    Another 10 lines of code. Now you have your demo
    program.No no, you din't get me. I know the basics regarding L&F. All the components are working fine, but that JProgressBar is not showing the XP view. Forget the JMenuItems, I am not sure the view is Windows L&F or Metal L&F, but I am sure the JProgressBar is not Windows L&F (while the rest of the components in the dialog box are perfect). Could this be due to something that I missed out while implementing the JProgressBar. But the Windows L&F is loaded before the dialog box containing the progress bar comes in. Your answer to my last Swing post helped me a lot. Hope you (or anyone else) can help me with this too

  • Why table getWidth and setWidth is not working when resize column the table

    hi all,
    i want to know why the setWidth is not working in the following code,
    try to uncomment the code in columnMarginChanged method and run it wont resize the table.
    i cont set width(using setWidth) of the other table column using getWidth of the main table column.
    and i want to resize the right side columns only (you can check when you resize the any column the left and right side columns also resizing)
    any suggestions could be helpful.
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTable;
    import javax.swing.SwingUtilities;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ListSelectionEvent;
    import javax.swing.event.TableColumnModelEvent;
    import javax.swing.event.TableColumnModelListener;
    import javax.swing.table.TableColumnModel;
    public class SynTableResize extends JFrame implements TableColumnModelListener, ActionListener
        JTable  table1       = new JTable(5, 5);
        JTable  table2       = new JTable(5, 5);
        JTable  table3       = new JTable(5, 5);
        JButton btn          = new JButton("refresh");
        JPanel  pnlcontainer = new JPanel();
        public SynTableResize()
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table3);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table1.getColumnModel().addColumnModelListener(this);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            btn.addActionListener(this);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            getContentPane().add(btn, BorderLayout.SOUTH);
            setSize(new Dimension(400, 400));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new SynTableResize();
        public void columnAdded(TableColumnModelEvent e)
        public void columnMarginChanged(ChangeEvent e)
            TableColumnModel tcm = table1.getColumnModel();
            int columns = tcm.getColumnCount();
            for (int i = 0; i < columns; i++)
                table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getWidth());
                // the following commented code wont work.
    //            table2.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table3.getColumnModel().getColumn(i).setPreferredWidth(tcm.getColumn(i).getPreferredWidth());
    //            table2.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
    //            table3.getColumnModel().getColumn(i).setWidth(tcm.getColumn(i).getWidth());
            SwingUtilities.invokeLater(new Runnable()
                public void run()
                    table2.revalidate();
                    table3.revalidate();
        public void columnMoved(TableColumnModelEvent e)
        public void columnRemoved(TableColumnModelEvent e)
        public void columnSelectionChanged(ListSelectionEvent e)
        public void actionPerformed(ActionEvent e)
            JTable table = new JTable(5, 5);
            table.setColumnModel(table1.getColumnModel());
            table.getColumnModel().addColumnModelListener(table1);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(table);
            pnlcontainer.validate();
            pnlcontainer.repaint();
    }thanks
    dayananda b v

    hi,
    thanks for your replay,
    yes i know that, you can check the following code it works fine.
    actually what i want is, when i resize table column it shold not automaticaly reszie when table resized and i dont want horizontal scroll bar, meaning that all table columns should resize with in the table size(say width 300)
    if i make table autoresize off than horizontal scroll bar will appear and the other columns moved and i want scroll to view other columns.
    please suggest me some way doing it, i tried with doLayout() no help,
    doLayout() method only can be used when table resizes. first off all i want to restrict table resizing with in the limited size
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.event.ChangeEvent;
    import javax.swing.table.TableColumnModel;
    public class TempSycnTable extends JFrame
        JTable  table1       = new JTable(5, 5);
        MyTable table2       = new MyTable(5, 5);
        MyTable table3       = new MyTable(5, 5);
        JPanel  pnlcontainer = new JPanel();
        public TempSycnTable()
            JScrollPane src2 = new JScrollPane(table2);
            JScrollPane src3 = new JScrollPane(table3);
    //        table1.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table2.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        table3.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    //        src2.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
    //        src3.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            table3.setColumnModel(table1.getColumnModel());
            table2.setColumnModel(table1.getColumnModel());
            table2.getColumnModel().addColumnModelListener(table1);
            table3.getColumnModel().addColumnModelListener(table1);
            table2.setTableHeader(null);
            table3.setTableHeader(null);
            setLayout(new BorderLayout());
            pnlcontainer.setLayout(new BoxLayout(pnlcontainer, BoxLayout.Y_AXIS));
            pnlcontainer.add(table1.getTableHeader());
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src2);
            pnlcontainer.add(Box.createVerticalStrut(5));
            pnlcontainer.add(src3);
            getContentPane().add(pnlcontainer, BorderLayout.CENTER);
            setSize(new Dimension(300, 300));
            setVisible(true);
            setDefaultCloseOperation(EXIT_ON_CLOSE);
        public static void main(String[] args)
            new TempSycnTable();
        class MyTable extends JTable
            public MyTable()
                super();
            public MyTable(int numRows, int numColumns)
                super(numRows, numColumns);
            public void columnMarginChanged(ChangeEvent event)
                final TableColumnModel eventModel = table1.getColumnModel();
                final TableColumnModel thisModel = getColumnModel();
                final int columnCount = eventModel.getColumnCount();
                for (int i = 0; i < columnCount; i++)
                    thisModel.getColumn(i).setWidth(eventModel.getColumn(i).getWidth());
                repaint();
    }thanks
    daya

  • How do I update my adobe flahplayer OS X 10.6.8?  It does not update when I install the update from the adobe site

    When I try to update my adobe flashplayer from the adobe website it does not show updated and I still get the error that my adobe is out of date.

    Try un-installing and then re-installing.
    Adobe Flash Uninstaller
    Adobe Flash Player

  • I have been organizing my bookmarks into folders. There are a bunch of bookmarks that appear on the Bookmarks Menu that do not appear when I used the Organize Bookmarks option. Therefore I can't organize them. How do I get at them and move them to folders

    I used Organize Bookmarks to put some bookmarks in folders. When I had done all the bookmarks that appeared outside of folders in the Organize Bookmarks window, I closed it and looked at my bookmarks menu. Under my folders were some other bookmarks that I hadn't seen in Organize Bookmarks and when I used it again, they still weren't visible. Therefore, I couldn't move them into folders.

    Update - I discovered that the entire list of bookmarks can be accessed in the Organize Bookmarks window by clicking on the icon for Bookmarks Menu.
    This seem like odd interface behaviour to me.
    All the other software I use follows the pattern that an icon with a triangle to the left, which you click on to expand the menu tree downwards, shows the entire contents of the category when you click on the triangle. In other words, you don't get a different response by clicking on the icon from what you get by clicking on the triangle.
    It also seems odd to me that when an unsorted bookmarks folder is automatically provided that unsorted bookmarks would not be placed there by default.
    Anyway, by getting the list of bookmarks displayed this way I was able to simply right-click on items in the list and delete them, as I thought I should be able to do. Problem solved. Organize Bookmarks interface found to be somewhat unintuitive.

  • Why does my hp probook 6540b not displaying when i insert the hard drive?

    Display problem when hard disk is inserted

    Hello amir642
    Thanks for posting on the HP Forums!
    I understand you are experiencing an issue with your notebook. However, since this is a commercial notebook, you should post your issue on the notebook board of the HP Enterprise Forums for a better answer.
    Have a wonderful day!
    Mario
    I worked on behalf of HP.

  • Purchase Order history is not updated with Invoice number

    Hello Experts ,
    Please suggest some inputs/solution for my problem.
    Scenarios is :
    PO --> SO --> Invoice
    I am creating the invoice with the medium EDI , when I click on Save button IDOC is generated with the message " IDoc 'xxxxxxxxxxxxx' was created and forwarded for transmission " and it showing the status as 03 i.e, The IDoc was sent to an R/3 System or an external program via a transactional RFC ...but the problem is if I got to the Purchase Order history Its not updated with the Invoice number.
    What could be the problem , please suggest.

    Hi!
    I'm not sure, in which process you link PO and SO. There are some different ways, which are totally different scenarios - if you need help here, describe more detailed.
    Your invoice is probably only created with reference to SO, so check the invoice itself. In this case also the SO history should include the invoice.
    Regards,
    Christian

  • Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    I have been a happy user of Firefox for many years. Around last April first I opened Firefox and was offered an update to v 4.42.0.0 which I accepted. Installation seemingly went well. I forget now exactly what happened but the result has been that ever since April 1 I haven’t been able to open the Firefox browser when clicking on the Firefox icon. My computer now was running very slowly. I tried to uninstall Firefox, but a popup told me I couldn’t because Firefox was in use. This confused me because I couldn’t see it being used. Only now I have found that on Task Manager processes that “firefox.exe” was consuming 99 % of the CPU. After removing firefox.exe by clicking End Process my computer ran better. I uninstalled Firefox I had on my computer and installed Firefox 5.0. Unfortunately I have the same problems: Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    Born2die! Brilliant. I am a desktop clicker and never knew Firefox had a safe mode.
    Thank You!
    I was unable to start in safe mode initially. The second time I disabled all of the Add-Ons and she started up just fine. I enabled them one by one hoping to track down the culprit but the problem seems to have gone away.
    BTW I am running ver. 3.6.8 (in response to cor-el's earlier post) and
    Firefox is in the process of downloading 3.6.10 (which I am starting to think may have been what caused this whole problem to begin with)
    Incidentally, whats up with all of the Java Console Add Ons?
    I have:
    Java Console 6.0.11, Java Console 6.0.13, Java Console 6.0.15
    Java Console 6.0.17, Java Console 6.0.20, and Java Console 6.0.21
    What are they? Do I need them? Can I uninstall them? Is this due to using Open Office?
    Also, .NET Framework 0.0.0 Should I uninstall it?

  • When I try and play music on my iPhone downloaded from iTunes it says 'this URL is not found on this server'. This does not happen when I play the same music through my iPad. Can anyone help?

    When I try to play music downloaded from itunes on my iPhone 4S it says 'this URL is not found on the server'. This does not happen when I play the same music on my iPad. The music plays fine. The message also comes up when I try and login to iTunes on my iMac. Can anyone help?

    I too am having the same issue as the OP.
    Your USER AGENT information is Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_2) AppleWebKit/600.3.18 (KHTML, like Gecko) Version/8.0.3 Safari/600.3.18
    Every webserver that receives a request from your browser is able to determine the HTTP USER AGENT information unless it has been removed by some software (e.g. firewall) before the request was trasmitted.

  • I have comcast email why is it not automatically updating on my phone and alerting me I received an email?  It only updates when I open the email folder.

    I have comcast email why is it not automatically updating on my phone and alerting me I received an email?  It only updates when I open the email folder.

    So I will just have to keep checking my mail folder?  That's crazy, I did not have a problem with my Android. Is there a way to get around this?  I have been waiting on an email alert and I keep forgetting to check my mail folder, this is very frustrating.
    Thank you for your help

  • I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    I've just started using the App Tabs. I think this feature could be handy but why are the sites not updated when I start Firefox. Now I have to manually update the site which is somewhat of a downer. Does any of you know where I'm going wrong?

    To answer the post title FireFox save all downloads automatically in the download folder, which you can find in the Documents folder. If you want to choose where to save your downloads go to tools>options>check always ask me where to save files.
    Secondly, I am assuming you have IE 8 installed as this is the only version that supports this fix that is currently not in beta. Go to control panel>internet options>advanced tab and reset the settings at the bottom. This may or may not fix the problem but it is a good first step.

  • Why apple was not update facetime call over the cellular for iPhone 4?????

    why apple was not update facetime call over the cellular for iPhone 4?????

    Facetime will not use the cellular network (if using AT&T) for the iphone 4, 4S or 5 unless you have signed up for ATT's new data share plan. They stated this several weeks ago when there was talk about Iphone5/IOS 6 and Facetime. Your carrier is the one that decides if Facetime will work over the cellular network or not. You might want to contact them. Your other option is to continue using it via wi-fi.

  • When i try to update OS it's showing this message why? This Apple ID has not yet been used with the App Store.

    when i try to update OS it's showing this message why? This Apple ID has not yet been used with the App Store.

    Hello Daijalove97,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Using an existing Apple ID with the iTunes Store and Mac App Store
    http://support.apple.com/kb/HT2589
    To use your Apple ID at the iTunes Store
    Open the latest version of iTunes.
    Choose Store > Sign In from the Store menu.
    Enter your Apple ID and password, then click Sign In.
    Click Review when asked to review your information.
    Enter your billing information, a credit card will be required.
    Click Continue when you're done entering your credit card and billing information.
    Best of luck,
    Mario

  • Custom PSE5 actions not alphabetical when displayed in the pallette.

    I’m not getting much input (1 response) on the WINE forums for this so I thought I’d try here on the Arch forums.  The PC having issues is currently running Arch 2.6.38 x86_64 version, and the Wine version is 1.3.17.  I’d just updated the system before installing PhotoShop Elements and discovering the issues below so I don’t know if things would have “worked” before the update, though I would guess not.
    Problem:
    I am trying to migrate my wife's PC to Linux and doing that requires she retain access to PSE5 (Photoshop Elements 5) so using another program, like GIMP, is unfortunately not an option. PSE5 installed and starts flawlessly and all the generic actions that came preinstalled with it seem to be fine. However I have a few folders with custom actions that are “loosing” the alphabetical sort when Photoshop builds the Artwork and actions databases when PSE5 is started. If I use the file manager to browse to the folder everything looks as it should. However when PSE5 starts and we use the Artwork pallete to navigate to the Photo Effects folder the actions are displayed in jumbled order and the thumbnail images are in an even different order so nothing is sorted and nothing matches.  I'd really like to fix the issue so I can get everything to be in the proper order with matching icons without manual intervention because I'll have to redo everything with every new custom action my wife decides she needs.
    Affected folder:
    ~/.wine/drive_c/users/Public/Application Data/Adobe/Photoshop Elements/5.0/Photo Creations/special effects/photo effects/CoffeShop Actions
    Unaffected folders:
    ~/.wine/drive_c/users/Public/Application Data/Adobe/Photoshop Elements/5.0/Photo Creations/special effects/photo effects/frames
    ~/.wine/drive_c/users/Public/Application Data/Adobe/Photoshop Elements/5.0/Photo Creations/special effects/photo effects/image effects
    Equivalent Window XP path of affected folder:
    C:\Documents and Settings\All Users\Application Data\Adobe\Photoshop Elements\5.0\Photo Creations\special effects\photo effects\CoffeeShop Actions
    Here are a few of the 23 total actions in the affected folder and where they fall in the displayed order. As I said above I've tried renaming them in various ways and while it will change the order it never fixes it to be correct, alphabetically. I can provide a few more, or even the full list if needed but this short list will at least highlight the problem.
    CoffeeShop Baby PowderRoom.atn - should be 1st but is displayed 6th
    CoffeeShop Moody Pop.atn - should be 10th but is displayed 1st
    CoffeeShop Vintage Blush.atn – should be 20th but is displayed 5th
    CoffeeShop Eye Bright.atn – should be 5th but is displayed 11th.
    Also here are a few cropped down images of the palette window area showing the menu that's borked and ones that work. I am hopeful this will help my explanation of the problem.
    This first image is just to show the menu's how's these actions are accessed. (Note it also happens to be the actions that are not sorting properly.)
    This image shows default actions that were loaded with PSE5 and the proper display sorting. Note the cursor is being held over the middle action icon to show the tool tip that pops up matches the action name under the icon and the icon shows the correct image for the action.
    This next image shows the unsorted data being discussed. I am holding the cursor over the top left-most icon and the tool tip matches the text at the bottom but the icon is for some Baby Powder effect thing. If you look through what's visible you will see that the icons are being loaded in correct alphabetical order but the actual action files are not.
    Wine from the terminal doesn't seem to complain about anything different with the custom actions folder there or removed but I'm not sure I'd recognize something that could specifically be attributed to this issue and these aren't really “folders to be accessed” in the typical sense. These are action files that do specific things to an image, in this case effects like making the affected image look B&W, give it a golden hue or make it look like a vintage photograph. These are all based on a Media database that is built when PSE starts and used via drop-down boxes in the pallete window. These action files are placed in folders and when PSE launches it reads them looking for new media and if there rebuilds the appropriate database files. Its the database files that are then drawn from to build the pallete menu's. At least that's my understanding of what happens.
    I've checked the thumbs.psd stack and the images are properly ordered alphabetically from bottom to top. I tried changing the order of 6 of the images in the stack to match the order the actions in the pallete window and that worked on those I tested to get the images to match the actions, however the order of the actions in the pallette window is still wonky. I also tried renaming the action files to get rid of spaces, exchange the spaces for an underscore “_”, remove extra words/letters and though sometimes the display order would change it still wouldn't be alphabetical as expected. I've also tried multiple copy/pastes of the folder and even just the files within as well as multiple deletes and rebuilds of the Media and Thumbs databases.
    It was suggested on the WINE forums where I’ve only gotten that single response that I “cd” into the affected folder and then “ls –al” to see if the files look proper.  I did so and everything looks as expected, I also checked those folders where actions are displayed properly and the permissions are the same in all folders and the order in each case alphabetical, in the folder. Yes the action files all work each doing what it is supposed to do but as you can see from my initial post the order in which the actions are displayed are grossly out of any logical sort.
    Please note this all works as expected if I boot the machine into XP so I know all the files are capable of functioning as intended. Also note there are numerous other custom actions in various other paths that are displayed in alphabetical order as expected so it's not a global problem with actions. I'm thinking the problem is in how PSE is building the MediaDatabase.db3 and ThumbDatabase.db3 files when it is launched but why these specific actions are affected is what I'm stumped on. Since I know this is occurring in a few other folders, though not all, I am hoping there is a single fix to the problem.
    Thanks.
    As an aside; what really adds insult to injury in all this is that PSE5 normally takes 2-4 minutes to launch when booted into XP Home but will launch in about 30-45 seconds using WINE. This PC is running a C2D 6420 @ 3.2Ghz with 4Gb of RAM (4x1Gb of DDR2 800) so it's shouldn't be a hardware issue that's causing the slow load time in XP.
    Edited because I accidentally clicked Submit too soon.
    Last edited by imatechguy (2011-04-15 18:48:19)

    Sudheer a  ,
    hello as far as i have understood your problem ,
    you must have written a logic in the PAI modules when you create a NEW po but when you create with refrence to your existing you need to fethc the Custom TAB fields in the PBO ( Hope in your case they are they are z fields) of your PO
    if you are implimenting  EXIT use the POB module to populate the fields on the customer tab in your screen fields ...!
    Hope my explanation solves your problem

Maybe you are looking for

  • OSD to Dell Venue 11 pro 5130 tablet

    Hi, I am setting up a deployment of Windows 8.1 x64 to Dell Venue 11 pro 5130 tablets from SCCM 2012 R2. I am docking the tablet and using the dock USB port to boot from a USB stick into the SCCM Boot Image. the image loads and allows me to select th

  • Importing .avi DV movies captured on PC using winDV failed!

    I just thought i'd have a go at creating a video out of the footage that i shot at christmas this year. My PC has the most hdd space and so i imported it over firewire using winDV. This has made a set of .avi files with the dv codec inside. Importing

  • Can't download itunes on widows 8 pc., can't download itunes on widows 8 pc.

    I have been trying to download Itunes on my new windows 8 computer since yesterday but it does nothing. It doesn't even open a download window. It goes to the download page you press download then nothing. I have no idea what is going on. I thought i

  • Lumia 620 loudspeaker hissing

    My brand new Lumia 620's loudspeaker produces a hissing sound whenever an audio clip is played. This can be noticed at the end of the screen lock sound as well as in the background of every single music track The hiss's intensity does not change when

  • Time Machine stops backup before finished

    Time Machine has stopped backing up automatically. On manual backups, it stops after backing up only part of my data. I have since reformatted my backup disk and reconfigured Time Machine, but it still does not complete the backup HELP!!!!