Move-in with a wrong Acct.det.id

Hi,
Please help me in rectifying a error :
There is a consumer who was moved-in with a wrong acct.det.id, after move-in if we correct it by going through es21, is it a right procedure or should we do reverse move-in and then move-in with a correct acct.det.id?
Please guide.
Thanks and Regards

If you are cleared then you can change the account detemination id.But i guess it is not correct.
Go with reversal move-in and change the account determination id it will sound better.
When you will do reversal move in : When we are created any contract by wrong information then to rectify that we will go for reversal move-in in simple words.
Regards,
Shiva Kumar

Similar Messages

  • I have an older Macbook pro with a dvi output and I want to watch movies on my tv. I have a dvi to hdmi cable but the only image I get on my TV is my desktop background. None of my movie players with appear on the TV screen. What am I doing wrong?

    I have an older Macbook pro with a dvi output and I want to watch movies on my tv. I have a dvi to hdmi cable but the only image I get on my TV is my desktop background. None of my movie players with appear on the TV screen. What am I doing wrong?

    Hi Maryan,
    Open System Preferences > Displays > select the window for you external monitor > click on the Arrangement tab and check the box next to Mirror Displays. It may be slightly different in Lion, but the idea is the same.

  • Try to open mov file with quicktime, says can't open pdf files.

    Hi to everyone,
    Suddenly I try to open a mov, any mov file, with quicktime 10.4 and some times opens the finder and nothing more, some times says that it cannot open one pdf document ( a document I actually have but never try to open with QT). some times QT says it canot open some png or jpg file.
    But I double click mov files. And the incoherence is permanent, I mean that for the same movie file says it can't open the same pdf file, and in other file the same png, or the same jpg.. it depends on the mov file I try to open.  Like if somewhere, somme kind of cache, adresse or reference is wrong.
    this is the text of one of those messages when I double click a mov file:
    "The document “phoenixRoomfillerB_v001_0104.jpg” could not be opened. QuickTime Player cannot open files in the “JPEG image” format."
    And if I try again and again, at some point QT open only the finder window.
    The weird thing is that on the finder window i can see the preview and play the preview. and the same mov files play well with VLC. And if I copy the mov file to my desktop it plays well unless QT start to open only the finder window, if that happens it does not work anymore with any file.
    The files are on an external drive with 3 partitions.
    And I make all the possible cleaning that I can:
    I am the administrator of the imac and I am the only one to use it.
    I am the owner of the volume
    I use disk utility to check and everything is ok
    I use onyx to clean as much as possible, cache, boot, volume structure, smart status, home folder permissions, kernel, extensions, QT components, etc. and everything works fine.
    Imac 27 inch late 2012.
    Intel 3.4 GHz  i7
    32 Gb Ram
    NVIDIA GeForce GTX 680MX 2048 MB
    thanx.

    Try QT v7.x which is located inside your Utility folder.

  • Please! help me with this wrong code, where is mistake

    please! help me with this wrong code, where is mistake?
    import java.util.Stack;
    public class KnightsTour {
    Vars locs[];
    private int size, max=1, d=0, board[][];
    public KnightsTour(int x,int y, int newSize)
         size=newSize;
         locs=new Vars[size*size+1];
         for(int n=1;n<=size*size;n++)
              locs[n]=new Vars();
         board=new int[size+1][size+1];
         for(int n=1;n<=size;n++)
              for(int n2=1;n2<=size;n2++)
                   board[n][n2]=0;
         locs[max].x=x;
         locs[max].y=y;
         locs[max].d=1;
         board[x][y]=max;
         max++;
    class Vars{
         int x;
         int y;
         int d;
    public void GO()
         int n=0;
         while(max<=size*size)
              n++;
              d++;
              if(d>8)
                   max--;
                   board[locs[max].x][locs[max].y]=0;
                   d=locs[max].d+1;
              move();
         printBoard();
    public void move()
         int x=locs[max-1].x, y=locs[max-1].y;
         switch(d)
         case 1:x--;y-=2;break;
         case 2:x++;y-=2;break;
         case 3:x+=2;y--;break;
         case 4:x+=2;y++;break;
         case 5:x++;y+=2;break;
         case 6:x--;y+=2;break;
         case 7:x-=2;y++;break;
         case 8:x-=2;y--;break;
         //System.out.println(" X: "+x+" Y: "+y+" |"+max);
         if((x<1)||(x>size)||(y<1)||(y>size)){}
         else if(board[x][y]!=0){}
         else
              locs[max].x=x;
              locs[max].y=y;
              locs[max].d=d;
              board[x][y]=max;
              max++;
              d=0;
              //printBoard();
    public void printBoard()
         for(int n=1;n<=size;n++)
              for(int n2=1;n2<=size;n2++)
                   if(board[n2][n]<10)
                        System.out.print(board[n2][n]+" ");
                   else
                        System.out.print(board[n2][n]+" ");
              System.out.println();
         //System.out.println();
         System.out.println();
         public static void main (String[]args){
              KnightsTour k = new KnightsTour(1,1,8);
         }

    public class KnightsTour {
        Vars locs[];
        private int size,  max = 1,  d = 0,  board[][];
        public static void main (String[] args) {
            KnightsTour k = new KnightsTour (1, 1, 8);
            k.GO ();
        public KnightsTour (int x, int y, int newSize) {
            size = newSize;
            locs = new Vars[size * size + 1];
            for (int n = 1; n <= size * size; n++) {
                locs[n] = new Vars ();
            board = new int[size + 1][size + 1];
            for (int n = 1; n <= size; n++) {
                for (int n2 = 1; n2 <= size; n2++) {
                    board[n][n2] = 0;
            locs[max].x = x;
            locs[max].y = y;
            locs[max].d = 1;
            board[x][y] = max;
            max++;
        class Vars {
            int x;
            int y;
            int d;
        public void GO () {
            int n = 0;
            while (max <= size * size) {
                n++;
                d++;
                if (d > 8) {
                    max--;
                    board[locs[max].x][locs[max].y] = 0;
                    d = locs[max].d + 1;
                move ();
            printBoard ();
        public void move () {
            int x = locs[max - 1].x, y = locs[max - 1].y;
            switch (d) {
                case 1:
                    x--;
                    y -= 2;
                    break;
                case 2:
                    x++;
                    y -= 2;
                    break;
                case 3:
                    x += 2;
                    y--;
                    break;
                case 4:
                    x += 2;
                    y++;
                    break;
                case 5:
                    x++;
                    y += 2;
                    break;
                case 6:
                    x--;
                    y += 2;
                    break;
                case 7:
                    x -= 2;
                    y++;
                    break;
                case 8:
                    x -= 2;
                    y--;
                    break;
    //System.out.println(" X: "x" Y: "y" |"+max);
            if ((x < 1) || (x > size) || (y < 1) || (y > size)) {
            } else if (board[x][y] != 0) {
            } else {
                locs[max].x = x;
                locs[max].y = y;
                locs[max].d = d;
                board[x][y] = max;
                max++;
                d = 0;
    //printBoard();
        public void printBoard () {
            for (int n = 1; n <= size; n++) {
                for (int n2 = 1; n2 <= size; n2++) {
                    if (board[n2][n] < 10) {
                        System.out.print (board[n2][n] + " ");
                    } else {
                        System.out.print (board[n2][n] + " ");
                System.out.println ();
    //System.out.println();
            System.out.println ();
    }formatting ftw.
    If you call GO () you get in an infinite loop. max gets decreased, and it loops while max is smaller then or equal to size * size. Is your looping logic correct ?

  • How do I open movies made with older versions of iMovie?

    I have newer iMac with iMovie 10.0.02 and would like to open movies created with an older version of iMovie.  I was informed by the people at the Apple Store this could be done.  Does anyone know how?  In the end I would like to create high def copies that can be viewed on a Mac laptop.

    Hi
    I was informed by the people at the Apple Store this could be done.
    That depends up-on from what old iMovie version.
    - iMovie 1 to HD6 - is one program and it's evolution - Will Not be possibly to open with any other program.
    - iMovie'08 v.7 to iMovie'13 v.10.0.x - is a compleatly other product (wrongly named as iMovie in my opinion) - can open older files from this evolution. (Not from iM 1 - 6)
    So it depends greatly from what version that You mean.
    Please tell.
    Yours Bengt W

  • Can't view .mov file with quicktime

    Hello. I need help viewing a .mov file with Quicktime 7.5. It was recorded on a Canon Vixia HV30 camcorder and given to me on a dvd. But when I try to view the .mov file with Quicktime, I can hear the audio but the screen is black. Sometimes, it asks me to continue to the following link:
    http://www.apple.com/quicktime/resources/components.html?os=Windows&ctype=696d64 63&csubtype=69636f64
    I'm not that computer savvy - what is wrong? Any advice would be greatly appreciated. Thanks in advance!

    Sorry. My "then" (above) should have been "they".
    They sent you a data DV containing the "source" from the camera and the HDV codec isn't available on your PC so you can't view the file.
    Ask the authors to convert the file using H.264 Video codec (or others) so your Windows version of QuickTime can play the file.

  • Share my Entourage calender on one computer with users/login accts ???

    Hi, I've been searching the forums, and only see answers on this topic for people on work networks/exchange. My issue is for a single home iMac with three users with separate login accts.
    My problem is that I have a new iMac and I got office2004 and I would like all the members of my family to use this computer and share the "ENTOURAGE CALENDER" so we can all see who is doing/going what and when.
    I can't seem to figure this out and I need some help!!!! Can anyone explain how I can achieve this simply to me?
    I would greatly appreciate it.
    Thanks,
    -Doug
    iMac20 intel duo Mac OS X (10.4.8) Office 04 for Mac, Entourage Calender
    iMac20 intel duo   Mac OS X (10.4.8)  

    There is no way to do that without a server being involved. I would recommend using Google Calendar to achieve something similar.

  • Move graphics with text--but not inline--in PM...??

    Hello, is there a way in PageMaker to move graphics with text but not inline? I ask because right now I see two options for graphics:
    --inline, so you cannot place the graphic exactly where you want AND the text only flows way above or below--but not next to--the graphic
    or
    --independent so you can place the graphic exactly where you want and the text DOES flow right next to the graphic, but then the graphic doesn't move with the text
    I'd like to be able to place graphics exactly where I want AND have them move with the text, like the "Move object with text" option in Word.
    thank you!
    L

    well it has been a while since i used PageMaker so i didn't realize it was "dead."
    though i'm not surprised and am kind of glad. i was hired into a new job recently
    to work on a department newsletter, and i'm trying to find a good authoring program
    within our budget. right now the newsletter is in Word but we've had a lot of problems
    with Word so i'm seeking an alternate solution. i'd like Frame but again there isn't
    enough money in the budget. i need a good option that is $500 or less...i'm trying Publisher
    now too but not enough functionality...

  • How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    How do I update the iCloud ID on my phone?  I changed my ID on my laptop, but my iphone still has "sign in to iCloud" with the wrong ID and I cant figure out how to change it.

    I have same question

  • TS3297 "iTunes was unable to load data class information from Sync Services." What is this solution for the new phone to sync up with my iTunes acct?

    "iTunes was unable to load data class information from Sync Services." What is this solution for this new phone to sync up with my iTunes acct?

    Hi tadhunt,
    Here is an article that directly addresses that error message:
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert
    http://support.apple.com/kb/ts2690
    I hope this helps!
    - Ari

  • HT1206 Can I have in one iphone 5 music from more than one itunes accounts?  My daughter and I have our music in the same pc. She and I have iTunes accounts. I have not been able to load in my ophone with my itunes acct music that she purchased in her acc

    Can I have in one iphone 5 music from more than one itunes accounts?  My daughter and I have our music in the same pc. She and I have iTunes accounts. I have not been able to load in my ophone with my itunes acct music that she purchased in her account.  I have not been able to do this. Thanks

    iTunes Match is not sharable across Apple IDs. The best way to get the music on her iPad is to leave hers signed into her Apple ID on the iTunes Store and sync via USB.

  • I setup my iCloud account on my iPhone 5 with the wrong e mail address, and I don't remmber the password, I reset my tel and erase all the information on my iPhone in order to try to set up a new iCloud account but when I restart I have a problem aga

    I setup my iCloud account on my iPhone 5 with the wrong e mail address, and I don't remmber the password, I reset my tel and erase all the information on my iPhone in order to try to set up a new iCloud account but when I restart I have a problem agaIn , they ask me to put again the old iCloud user account and password, what I can do in order to start the phone when I don't have the correct e mail and I don't remmber the passcode.?

    I have the same problem as the emails go to my iCloud account that I cannot access!!! I cannot answer the security questions as someone else must have set up my iCloud account. Nothing seems to work. It would be great if someone has some ideas as what can be done to recover the situation?

  • How do i move a movie purchased with apple tv to my iPad

    How do i move a movie purchased with apple tv to my iPad

    Welcome to the Apple Community.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app) on your iOS device.

  • Can i connect a external hard drive to apple tv 3 generation, for see my movies itunes with out use streaming or icloud?

    can i connect a external hard drive to apple tv 3 generation, for see my movies itunes with out use streaming or icloud?  in apple tv 3 and 2?
    That  i want to know is i can connect a external hard drive to apple tv, for see my movies that i keep in my external hard drive,  i dont want to see then  whit the streaming and icloud, or used my  laptop o pc for access de movies and stuff.
    i put iny spanish to, because i feel my english is not so good, but i hope you understand me.
    if i can´t  connect a external hard  drive, wich others media players divices you know that can see itunes movies?
    ¿quisiera saber si se puede conectar una memoria externa al apple tv, para ver el contenido de itunes que tengo guardado en esa memoria como peliculas, ect?
    lo que no quiero es usar  la icloud, o el servicio streamig para ver mi contenido, ni tener que usar la computadora para ver mi contenido el la tv?
    y de no poderse conectar  que otros dispositivos media pleyer conoces para ver peliculas de itunes  en la tv?

    Welcome to the Apple Community.
    can i connect a external hard drive to apple tv 3 generation
    Unfortunately not.

  • How do you move itunes with playlists from one computer to another

    how do you move itunes with playlists from a computer to ext hard drive, so it will play from the ext harddrive and not the computer

    Type "move itunes library to external hard drive" into the google search bar.

Maybe you are looking for

  • PowerShell script for AD name change

    I need to change all users logon name in AD to their first name.last name    Server 2003

  • Failed HR Structure Authorization: should not be possible

    Hi there, I've got a strange problem which is quite similar to [this one|https://forums.sdn.sap.com/click.jspa?searchID=10542618&messageID=4893986], but the difference is that my userid does not have an entry in OOSB (T77UA) so it should not have mis

  • CS6 Web Gallery template selection problem, need help...

    Using Bridge CS6  to create a web gallery and the only template available is "Standard" which is Flash based. I can open the pull down menu and see 11 templates including the HTML which I want to use but it defaults back to "standard" each time. Seem

  • Dbms_scheduler problem

    I'm having a problem with scheduling a job from HTML DB/Oracle Apps Express. Simply stated: it doesn't run. I have put all the actions inside a stored procedure, when I call that stored procedure as the owner of the job (and the application) from Rap

  • Cant sign into game center :(

    Hey, im having problem connecting to Game Center and i cant play any of my games like MetalStorm etc.. It keeps saying that "This game is not recognized by game center" and i've been playing tgis game since like 3 weeks even till this morning... I tr