Issue with US overpayment Recory program RPCLMRU0_CE.

Hi,
I'm working on the US overpayment Recory program RPCLMRU0_CE. I have a Scenario where if there is any overpayment shown in the technical wagetype /580 then i need to split the same in 3 and create the entries for the same in 0909 infotype.
These inslatments will be recoverd in Consecutive payrolls.
Ex. If overpayment found pay period 201104 is 3000 than Overpayment amount need to divided into 3 and from next payperiod i.e 201105 to 201107 the 1000 to be deducted.
For this i have created the 3 entries in IT0909 infotype with for for period as 201104 and inperiod as 201105, 201106 & 201107 for each entry.
Now my issue is - Overpayment Amount & Remaining amounts are not populated for 2 & 3 record i.e.201106 & 201107.
And when i run the payroll for 201105 wage type /581 is not getting updated with the amount 1000 which was created in IT0909.
Kindly help in resolving this.
Thanks
Avinash K

Hi
Hope you are doing fine.
I am looking for some documentation on SAP Overpayment recovery.
Please email it to me at [email protected]
Thanks in anticipation

Similar Messages

  • Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Our software vendor tells to use FF 3.5.1. because of some printer issues with their web based program. How safe is it to work with FF 3.5.1 in 2012?

    Thanks for the reply. I'll have a look at your solution.

  • I got the following for Adobe Reader that there was an issue with it. C:\Program Files (x86)\Adobe\Reader 11.0\Reader\NPSWF32.dll file How do I fix this? Thanks.

    How can I fix this problem. I got the following for Adobe Reader that there was an issue with it.  C:\Program Files (x86)\Adobe\Reader 11.0\Reader\NPSWF32.dll file

    Try uninstalling using http://labs.adobe.com/downloads/acrobatcleaner.html then reinstall.

  • Issue with a "perform in program" call.

    I am trying to do a call to a form in a zprogram. This call is being done inside an enhancement.  The reason for this is because I can't delcare forms in the enhancement.  Below is the issue:
    The parameters I am trying to pass are typed as follows (in the SAP enhancement - SAP code):
    types: begin of mrm_rbkpv.
            include structure rbkp_v.
    types: begin of mmcr_drseg.
            include structure drseg.
    types: mmcr_tdrseg type mmcr_drseg occurs 0.
    I have the following as the call to the form and the form declaration:
    PERFORM cancel_ret IN PROGRAM zcancel_retention USING e_trbkpv e_tdrseg[].
    FORM cancel_ret  USING p_tdrseg TYPE rbkp_v
                          it_tdrseG TYPE J_1IDRSEG.
    I am getting a run-time error saying:
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_TYPE', was
         not caught in
        procedure "EXIT_SAPLMRMP_010" "(FUNCTION)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        Call to FORM "CANCEL_RET" is incorrect:
        The actual parameter no. 1 has a different data type in the
        PERFORM than requested for the FORM "CANCEL_RET" in program
         "ZCANCEL_RETENTION".
    This is telling me that the system doesn't see  e_trbkpv being the same type as  p_tdrseg.  However, I can't see why they aren't the same time.  I also assume I will have the issue with the second parameter.  The table type (in my opinion) J_1IDRSEG should be the same type as mmcr_drseg.
    Any ideas?  The enhancement I am using is EXIT_SAPLMRMP_010 (LMR1M001).
    Regards,
    Aaron
    Edited by: Aaron Shover on Apr 11, 2009 7:21 PM

    >
    Aaron Shover wrote:
    > OK, Aditya, I added another type pool to my program and I can now use the same type that SAP is using.
    >
    > Thanks for pointing out the [obvious] solution that I was overlooking!
    >
    > Aaron
    Aaron, I was not aware of the type pools as mentioned I don't have access to the system at the moment. But type pool has type declarations as well, so what I meant was pulling out the 2 declarations that you need into your Z program could have solved the problem :). Which will happen now since you've included the type pools.
    Anyways good to know that you problem is solved.
    Cheers,
    Advait

  • Issues with restarting after a program crash- please help

    Two questions regarding restarting after a program has crashed on Leopard.
    1. I had an issue where Parallels crashed and I had to restart. When restarting, the dock closes and it goes to a point where there is a circle timer. This does not stop and an error comes up stating that I need to hit the power button. Is this "normal" after a program crash and restarting? On a side note, I couldn't close the program with Force Quit. This seems to be happening often.
    2. How often does it occur for you where a program will not close with Force Quit? I've had Parallels crash and some other programs. When this happens, Force Quit doesn't do anything. Any other options?
    Thanks for your help.

    You should check your startup drive as a starting point, if programs are crashing regularly. That's obviously not "normal." Run +Repair Disk Permissions+ in Disk Utility while started up normally. Then, start up from another disc and run Disk Utility to use the +Repair Disk+ on the startup drive, to look for disk directory issues (you can startup from the Mac OS X installation disc to run Disk Utility).
    When this happens, Force Quit doesn't do anything. Any other options?
    You can start the Activity Monitor program and quit processes that look relevant to the app. Sometimes, force quit does not work to quit an app because an underlying process keeps running. Sometimes, the Mac is not able to restart or shutdown normally because an app refuses to quit, due to this problem. It is often difficult to know if you should kill a process, so after doing it to make an app quit, it would be a good idea to restart.

  • Multithreading issue with Client/Server chat program

    In a nutshell, I just recently starting attempting to use Sockets and decided I wanted to give a go at a chat program. I have some experience with threads but I know little about how to find and fix multithreading issues. I think this is my problem right now since I am deadlocking while connecting and disconnecting client-side ... and updates about connection status of a client are not always displaying correctly server-side.
    [ Code Snippet|http://snipplr.com/view/15206/clientserver-chat-program/]
    Thanks for the help

    NOTE: all catch clauses have been omitted for clarity. They all just perform System.err.println() with the msg embedded
    Very valid point. I cut out the GUIs and just tried having the Server/Client communicate. I am still having concurrency issues. This is my first attempt at synchronized methods and locking objects so go easy on me if I did something(s) noob =D
    public class MySocket
        public static final String QUIT = "~~QUIT~~";
        private ObjectOutputStream out;
        private ObjectInputStream in;
        private Socket conn;
        public MySocket(String ip)
            obsList = new ArrayList<IClientObs>();
            try
                conn = new Socket(ip, 5000);
                if (conn.isConnected())
                    out = new ObjectOutputStream(conn.getOutputStream());
                    in = new ObjectInputStream(conn.getInputStream());
        public synchronized String nextMsg()
            String msg = "";
            try
                synchronized(in)
                    msg = (String)in.readObject();
                    notify(msg);
            return(msg);
        public synchronized boolean sendMsg(String msg)
            boolean sentMsg = false;
            try
                synchronized(out)
                    if (out != null)
                        out.writeObject(msg);
                        out.flush();
                        sentMsg = true;
            return(sentMsg);
        public synchronized void closeConn()
            try
                synchronized(this)
                    sendMsg(QUIT);
                    conn.close();
                    out.close();
                    in.close();
        public synchronized Socket getConn()
            return(conn);
        public synchronized ObjectOutputStream getOutStream()
            return(out);
        public synchronized ObjectInputStream getInStream()
            return(in);
       //Observer Pattern implemented below   
    public class Server extends Thread
        public static final int MAX_CLIENTS = 2;
        public static final String QUIT = "~~QUIT~~";
        private ServerSocket server;
        private ArrayList<ConnClient> conns;
        private int connCount;
         * Constructor for objects of class Server
        public Server()
            conns = new ArrayList<ConnClient>();
            obsList = new ArrayList<IServerObs>();
            connCount = 0;
        public void startNow()
            this.start();
        public void run()
            runServer();
        public synchronized void runServer()
            try
                setup();
                while (true)
                    waitForConn();
                    processComms();
        private synchronized void setup() throws IOException
            server = new ServerSocket(5000);
            notify("Server initialized.\n");
        private synchronized void waitForConn() throws IOException
            if (connCount < MAX_CLIENTS)
                notify("Waiting for connection...\n");
                Socket conn = server.accept();
                if (conn.isConnected())
                    conns.add(new ConnClient(conn));
                    notify("Client connected @ '" + conns.get(connCount).getIP() + "'.\n");
                    connCount++;
            else
                notify("Connection request rejected; max connections have been reached.\n");
        private synchronized void processComms() throws IOException, ClassNotFoundException
            //Receive any msgs sent by clients and forward msg to all clients
            for(ConnClient rcvClient : conns)
                String msg = rcvClient.nextMsg();
                //if client quit, then close connection and remove it from list
                if (msg.equals(QUIT))
                    notify("Client disconnected @ '" + rcvClient.getIP() + "'.\n");
                    rcvClient.closeConn();
                    conns.remove(rcvClient);
                    connCount--;
                else
                    for(ConnClient sndClient : conns)
                        sndClient.sendMsg(msg);
        public synchronized void shutdown()
            try
                server.close();
                for(ConnClient client :conns)
                    client.closeConn();
       //Observer Pattern implemented below
    }I also found another issue that I haven't thought up a way to deal with yet. When the user starts the program the follow line is executed "conn = server.accept();" which halts execution
    on that thread until a connection is established. What if the user wants to stop the server before a connection is made? The thread keeps running, waiting for a connection. How do I kill this thread?
    On this last issue (I figured by adding the follow code to my action listener inside of my server gui I could stop the thread safely but it's no good so far)
    public void actionPerformed(ActionEvent e)
            Object src = e.getSource();
            if (src == strBtn)
                if (server == null)
                    strBtn.setEnabled(false);
                    stpBtn.setEnabled(true);
                    server = new Server();
                    server.addObserver(this);
                    server.start();
                else
                    console.append("Console: Server is alread initiated.\n");
            else if (src == stpBtn)
                synchronized(server)
                strBtn.setEnabled(true);
                stpBtn.setEnabled(false);
                server.shutdown();
                server = null;
                console.append("Console: Server has been stopped.\n");
        }Edited by: mcox05 on May 21, 2009 10:05 AM
    Edited by: mcox05 on May 21, 2009 10:17 AM
    Edited by: mcox05 on May 21, 2009 10:58 AM
    Edited by: mcox05 on May 21, 2009 11:01 AM
    Edited by: mcox05 on May 21, 2009 11:03 AM
    Edited by: mcox05 on May 21, 2009 11:03 AM

  • Having issue with a Sum/Average program

    The issue I get when I run the command is, let's say I enter 4 numbers, 5, 7, 9, 16 then enter a 0 to end the count, the avg it gives me is 8.0 instead of the 9.25 it should be. Any insight would be greatly appreciated.
    import java.util.Scanner;
    public class StephenVanoverSumAverage
        public static void main(String[] args)
              Scanner keyboard = new Scanner(System.in);
            double count = 0.0;      
            double sum = 0.0;   
              double num;
            System.out.println("Enter a number (Type 0 to quit): ");
              num = keyboard.nextInt();
            while ( num !=0 )
                   System.out.println("Enter a number (Type 0 to quit): ");
                   num = keyboard.nextInt();
                sum += num;
                count++;
            double average = sum / count;
            System.out.printf("Average is " + average);
    }

    Not quite, since the first number is discarded. The zero is included in the sum, but the first number entered is not. The count is incremented for the zero, true, but I think that is not the problem.
    Still, the code could be cleaner with respect to both when the count is incremented, and what numbers are included in the sum.
    {?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Issue with Document Parking  - Uplaod program

    Dear All,
    We need to develop a program to enter FI documents in parked status as a bulk upload.
    We have two problems that we are unable to address
    1We have activated five COPA fields which does not get captured in the standard BAPI.- how can we populate these fields?
    2 The standard BAPI for document parking  does not validate the required fields. However, the requirement is to validate and park a complete document. we are trying to  do a validation by checking with the Standard Filed Status group , for which we were not able to find the table for fields that are assigned to the field status group.
    Please help us and do let us know if there is any other way that we can validate and populate all required fields.
    Thank you
    Waruna

    Hi,
    Please refer this link :
    How to interpret T004F field status assignments
    & revert back.
    Regards,
    Pramitha.

  • Are others having issues with downloading purchased TV programs after updating to IOS 7.1.2?

    I have tried to download 3 purchased tv series this morning.  They each get to about 1 minute remaining and then start over again.  I recently updated to IOS 7.1.2 on my iPad.  Is this the reason I'm having this issue?

    these two images may help clarify the issue..
    This image shows my email accounts added on my phone in settings
    http://i199.photobucket.com/albums/aa243/toffeecreme/image1_zpsc16e1069.png
    This image shows email accounts visible in the mailbox (Live account is visible, however this one usually disappears too)
    http://i199.photobucket.com/albums/aa243/toffeecreme/image_zps1a92804a.png

  • Is my issue with Final Cut Pro or my Macbook pro?

    I'm going to try to be as thorough as possible in explaining my situation because I can't figure this problem out and it's exhausting me. I have an early 2011 macbook pro with the 2.2 ghz processor. I upgraded to 16gb of ram almost a year ago. I've been using Final Cut Pro 7 on this computer for several years now without issue and have made no setting changes that would prompt my problems. A few months ago my battery decided to stop holding a charge and now just registers 0%. Around the same time, while editing a short video my computer began behaving like it was overheating. It would crash, restart, crash and then restart again. After I did a disk and permissions repair it began to work normally again and I haven't had any more crashing issues. Around this period of time I began noticing that when my computer turns on it doesn't register the correct time and date. Given a few moments it corrects itself, but for some strange reason it was doing that every time.
    Anyway, around that time I tried to upgrade to Mavericks and experienced an issue during installation because my hard drive was apparently damaged in some way and the installation couldn't be completed. I restored my previous OS and tried to carry on as I was with the damaged hard drive for as long as I could. I was still able to do everything I needed on the computer. I could still edit videos with Final Cut. I could still browse the internet. I could still stream Netflix.
    About a month ago Final Cut stopped working. I could open the program, start a new project and import media files, but when I dragged them into the timeline, they just stuttered (audio would play but video would lag and then jump several frames then lag and jump frames). At the time I assumed this was because my hard drive finally gave up, but I was still able to do other functions like browse the internet and stream basketball games with nba league pass (granted they weren't crisp hd - on a side note, netflix was also behaving oddly. when I would browse through my list, it wouldn't stop scrolling when I moved the mouse away.) so I assumed the hard drive was my issue.
    I just replaced my hard drive with an ssd (crucial m500) and upgraded to mavericks (10.9.1) and now I am having the same issues. Netflix behaves fine. Basketball games stream fine. My battery is still dead (obviously that wasn't going to change). I get the wrong date and time for a minute, but I'm thinking that's battery related now. But Final Cut still lags to the point where I can't use it. Video clips also won't render. I thought this might be an issue with the Final Cut program so I uninstalled it and reinstalled it, but it still did the same thing. Assuming I hadn't correctly/completely uninstalled it, I downloaded HitFilm 2 (an editing program that had a free download promotion at the time), figuring using a different program, if i could edit video with it, then my issue is with Final Cut and not my computer. Unfortunaely, I'm having the same lagging issues with HitFilm as I was with Final Cut.
    I'm at a loss as to what the problem is. Sorry if this was a rambling post, but I wanted to get as much of the background out there as possible, should it provides anyone with a clue as to what is the issue here. Does anyone have any idea what could be at fault here? I'm stumped.

    Hardware Information:
              MacBook Pro (15-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,2
              1 2.2 GHz Intel Core i7 CPU: 4 cores
              16 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 512 MB
              AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 5 days 3:30:18
    Disk Information:
              Crucial_CT480M500SSD1 disk0 : (480.1 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        SSD (disk0s2) /: 479.11 GB (235.88 GB free)
                        Recovery HD (disk0s3) <not mounted>: 784.2 MB
              MATSHITADVD-R   UJ-898 
    USB Information:
              Apple Computer, Inc. IR Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.bombich.ccc.plist 3rd-Party support link
    Launch Agents:
    User Launch Agents:
              [not loaded] com.divx.agent.postinstall.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              Dropbox
              WDQuickView
    Internet Plug-ins:
              FlashPlayer-10.6: Version: 12.0.0.44 - SDK 10.6 3rd-Party support link
              OVSHelper: Version: 1.1 3rd-Party support link
              Flash Player: Version: 12.0.0.44 - SDK 10.6 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              DivXBrowserPlugin: Version: 2.2 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Silverlight: Version: 5.1.10411.0 - SDK 10.6 3rd-Party support link
              iPhotoPhotocast: Version: 7.0 - SDK 10.8
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    3rd Party Preference Panes:
              DivX  3rd-Party support link
              Flash Player  3rd-Party support link
    Bad Fonts:
              None
    Old Applications:
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              WFTPairing:          Version:  - SDK 10.4 3rd-Party support link
                        /Applications/Canon Utilities/EOS Utility/WFTPairing.app
              Nisus Thesaurus:          Version: 1.1 - SDK 10.4 3rd-Party support link
    Time Machine:
              Skip System Files: NO
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        Time Machine Backups [Local] (Last used)
                        Total size: 931.16 GB
                        Total number of backups: 2
                        Oldest backup: 2013-04-15 00:34:39 +0000
                        Last backup: 2014-01-22 03:55:49 +0000
                        Size of backup disk: Excellent
                                  Backup size 931.16 GB > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   4%          WindowServer
                   3%          EtreCheck
                   0%          ps
                   0%          aosnotifyd
    Top Processes by Memory:
              180 MB          Safari
              164 MB          Finder
              164 MB          com.apple.IconServicesAgent
              115 MB          PluginProcess
              105 MB          com.apple.WebKit.WebContent
    Virtual Memory Information:
              11.22 GB          Free RAM
              2.77 GB          Active RAM
              296 MB          Inactive RAM
              1.71 GB          Wired RAM
              782 MB          Page-ins
              0 B          Page-outs

  • Issues with Adobe Flash Professional CS6

    I have been using Adobe Flash Professional CS6 and have had a few issue with it.
    -The program crashes
    -The program stops responding quite often whilst I am working and will take a few seconds to load
    - It will sometimes glitch and my clicks will be delayed. I have also had the issue where certain pencil lines will not undo
    - When moving things on the stage they will sometimes duplicate themselves
    - Sometimes when I have selected a tool and used it once it will automatically change back to the Selection Tool
    - Sometimes after I have imported a video the keyboard shortcuts will stop working
    Has anyone else had these issues and if so, please, how do you fix it?

    My computer Spec's are
    - ACER
    - Aspire 5745G
    - Windows Home 7 Premium
    - Service Pack 1
    - Intel Core i5 CPU. [email protected]
    - RAM 6GB
    - 64-Bit Operating System

  • Whitespace in User Account Name causes issues with various functions

    I've run into a few issues with users who have whitespace in their account names (for example, a user account name that was: "Joe Smith"). Generally, I think this is a result of windows interpreting the last name as a parameter when it tries to
    run a certain function. One place where this occurs and is easily replicated is in the "Troubleshoot Program Compatibility Wizard" which gives an error about permissions, another place this occurs is in the dx9 web installer which gives an error
    message concerning advpack.dll
    In both of these cases I've been able to 'fix' the issue by relocating the TEMP and TMP environment variables to a folder like C:\TEMP, however I still have some issues with other installers and programs such as the 3rd party Cordova build program and the
    android sdk which both get stumped by spaces in the user account name. From my understanding there is no way to change a user account name (not just the name which displays but the name which Windows reads) without deleting the account and copying often several
    gigabytes of files and settings over to a completely new account. Is this correct? Is there a way to remove the whitespace from an account name without these hackish workarounds? Is there anyway to report this as a bug to Microsoft in the hopes that they either
    remove support for usernames with whitespaces or come up with some way to make their internal features like the Compatibility Wizard operate correctly in these (fairly common) install environments? It's an incredibly pesky bug to identify....

    1. Spaces are allowed but not recommended. I would avoid using space(s) in account names.
    2. I do not understand what you have prevented from changing user name.
    3. For problems with 3rd pty programs ask support/forum of respective software vendors.
    4. If you feel like addressing Microsoft, use
    http://support.microsoft.com/contactus/?ln=en-us
    Regards
    Milos

  • ISSUE WITH SUPPLIER SITE OPEN INTERFACE IMPORT PROGRAM in R12

    I am facing issue while submitting supplier site open interface import program programmatically using fnd_request.
    I am uploading the interface tables with the mandatory data and running the standard Request Set for Suppliers.The program is creating the Suppliers but is unable to create the Supplier Sites.It is getting completed with no rejections as well as imported records.
    It is updating the Supplier Sites Interface table (ap_supplier_sites_int ) with status as rejected with no rejected records in ap_supplier_int_rejections table.
    I am using the following code.
    Step 1 - call set_request_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling set_request_set...');
    success := fnd_submit.set_request_set ('SQLAP', 'FNDRSSUB852');--'FNDRSSUB1703');
    IF (NOT success)
    THEN
    RAISE srs_failed;
    ELSE
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program first time...'
    END IF;
    -- Step 2 - call submit program for each program in the set
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSUIMP',
    'STAGE10',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG,
    'Calling submit program second time...'
    success :=
    fnd_submit.submit_program ('SQLAP',
    'APXSSIMP',
    'STAGE20',
    'ALL',
    1000,
    'N',
    'N',
    'N',
    CHR (0)
    IF (NOT success)
    THEN
    RAISE submitprog_failed;
    END IF;
    -- Step 3 - call submit_set
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Calling submit_set...');
    req_id := fnd_submit.submit_set (NULL, TRUE);
    IF (req_id = 0)
    THEN
    RAISE submitset_failed;
    END IF;
    apps.fnd_file.put_line (apps.fnd_file.LOG, 'Finished.');
    And in the interface table the record status is rejected and ther is no corresponding record in ap_supplier_int_rejections.
    but the supplier is getting created succesfully.
    ### Steps to Reproduce ###
    INSERT INTO ap_suppliers_int
    (exclusive_payment_flag,
    vendor_interface_id,
    vendor_name,
    segment1,
    vendor_type_lookup_code,-- set_of_books_id,
    status
    VALUES ('N', --'N',
    ap_suppliers_int_s.NEXTVAL,
    'TEST_REC4',
    4428813,
    'VENDOR', --2041,
    --rec_spl_site_bank_hdr.set_of_books_id,
    'NEW'
    INSERT INTO ap_supplier_sites_int
    (vendor_site_interface_id,
    vendor_interface_id,
    vendor_site_code,
    address_line1,
    city,
    state,
    zip,
    country,
    operating_unit_name,
    status --exclusive_payment_flag
    VALUES (ap_supplier_sites_int_s.NEXTVAL,
    -- VENDOR_SITES_INTERFACE_ID
    ap_suppliers_int_s.CURRVAL,
    -- VENDOR_INTERFACE_ID
    'REC_VDR_SITE4',
    -- VENDOR_SITE_CODE
    'REC_ADDR4',
    -- ADDRESS_LINE1,
    'REC_CITY4', --CITY
    'REC_STATE4', --STATE
    3442121,
    'US', -- COUNTRY,
    ' Test US Operating Unit',
    'NEW'
    );

    Hi
    I have the same issue with ap supplier sites interface program .. Did your problem got solved..I will be thankfull for any help
    Thanks

  • Since I've installed Mountain Lion, I am having lock up issues with multiple programs. MS Outlook has crashed and I've lost all my folders. HELP?

    Since I've installed Mountain Lion, I am having lock up issues with multiple programs. MS Outlook has crashed and I've lost all my folders. HELP?

    okay I've finally been able to get tor and all the other programs to work according to my plan the only thing that's still making problems is that iptables doesn't work as I want it to, when I start chromium without proxy settings privoxy doesn't seem to forward the information to polipo.. do I need to add another rule to iptables.rules in order for the program to know it has to reroute the information again or how can I get this to work? and is there any way to run rtorrent with proxy support?
    anyway, problem 2 and 3 are still to be solved.
    and does anybody know where i can get a good dansguardian blacklist that was not designed for 6 year old children and for which I don't need to subscribe? I'm still getting these partypoker popups -.-
    //e: with iptables it's the same thing as described in the first post. https works, http doesnt. I get the output "Invalid header received from client." on http sites. still no idea why though.. (and the https-version of torcheck.xenubite says i'm tor unprotected while starting the browser with iptables)
    Last edited by deF291 (2011-04-23 16:16:31)

  • Issue with check generation in Automatic Payment Program

    Hi experts,
    I need your inputs for an issue with check generation in Automatic Payment Program. Trying to make a payment to a US vendor with payment method C. The due item is getting picked up and a clearing document is getting generated. But Check is not being generated, niether can I see an entry in PAYR table. However, if I try to generate a check manually in FCH5 for the same clearing document, it is working.

    Have u checked the Variant created in F110 - Printout / data medium, whether the Hose bank details are correctly set or not.
    If yes, check the Printer details
    Let us know the results
    Thanks

Maybe you are looking for

  • OIM 11g using too much memory and not releasing it when shutting down

    Hello, we have a problem with OIM 11g using too much memory (about 5gb) and it's not releasing it at shutdown (4gb still used). We are using a VM with RedHat Linux 5.6. Originally we had 4gb RAM + 2gb swap file. We installed Admin Server, OAM, OIM an

  • HT2729 how to transfer movies from to an email

    Afrojack ft. Eva Simons - Take Over Control 2:57 Akon - Bananza (Belly Dancer) 3:44 Akon - I Wanna **** You ft.Snoop Dog NimitMak SilverRG 4:10 Baby Bash ft  Akon - Baby I'm Back 3:54 birthday video1 - 720p 0:54 Bone Thugs-N-Harmony Ft. Akon - I Trie

  • Attribute not visible in characteristic properties in BEx Web

    Hello all, I have a query using Contact Person as a free chararacteristic. I need to be able to drill down this characteristic and display a custom attribute next to Contact Person, using the properties of the characteristic in the context menu. The

  • Help with Spry drop down menu

    I'm new to Spry, but not to CSS. I'm having major trouble formatting this menu. I've set up my page with a 3-row centered table for simple positioning (I hate trying to get a pure CSS centered layout). The width is 940px and the horizontal menu is su

  • Serial Communicat​ion problem in LabVIEW 7.0

    I recently upgraded my test computer from a 450 Mhz machine to a Del 2.8 Ghz Pentium 4processor with 512meg's of ram using Windows 2000 for the operating system running LabVIEW 7.0. I use the serial port to communicate with a piece of hardware, Rs232