How to remove a customer in R12

Hi all, I need to delete a customer in R12 (html form) but I don't see any delete button.

I have not any transaction with the customer, it's a whole new customer but I have a requirement to remove. So my question is how can I delete a customer?

Thank you

PL see if these Docs MOS help

is 727169.1 - possible to delete customers, the possibilities and opportunities?
is 412615.1 - possible to delete a customer record that was created in the Contact Center?

HTH
Srini

Tags: Oracle Applications

Similar Questions

  • How to remove a Custom DDL or ObjectChoiceField

    Hi all

    I am doing a shopping basket sort of thing...! for this I need to change the dropdownlists dynamically on the selection.

    !) When the user selects the button category, main ddl should be updated.

    (2) when the user selects a subacaegory of DOF, DOF sub must be courses.

    I realized this some how... dynamically, I changed the reference to the ddl and updated. It works fine but the problem is, when an another DOF makes its appearance the previous is there remain only and a new is overwhelming at this point. as a result when the width of the new ddl is lower than the previous ddl, it appeared in her underwear, which kills the look and feel of the screen.

    in some ways, I tried to remove the ddl, but it does not work for me.

    Please suggest me how to remove the ddl dynamically, when I try to remove it, it gives IllegalArgumentException meaning is the ddl

    not this Manager field. I'm removing the same administrator only, but I have not found why it's happening...!

    Please help me! Here is my

    It's my custom ddl code.

    public class CustomComboBox extends ObjectChoiceField   {
    
          private int width;        public boolean itemadded = false;
    
    //       CustomComboBox()//        {////         super("Currency",curr, 0, ObjectChoiceField.FIELD_LEFT);//        }     public CustomComboBox(String str,String []curr, int width)        {         super(str, curr, 0, ObjectChoiceField.FIELD_LEFT | ObjectChoiceField.USE_ALL_WIDTH);          this.width = width;           Font font = this.getFont().derive(Font.EMBOSSED_EFFECT | Font.BOLD, 14);          this.setFont(font);
    
         }     public CustomComboBox(String str,String []curr, int startindex, int width)        {         super(str, curr, startindex, ObjectChoiceField.FIELD_LEFT | ObjectChoiceField.USE_ALL_WIDTH);         this.width = width;           Font font = this.getFont().derive(Font.EMBOSSED_EFFECT | Font.BOLD, 14);          this.setFont(font);       }     protected void layout(int width, int height)      {         setExtent(this.width, 40);        }     public void paint(Graphics g)     {           //            g.setBackgroundColor(Color.BLUE);//           g.clear();            g.setColor(Color.BLACK);          super.paint(g);       }     public void setVisiblity(boolean on)      {//           this.setVisualState(VISUAL_STATE_DISABLED);//         this.setVisualState(VISUAL_STATE_DISABLED_FOCUS);
    
          }     protected void fieldChangeNotify(int context)        {          try {              this.getChangeListener().fieldChanged(this, context);                 } catch (Exception exception) {               }        } }
    

    This is the place where to use this object class

    class ItemList extends Manager implements FieldChangeListener{  SubItemList subitems;
    
      String []cycleitems = {"Standard", "Kids", "Racers"}; String []spareitems = {"Tyres", "Tubes", "Covers"};   String []healthitems = {"Medicines","Fruits","Drinks"};   String []fitnessitems = {"Walker", "Dumbles"};    String []empty = {"                    "};
    
      CustomComboBox ddl_cycle, ddl_spares, ddl_fitness, ddl_health, ddl;   MyTextField lbl_subcategory;//    CustomTextBox txt_qty;    ItemList(int index)   {     super(Manager.VERTICAL_SCROLL | Manager.HORIZONTAL_SCROLL);
    
            subitems = new SubItemList(index,0);
    
          ddl_cycle = new CustomComboBox("Cycles", cycleitems,  140);       ddl_spares = new CustomComboBox("Spares", spareitems, 140);       ddl_health = new CustomComboBox("Health", healthitems, 140);      ddl_fitness = new CustomComboBox("Fitness", fitnessitems,140);        ddl = new CustomComboBox("",empty ,100);
    
          lbl_subcategory = new MyTextField("Sub-Category:",Field.FIELD_LEFT, 16);//        lbl_qty = new MyTextField("Qty", Field.FIELD_LEFT, 16);//     txt_qty = new CustomTextBox(30,20);
    
          ddl_cycle.setChangeListener(this);        ddl_spares.setChangeListener(this);       ddl_health.setChangeListener(this);       ddl_fitness.setChangeListener(this);
    
          switch(index)     {         case 0: ddl = ddl_cycle;                  break;            case 1: ddl = ddl_spares;                 break;            case 2: ddl = ddl_health;                 break;            case 3: ddl = ddl_fitness;                    break;        }     add(lbl_subcategory);     add(ddl);     add(subitems);    } public void delItems()    {     subitems.delSubItems();       deleteAll();  } public void setvisibility(boolean on) {     ddl.setVisiblity(false);  } protected void sublayout(int width, int height)   {     if(lbl_subcategory != null)       {         setPositionChild(lbl_subcategory, 0, 25);         layoutChild(lbl_subcategory, getScreen().getWidth(), getScreen().getHeight());        }
    
          setPositionChild(ddl, 110, 15);       layoutChild(ddl, getScreen().getWidth(), getScreen().getHeight());
    
          if(subitems != null)      {         setPositionChild(subitems, 0, 60);            layoutChild(subitems, getScreen().getWidth(), getScreen().getHeight());       }
    
          setExtent(360, 150);  }
    

    This is the place where works the dynamic change of ddl

    class OrderEntryManager extends Manager implements FieldChangeListener{
    
    ItemList items;    ButtonField   btn_submit;     MyButtonField  btn_cycles, btn_spares, btn_health, btn_fitness, btn_go;
    
    OrderEntryManager(){items = new ItemList(0);btn_cycles = new MyButtonField("Cycles", "orderimg/cycle.png", "orderimg/cycle.png",0x00FFE7AD);     btn_spares = new MyButtonField("Spares", "orderimg/spares.png", "orderimg/spares.png",0x00FFE7AD);        btn_fitness = new MyButtonField("Fitness", "orderimg/fi.....);
    
    add(items);
    
    }public void fieldChanged(Field field, int context)    {
    
          if(field instanceof MyButtonField)        {         if (((MyButtonField) field).getLabel().equalsIgnoreCase("Cycles"))            {//               items.delItems();//               this.delete(items);//             items.setVisualState(VISUAL_STATE_DISABLED);              items.setvisibility(false);               items = new ItemList(0);              add(items);            }            else if (((MyButtonField) field).getLabel().equalsIgnoreCase("Spares"))           {//               items.setVisualState(VISUAL_STATE_DISABLED);//                items.setvisibility(false);               items = new ItemList(1);              add(items);//             items = itemsnew;         }         else if (((MyButtonField) field).getLabel().equalsIgnoreCase("Health"))           {//               items.setVisualState(VISUAL_STATE_DISABLED);//                items.setvisibility(false);               items = new ItemList(2);              add(items);//             items = itemsnew;         }         else if(((MyButtonField) field).getLabel().equalsIgnoreCase("Go"))            {
    
              }         else if (((MyButtonField) field).getLabel().equalsIgnoreCase("Fitness"))          {//               items.setVisualState(VISUAL_STATE_DISABLED);//                items.setvisibility(false);               items = new ItemList(3);              add(items);//              items = itemsnew;            }     }     else if (field instanceof ButtonField)         {//           if (((ButtonField) field).getLabel().equalsIgnoreCase("Fitness"))//              {//                   items = new ItemList(3);//                    add(items);// //               items = itemsnew;  //                }           if(((ButtonField) field).getLabel().equalsIgnoreCase("Submit"))             {               synchronized(Application.getEventLock())                    {                     UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());                       UiApplication.getUiApplication().pushScreen(new OrderConfirmScreen());                    }             }      }            if(items != null)         {             updateLayout();           }
    
     }
    
    }
    

    Please suggest me how to remove the ddl for this!

    Hi all, I have solved this problem by using ddl.setChoice (String []);

    Thank you for all that you.

  • How to remove old custom workspaces?

    How can I remove old custom workspaces that I never use more?

    "Save, reset, or delete workspaces.

  • How to remove a custom theme color scheme

    Once a custom theme color scheme is created and recorded, how this set of custom colors can be deleted?

    Jay, I don't have time to test today, but did you read my last blog post?

    Captivate 8.0.1 Install? Keep your customization! -Captivate Blog

    You will find the path to the custom theme color palettes here, maybe delete the custom theme and restart CP will do?

  • How to remove a custom toolbar.

    Where are stored the definitions of the custom toolbar? I created one, but now want to permanently delete it.

    Everytime I open Firefox is activated and I have to disable in the view menu. My preferences are not stored. This has happened in the last update of Firefox. The upper area is also a nasty green color before it loads my custom background.

    No idea of what is happening and how I can fix?

    Either way, "assumptions" for this are all wrong. It shows my version 3.5.4 and my XP OS.

    You must remove all elements (including separators and elements of space) in a toolbar and have them drag in the toolbar palette to remove the toolbar, customize the window is closed.

  • indexed - color mode how to remove a custom color table color

    Hello

    I'm working on a bitmap to which I put my color mode to "indexed color Mode.  I created a custom color table and I added 9 colors.  I would like to delete one of these colors, but I can't find a way to remove a color from my existing custom color table or start with an empty custom color table so that I can add only colours I want.  If someone can tell me how to do either of these things, I'd be very happy.

    Thanks in advance,
    Paul

    I had the same problem. I'm not sure that you can remove colors. I just changed the color, I'm not one of the existing colors that I want. It does not hurt to have two colors of the same value in the table.

    Edit: This is what I warned you about in your other post.

  • How inactive to a customer in R12?

    Hi all

    As the topic, please show the path for me and advice.

    My environment is: oracle R12.1.3


    Concerning
    Terry Chen

    Hi Terry;

    Please see:
    R12: How 'Inactive' to set the Contact information on customer / client sites in the form of debt level? [1123303.1 ID]< already="" mention="" by="">
    Sales: How a single view or activate inactive clients? [399120.1 ID]
    How can I update the status of the client to inactive via the client Interface Site? [984902.1 ID]

    Respect of
    HELIOS

  • How to remove E-Business Suite R12?

    On Solaris10, there is the instance R12 - file system and a database.
    And there's a different welcome to Oracle 10 g with a few DBs installed.
    How can I completely remove these?
    I have not the Oracle of these installation CD.

    I am thinking:
    Remove Oracle homes;
    Remove database files;
    Remove the oratab dbs;
    delete the oraInventory;
    delete the file oraInst.loc.

    In doing the above, will be completely removed the server oracle products?

    Thank you
    ZB

    Hello

    You wrote 'Correct' to my list of removals. did you mean agreeing with me on the removal of the files for removal of the Oracle product? I try not to invoke the binary Oracle for Oracle removal products Solairs10 box.

    Yes. I understand that you want to delete all files in this box and ORACLE_HOMEs so you can manually delete these files. If you want to keep a few ORACLE_HOMEs on the same box, then you are supposed to run YES with the option Uninstall (to keep the existing ORACLE_HOMEs entries in the oraInventory directory).

    Kind regards
    Hussein

  • How to remove appsTier of ebs R12

    Dear Sir

    We use the ebs R12 with rac allow
    the env has 3 lymph nodes for database 10g RAC 2 and 1 node for appsTier.
    We simply add another node to the average level and something does not work correctly. We want to completely remove it from the average level and clean all the records in the databaseTier.
    Please tell us a method how to do this.

    Thanks in advance,
    Kind regards

    Hello

    you have divided the services on 2 Application nodes?

    If you have shared, you can follow the procedure below works

    (a) stop the application of services including simultaneous managers on both nodes of the application
    (b) run config clone on 1 node applications to run services
    b cancel the registration of the 2nd application node
    Perl $AD_TOP/bin/adgentns.pl appspass = \contextfile= - removeserver
    (c) clean the table of fnd_nodes
    Log in as user apps
    SQL > exec fnd_conc_clone.setup_clean;
    SQL > commit;
    SQL > exit
    d remove the second node for network applications (this is optional)
    (d) run the autoconfig on first level db
    e run the automatic configuration on the first node of apps
    (f) to start the apps on the first node of apps services

    the procedure described above should work. I recommend that first review you the procedure above in the test instance

  • How to remove a customer interface in CRM Siebel 8.1?

    Hi all

    I would like to know how can I remove a client user of Siebel CRM 8.1 interface?

    Thank you

    Try to find the Administration of Contact view.
    SADMIN should have access to this point of view.

  • How to remove your custom workflow?

    Hello

    Is it possible to delete a custom workflow that has already been uploaded to the database? How?

    Thank you
    Allen

    Please also see (how customizations are eliminated in a workflow? [REF 287369.1]) that mention two approaches (workflow designer and the wfrmitt.sql script).

    Again, try this on a test first instance before applying it to your production instance.

    Thank you
    Hussein

  • How to remove profiles customized in the section of camera calibration

    I installed the software, Xrite ColorChecker Passport and loaded a few profiles custom module development in respect of the calibration of the camera. There was a bug in the software and it me has failed to appoint these profiles. Once I uninstalled this version and loaded the new version of the name process works very well. I would like to be able to delete the profile unname of Lightroom, but I don't see how this is possible. Any suggestions?

    Thank you!

    C:\Users\{username}\AppData\Roaming\Adobe\CameraRaw\CameraProfiles

    in Windows 7, you can see: "Roaming", not "local".

  • How to remove colors custom Script UI control?

    Dear forum,

    I am writing a script for batch renaming links in InDesign.

    1.jpg

    If the user types the text edit field the new name which coincides with name of the original link (1st static text in the Group), the script gives a warning and he painted red.

    2.jpg

    3.jpg

    When the user solves the problem by making the new different name, the script he painted black.

    15-11-2015 20-30-37.jpg

    Here's where I got so far:

    g.et.onChange = function() {
        if (this.parent.children[0].text.replace(/\.[^\.]+$/, '') == this.text) {
            alert("\"" + this.text + "\" - the new name is the same as the old one! The file won't be renamed.", "Error", true);
            this.graphics.foregroundColor = this.graphics.newPen(this.graphics.PenType.SOLID_COLOR, [1, 0, 0], 1);
        }
        else {
            if (this.graphics.foregroundColor != undefined) {
                $.writeln("Names are different: change the name from red to black.");                        
                this.graphics.foregroundColor = this.graphics.newPen(this.graphics.PenType.SOLID_COLOR, [0, 0, 0], 1);
            }
        }
    }
    

    "g" is the text in a group.

    I wonder, is there a way to reset the color to the default text instead of repainting it?

    Currently, it checks if foregroundColor of graph is not undefined - which is painted with "newPen" - and if it is true, he painted black. But I guess it is a clumsy workaround and there should be a good way to do this.

    Kind regards

    Kasyan

    Hi Kasyan

    Pre CC could set the color to null, CC, this causes an accident.

    PS there are other options (color theme), but not on ID so paint is the only option I know.

    The challenge is dealing with default colors that depend on the setting. To change the text in the foreground is always black background colors you can either take the approach here Re: Re: Re: Re: ScriptUI: element of change to the default color

    Or a longer but more effective approach would be to go pass 100 values possible topic and get the associated rgb values.

    Probably not interesting put in a lot of effort as the way things are going THAT SUI will not support editing text in a few years.

    Concerning

    Trevor

  • How to remove the E-Business Suite R12 on linux?

    Hi guru

    I use Linux OS Server

    I use 2 charges, 1 Production and 1 Vision EBS - R12.
    Now, I need to remove a fee because I want to install the new configuration of charges.

    So please guide me how to remove E.Busainess suite R12 on Linux.

    Kind regards
    SBJ *.

    I use 2 charges, 1 Production and 1 Vision EBS - R12.
    Now, I need to remove a fee because I want to install the new configuration of charges.

    So please guide me how to remove E.Busainess suite R12 on Linux.

    https://forums.Oracle.com/forums/search.jspa?threadID=&q=remove+and+R12&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001
    https://forums.Oracle.com/forums/search.jspa?threadID=&q=clean+and+R12&objid=C3&DateRange=all&userid=&NumResults=15&rankBy=10001

    Thank you
    Hussein

  • How to set up custom and custom forms in R12

    We have the new environment, which is implemented recently started, I demand that I need to configure custom above on the other mount point, please let me know how to do it.


    Thanks for your help.

    Hello

    Check this metalink notes, do a search before posting, repeatedly discussed in this forum.

    How to add the custom in R12.0.6 form

    Note: 304266.1 - where the custom albums Environment Variable should get added?
    101048.1
    176852,1 - integration of customized with Oracle Applications Release 11i Applications

Maybe you are looking for

  • CMD d (insert new bookmarklet) is GONE... some add-on has messed up itup

    Hello: Ive been adding a lot of new add-on during the Christmas period.now lost my favorite SHORTCUT CMD-D to add new bookmark How can I get that back?

  • "timing" on the first iteration of bad

    Hi people! I have a problem with a timer, which gives me a wrong result (only) on the first iteration (see code below).  This test code is assumed to measure time, the loop should iterate x times. I expect to get always the same time (i.e. difference

  • Limit the size and the content of string

    I was wondering if there is an easy way, predefined limit the number of characters, and what characters are allowed in a string.  I want to limit a string of 20 characters and does not allow for the apostrophe, comma, etc..  I'm sure I can this progr

  • Finals 30 playlist songs fail to copy on an external device.

    How can I get the balance of my playlist music to copy on an external device, an SD card. About 80% of the way through the songs of task 30 last impossible to copy. All had "an error has occurred. Windows media player cannot find the specific file. M

  • Z3 Mediocre / weak Signal of WiFi

    I use the router ASUS RT - AC66U WiFi at home, and it is less than 10 meters away from my room. My old phones (iPhone 4S and Redmi Note) may have at least 3-4 bars in the worst case (ie: door closed).  However, this new phone Z3 can only display the