Amex application "In progress" status. Approved?

Hi, my credit is only 5 months old. I applied for PRG and Delta cards on Wednesday evening. As I don't currently have FICO generated, Amex requested copy of my stab. I complied, and today the status changed from "Submit additional documentation" to "In Progress". What does that suppose to mean? Perhaps ppl from documents department verified my pay stab and moved application over to credit analyst? Can I remotely now hope for an approval?

orestrus wrote:
Hi, my credit is only 5 months old. I applied for PRG and Delta cards on Wednesday evening. As I don't currently have FICO generated, Amex requested copy of my stab. I complied, and today the status changed from "Submit additional documentation" to "In Progress". What does that suppose to mean? Perhaps ppl from documents department verified my pay stab and moved application over to credit analyst? Can I remotely now hope for an approval?It can swing both ways.. The good thing it is not showing declined so that is a good thing.  Keep checking the app. status and let us know results.  Will keep fingers crossed for you.

Similar Messages

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • JApplet / application init / start progress status feedback

    We used to put up a separate JFrame during the initization/startup of our applets/applications for status messages. While o.k. for Java Webstart / application modes (& maybe standalone applet mode), this was not pretty for customers embedding our apps in portals.
    So, the goal became to show custom progress/status on the "gray screen" initial applet contentpane until our app desktop is ready to show. Known threading / painting issues during applet startup made this task somewhat non-trival.
    Searched around here on the jdc & found a nice little Moving Ball class & used that as a base for the play app below. Thought I'd post this back to jdc in case anyone else finds it useful. The JApplet code has a main, so same code should work for the app whether deployed as a (plug-in) applet, application JAR or Web Start app.
    The code should show a RED moving ball during init, a YELLOW one during start and a GREEN one after start method is done (w/ball x position update in scrolling pane)....
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.WindowListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
        cforster: Uses Ball painting code (from jdc) & separate status area to simulate JApplet
        startup msgs to be shown to user during applet init...
        Point is to show status during applet/application initialization (init / start) methods...
        Can JAR this up & try in appletviewer or using 1.4.2+ plugin, etc.
        With main() also usable in application / Webstart mode....
        If going the application route (or double-click JAR route), need JAR manifest.mf like:
        Manifest-Version: 1.0
        Main-Class: Today
        Created-By: 1.4.2 (Sun Microsystems Inc.)
    public class Today extends JApplet {
        private static Today inst;
        //  Ball color will change from RED (init) -> YELLOW (start) -> RED (start done)
        Color ballColor = Color.RED;
        final int colorSleep = 3000;    // Time to waste in init & start methods
        final int pauseSleep = 25;      // Time between Ball moves/draws
        JTextArea jta = new JTextArea("===  Status  ===" + "\n", 50, 132);
        MovingBall movingBall = new MovingBall(jta);
        public static Today getInstance() {
            if (inst == null) inst = new Today();
            return inst;
        public Today() {
            super();
        public void init() {
            setVisible(true);
            getContentPane().setLayout(new BoxLayout(getContentPane(), BoxLayout.Y_AXIS));
            movingBall.setPreferredSize(new Dimension(400, 100));
            movingBall.setBackground(Color.lightGray);
            getContentPane().add(movingBall);
            jta.setEditable(false);
            jta.setBackground(Color.lightGray);
            getContentPane().add(new JScrollPane(jta));
            movingBall.start();
            validate();
            try {
                Thread.sleep(colorSleep);
            catch (InterruptedException ie) {      }
        public void start() {
            ballColor = Color.YELLOW;
            validate();
            try {
                Thread.sleep(colorSleep);
            catch (InterruptedException ie) {       }
            ballColor = Color.GREEN;
        public void stop() {
            movingBall.stop();
        public static void main(String args[]) {
            final Today CallingApplet = Today.getInstance();
            JFrame frame = new JFrame("Moving Ball / Load status");
            frame.getContentPane().setLayout(new BorderLayout());
            frame.getContentPane().add("Center", CallingApplet);
            // Use an adapter to close the window
            WindowListener listener = new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
            frame.addWindowListener(listener);
            frame.setBackground(Color.lightGray);
            frame.pack();
            frame.setSize(400, 400);
            frame.show();
            CallingApplet.init();
            CallingApplet.start();
        class MovingBall extends JPanel implements Runnable {
            final int xPos_Start = 8;
            int xPos = xPos_Start, yPos = 100, rad = 10;
            boolean moveForward = true;
            Thread thread;
            Graphics dbg;
            Image dblImage;
            JTextArea jta = null;
            MovingBall ball = this;
            // Takes in JTestArea that is supposed to be the status msg area...
            // In practice, the staus area & updates are elsewhere...
            public MovingBall(JTextArea jta) {
                this.jta = jta;
            public void start() {
                Thread ballThread = new Thread(this);
                ballThread.start();
            public void run() {
                Thread.currentThread().setPriority(Thread.MIN_PRIORITY);
                yPos = getHeight() / 2 + (rad / 2) + rad;
                while (true) {
                    if (moveForward)
                        xPos++;
                    else
                        xPos--;
                    if (xPos > getWidth() - (2 * rad))
                        moveForward = false;
                    else if (xPos < xPos_Start + (2 * rad)) moveForward = true;
                    SwingUtilities.invokeLater(new Runnable() {
                        public void run() {
                            if (xPos % 20 == 0) {
                                jta.append("xPos = " + xPos + "\n");
                                jta.setCaretPosition(jta.getText().length());
                            ball.paintImmediately(ball.getBounds());
                    try {
                        Thread.sleep(pauseSleep);
                    catch (InterruptedException ie) {
                        break;
            public synchronized void stop() {
                thread = null;
    /*  Not needed for Swing Component (only AWT ?)
              public void update(Graphics g)
                   if(dblImage == null)
                        dblImage = createImage(this.getSize().width, this.getSize().height);
                        dbg = dblImage.getGraphics();
                   dbg.setColor(getBackground());
                   dbg.fillRect(0, 0, this.getSize().width, this.getSize().height);
                   dbg.setColor(getForeground());
                   paintComponent(dbg);
                   g.drawImage(dblImage, 0, 0, this);
            public void paintComponent(Graphics g) {
                g.setColor(getBackground());
                g.fillRect(0, 0, getWidth(), getHeight());
                g.setColor(ballColor);
                g.fillOval(xPos - rad, yPos - rad, 2 * rad, 2 * rad);
    }If anyone plays with this & finds issues/problems or makes improvements to its mechanism, would be nice to post back to this thread.

    hello,
    I found that while configuration of AM there was an warning
    Command deploy executed successfully with following warning messages: Error occurred during application loading phase. The application will not run properly. Please fix your application and redeploy.
    WARNING: com.sun.enterprise.deployment.backend.IASDeploymentException: ContainerBase.addChild: start: LifecycleException:  java.lang.NoClassDefFoundError
    Successfully deployed /amserverthis might help in resolving the issue.
    regards,
    sumant

  • Leave Application in Waiting status

    Dear Friends,
    The ESS leave application has approved by supervisor, but because it's in payroll lock period, the lease application is put in 'wait' status.
    Any body knows how to change a ESS leave application from wait status to complete?
    Best Rgds
    Mr Fu

    Try Tcode SWIA.
    sometimes we might not be able to correct this issue. then you have to manually create a record in SAP

  • When i approuve a transport request, it stays in progress status

    Hello,
    even if i input approval steps and i approuve it after, they are still in progress status, they don't desappear from QA worklist.
    ho to do to resolve this situation ?
    Thank's a lot

    Hello,
    Is this a workflow question? Are you using workflows for transports?
    If yes, check the workflow log, eg via SWIA, to see what the problem is.
    If no, maybe you could ask in a different SDN forum.
    regards
    Rick Bakker
    Hanabi Technology

  • SRM 7.0 Confirmation remians in status Approved

    Hi All,
    we have  SRM 7.0 ECS implemneted.  when we create confirmation in SRM , the  GR is created successfully in backend and in the  SC  and PO history i can see the numbers too, however  confirmation in SRM still remains  with status "Approved".
    the status is not chnaged to "Posted to the Backend".
    I have job CLEAN_REQREQ_UP And BBP_GET_STATUS_2 scheduled  and they are running fine.
    when i run manually the  report CLEAN_REQREQ_UP  the status of teh confirmation is changed to "Posted to the Backend".
    it was all working fine sometime back and recently this has started , don't know what chnages has caused this , but definitely we have implemented may OSS Notes.
    Any reason why the background job "CLEAN_REQREQ_UP " is not working properly.
    also in bbp_pd for the confirmation i have an error message BBP_IV 080 "Enter quantity too high..." when i run CLEAN_REQREQ_UP manually  the  status is  corrected and the error is removed too ..
    cheers
    Iftekhar Alam

    Hello Iftekhar,
    Check R/3 IDoc status for corresponding confirmation is the good one ('53' i think - green light - and not '51' - yellow light).
    If not, this could explain why CLEAN_REQREQ_UP report does not delete corresponding entry in BBP_DOCUMENT_TAB table. As a consequence, confirmation status cannot be updated.
    For SC history confirmation numbering, is it the one from SRM or from R/3 ?
    Regards.
    Laurent.

  • Hi Im using os 10.7.5 and i can't see the progress status in the launch pad and in purchase tab in mac app store. PLEASSSSSEEEE HELP!

    Hi Im using os 10.7.5 and i can't see the progress status in the launch pad and in purchase tab in mac app store. PLEASSSSSEEEE HELP!

    HI guys! can anyone help me with this?!?

  • Pause slide vs. TOC progress status

    Hi again,
    this project gives me hell! I almost finished but there is some ****... trouble again :-/
    Whole project is just demo of set-up and some basics for MS Outlook.
    For navigation im using only TOC. Progressbar below is included in SWF animation on each slide. (its not project progressbar).
    Problem is that project continues to next slide afrer video(animation) ends. But i need it to stop after viewing whole video.
    So i placed some transparent click box in slides with "no action" option and that solved my problem with project continuity,
    unfortunately progress status in TOC isn´t working now because of that click box.
    I would be grateful for some advice.
    Thanks
    Martin

    Hello,
    How is the Success Action for your Click box? Is it set to Continue so that the whole timeline of each slide is played?
    Another possibility is acquiring the TickTOC widget of InfoSemantics.
    Lilybiri

  • New Here: Application to monitor status of Weblogic queues and bridges

    hi
    I'm new to weblogic and I have to build a small tool/application to monitor status of Weblogic queues and bridges.
    I want to know if there is any API that I can use or any script in Java or any other language?
    Thank you

    for that kind of stuff maybe the easiest choice is using WLST
    there are a number of scripts published on the excellent middlewaremagic.com site
    if you google
    site:middlewaremagic.com monitoring jms
    you will find plenty of stuff

  • Status = Approved then the followup transaction should be created Automatic

    Dear Experts,
    My client's requirement is
    Solution manager is implemented already now client want to use Change request Mangement(ChaRM) functionality.
    All the statuses are maintained in the system through the Action profile.
    Once the Standard change request(SDCR) get approved then single change request(SDMJ) should be created automatically through actions.  Is there any standard action profile for doing this requirement.
    This action need to be available in the status approved.
    Regards,
    Babu.

    Hi Babu,
    Did you configure ChaRM functionality?
    Do you use CRM_ORDER and Action profile SLFN0001_ADVANCED?
    If yes, and the status are maintained in the action profile, then it does automatically.
    Once the change request(SDCR) is approved by Change Manager a Normal correction request(SDMI) will be created automatically.
    Is there any specific reason that your client needs a normal correction request(standard) - SDMJ?
    Because normal correction request(SDMI) will serve all the funtionality.
    Regards,
    Sanjai

  • Sales Order Credit Status Approved

    Hi all,
    My User created Sales order 2500 USD But the problem is Credit Block not happen for that Particular Order and they do the delivery and billing
    and there Check FD33 it Showing Credit Exposure Got Exceed by 156 %
    Total credit limit for customer is 7500 USD its already exceed around 11.500.256 ( But sales Order was Not Block)
    Basically customer belongs to High risk category with Dynamic credit check with Sales Order Block
    we check whole config (OVA8 )it was fine ( Credit control area + risk category ( High risk ) with Credit group 01 that assin to sales document Header
    In OVA8 its sets as Dynamic  check + Reaction    C + with Status/Block
    The Movement I check in Sales Order Status its Showing  Credit status APPROVED
    Can any one Guide me when status got change as Approved
    Or We miss some configuration
    I am unable to trace what is wrong  can any guide what wrong why its sales order status showing Approved
    Thanks
    Rajesh

    Hi Rajesh,
    Wat i feel is u might have missed configuring one of teh step where u assign teh Credit limit check to Document type.
    T-Code OVAK.
    Assign the Sales document with the type of Credit check you need. If you have missed this step the  default value will be  blank which means no credit check performed for sales done with this Particular Sales document type. This might be the case with your scenario.
    Regards,
    Arun.S

  • Progress  status setting in PPM

    Hi Experts,
    Can the default settings of number of days in  Progress Status  be set globally?
    Path to Progress Status Settings:
    PPM --> Target to Date --> More --> Options
    Current default settings = 7, 50, 90 days
    Desired default settings = 30, 60, 90
    Please advise on this.
    Thanks & Regards,
    Gautam

    very simple..we can set it through web ui directly. It is set globally for all the users regardless of organisation.

  • Trip directly setting to status approved

    Hi Experts,
    We are facing one issue as for selected company code , when a Travel and Expense is created, it is directly moving in to the status approved. Can anyone please let me know as what configurations might be missing for the same.
    Thanks
    TC

    Hi TC,
    please provide more information, what are you using as means of approval? Are you using a workflow?
    It's more likely the process flow causes this instead of a configuration.
    Cheers, Lukas

  • Disabling progress status window permanently

    Is it possible to permanently disable the square progress status window that appears when I convert documents to PDF files?

    I just canceled out of one yesterday afternoon running under LV 8.2 with no issue. If you are removing the old data, did you shutdown the app using the DB?
    If that doesn't help the only answer I know of sounds like I am being a wise-arse.
    Post an zip that demonstates this issue then "take two upgrades and post back next year."
    I don't mind locked VI if they work. When they don't I have no choice but to be frutstrated. The lock-down tie-up with Shared variables combined with what appears to be poor testing (historical trends recall funtion swapped start and stop times because developer did not use type defs, intermittant lock-ups of the DB on multiple machines with absolutley no tools to troubleshoot, ... ) has resulted in me NOT recomending DSC for an app for a couple of years now. The only reason I still touch it is I have apps running DSC for ten years and they have to keep running.
    Sorry to dump on you. If we ever meet we can discuss who is more disappointed.
    Ben
    (Former Top Contributor to the DSC forum)
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Write-Progress -Status span mulitple lines

    Is it possible for Write-Progress -Status to span multiple lines? The status is showing the file being copied and to the location it is being copied to, which can get very long and runs off the console window. I have tried adding `r`n but that doesn't
    work, so I am thinking it is a no, but figured I would ask.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

    The progress bar in Write-Progress is based on the width buffer size of the console window. If the width buffer is greater than the actual console window width, then it will spill off of the console.
    There is no way to my knowledge to make this span multiple lines other than to write your own type of progress bar or to make a proxy function for Write-Progress.
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

Maybe you are looking for

  • What's wrong with networking since Leopard?

    Hi, I'm with Mac since years. I was a PC User once and spent hours with all kinds of network troubles. What convinced me with Mac right in the beginning was easy networking: It just worked! But since Leopard things got worse: I have several MBP's, iM

  • Error message at start-up Unable to access Jar file

    I am a consumer, not a business...and not an IT professional. I am running Vista and have not installed any new software recently. At every start-up, I get a pop-up titled Java Virtual Machine Launcher. The message says "Unable to access jar file". C

  • Other solutions requested: CP1210 Series Cartridge Alaignment in Windows 8.1

    Hello, Adding to the original post (copied below), I'm also using Windows 8.1 on my knew computer, and seems to have the same problem. I tried the solutions you suggested, but the problem percist.   The printed colors are offset.  The black color is

  • Fire Event Through Interface

    I have been using this interface public class InputHandler implements VoteListener public void onVote(Response[] responses) }I get the call back with out registering the class. How can I implement my own interface without the user registering their c

  • Ipod Skipping Songs

    I bought a new 80 GB iPod classic back in January, and I noticed that when I'm listening to it on shuffle, it might get to a song, wait a few seconds and then skip the song. I also tried playing an album on my iPod and it skipped every song. These so