Standard Proxy Deleted:Method To Restore

Hi guys,
From the transaction code SPROXY, I was supposed to regenerate the standard proxy so that the changes made on the PI end for the same interface reflect in ECC as well. But my mistake I deleted the standard proxy and when I try to create the proxy with the standard prefix,it is asking for an access key.
So,I gave prefix as Z,and created but then because of the mismatch in prefix,it is showing an error message saying the namespace is not the same.
Please help me out. Is there any procedure to restore the standard proxy without the access key?or what are the other alternatives?
Vishwa.

Hi VJ,
It is not accepting developer access key, I think we need to give object access key.
And I have another issue right now,when I right click on CreditCommitmentMessage and say Check Proxy,it is displaying an error as "Unable to find software component version for namespace http://sap.com/xi/FSCM/Global".
Earlier, I deleted by mistake and created a New DTE_CreditCommitmentMessage which is the root node of CreditCommitmentMessage,I understand that this is not the standard one and can be created as well. But since then, I am getting this issue.
Could someone throw some light on this?
Vishwa.

Similar Messages

  • [svn:bz-trunk] 7494: Add testcaseses for http put and delete methods.

    Revision: 7494
    Author:   [email protected]
    Date:     2009-06-02 13:13:33 -0700 (Tue, 02 Jun 2009)
    Log Message:
    Add testcaseses for http put and delete methods. Proxy should return endpoint's content instead of empty body
    Added Paths:
        blazeds/trunk/qa/apps/qa-regress/remote/testMethods.jsp
        blazeds/trunk/qa/apps/qa-regress/testsuites/mxunit/tests/proxyService/httpservice/bugs/Pu tAndDeleteMethodTests.mxml

    found it - here: http://discussions.apple.com/thread.jspa?threadID=2323131&tstart=30
    I set the Realm to Location instead of Folder. Now I'm prompted for my credentials at the /svn/ URL.

  • From some reason (i'm not sure why..) my whole iphoto library got deleted. I restored the whole library from my backup. The photos are blank but steel have the photo info. (date, res., size etc.) Do you know what's the prob.? why can't i see my pics.

    from some reason (i'm not sure why..) my whole iphoto library got deleted. I restored the whole library from my backup. Now all the photos are blank but steel have the photo info. (date, res., size etc.) Do you know what's the prob.? why can't i see my pics.

    It's says that file does not exist. How come? And why does it still show the image info.?
    Where can i find those files (i have a daily backup)
    The original image files are missing form your iPhoto library or iPhoto cannot find them, because the link to the originals has been broken. The image info is stored in the internal libraries, independent of the original files. That is, why you are still seeing them.
    I restored the whole library from my backup.
    Try restoring from an older backup, from before you first noticed the problem. 
    How large is the library, that you restored? Is the file size large enough to hold all your photos, or has the size been reduced?  If the library is still large, the photos may still be inside, even if iPhoto cannot find them.
    It's says that file does not exist. How come?
    What happened, before your iPhoto library got deleted? Which applications have you been running, or which new software have installed or upgraded?  Have you moved the library to a different disk or tried to use it from different user account or access it over the network?

  • "Delete data and restore" option in Nokia N8

    I want to restore my N8 to fresh state as I have installed and uninstalled too many apps and they all have created and left a lot of files on C drive even after uninstalling them. They have ocupied some space on C drive.
    I am going for "Delete data and restore" option in phone management. I will back up all data with Nokia Suite before the procedure. I just want to know what all apps which are installed by default will be lost. Please enumerate every app or thing that will be lost.
    I know that default wallpapers, songs will be lost. I'm interested in default apps only. Likes dictionary, Zip, Communicator, Video editor, Photo editor,  My Nokia, Recorder, Shazam, Msg. reader, Adobe reader, Nat Geo, Movie Teasers, YouTube, E! etc. I have mentioned most here, may have missed some. Please enlist in detail.
    Thanks a lot.
    One more thing, this are should be improved by Nokia-uninstalling any app should remove it completely without any footprints.

    If you go to this page (and are logged in to the store) you will find all apps your previously downloaded and these are the apps that will be removed when you do a full reset. You can re-install them again afterwards provided you have not done so 10 times before.
    Please follow the steps below if you decide to completely reset your N8 and start with a fresh device:
    If you have data on the N8-00 you wish to keep create a backup using Nokia Suite but when asked deselect the option to include settings in the backup. You can start a backup through Tools>Backup in the Nokia Suite menu.
    Now disconnect your N8-00 from the PC and select the offline profile, press the on/off switch and from the menu which appears select and activate the profile offline.
    Enter the code *#7370# followed by the security code 12345. Please be aware this reset may take a while. Your N8-00 will restart when finished.
    After the N8-00 restarts go through the Device First Use sequence to setup the N8-00 correctly.
    Now connect the N8-00 to your PC again and let Nokia Suite install the requires files on N8-00. After this (re)install the latest system update. When you go to the update screen in Nokia Suite your will either be presented by a system update or you can choose to re-install the current (up to date) version again.
    After the update verify if there are any additional updates and install these as well.
    After this you can restore the backup if you made one.
    Kosh
    Press the 'Accept As Solution' icon if I have solved your problem, click on the Star Icon below if my advice has helped you!

  • I have followed the suggested methods of restoring my iphone by placing it into recovory mode, however itunes keeps asking for a response from my iphone except it is disabled

    i have followed the suggested methods of restoring my iphone by placing it into recovory mode, however itunes keeps asking for a response from my iphone except it is disabled and thus the restoration willnot continue

    There's a whole lot to read in your post, and frankly I have not read it all.
    Having said that, this troubleshooting guide should help:
    http://support.apple.com/kb/TS1538
    In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

  • Using Standard Windows Select Methods On Interactive Report

    I have an interactive report. Right now I have a check box on each row to select the row. However, this means to select 10 rows you have to click 10 times. I would like to make it possible to use standard Windows select methods - click first row, hold shift key, and click 10th row to result in 10 rows selected. I haven't found how to do this in Apex but I assume it is possible. Thoughts? I googled but maybe not looking for the right thing as I find lots but not what I am looking for.

    Hi,
    you could do something like this:
    1) Create IR report like
    select 
      apex_item.checkbox(1,empno,'UNCHECKED') foo,
      "EMP"."EMPNO" as "EMPNO",
      "EMP"."ENAME" as "ENAME",
      "EMP"."SAL" as "SAL"
    from 
      "EMP" "EMP"2)In you page properties put following code in
    a)Function and Global Variable Declaration:
    In this code I reference f01, because in select I use apex_item.checkbox(1,......
    function isKeyPressed(event)
      var target = event.target ? event.target : event.srcElement;
      if (target.name=='f01'){
        if (event.shiftKey==1){
          i_start = -1;
          i_end = -1;  
          i_swap = -1;     
          end_val = target.value;
          cb = document.getElementsByName('f01');
          for (i=0; i <= cb.length - 1;i++){
            if (cb.value == end_val)
    i_end = i;
    if (cb[i].value == start_val)
    i_start = i;
    if (i_start > i_end){
    i_swap = i_start;
    i_start = i_end;
    i_end = i_swap;
    for (i=i_start; i < i_end;i++){
    if (cb[i_start].checked == true)
    cb[i].checked = true;
    if (cb[i_start].checked == false)
    cb[i].checked = false;
    else{
    start_val = target.value;
    b)Page HTML Body Attributeonmousedown="isKeyPressed(event)"
    You can check example on http://apex.oracle.com/pls/apex/f?p=60428:9
    Regards,
      Aljaz                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • If alert log is deleted, how to restore it?

    Hi,
    I want to know if Alert log is deleted, how to restore it?

    RMAN does not backup the alertlog, only an OS filesystem backup does this. In 11g and higher there are 2 versions of the alertlog, the well-known textfile and now additionally a file in xml format. IF only the text version is lost, command line utility adrci can still access the xml file:
    http://docs.oracle.com/cd/E11882_01/server.112/e22490/adrci.htm#BGBBBBEA

  • Please Help Me, Delete Method(any suggestions!!)

    Can anyone spare the time to look at the below three classes and suggest a method that goes into the customerList class and deletes a record from the Oracle DB they are sitting on top of.
    For example when the deleteCust button is pressed on the form (customerForm) I would like it to delete the current customer (currentCustomer) that is displayed on the form at the time of the button click.
    Can anyone please HELP me, it would be very much appreciated :-)
    customer class
    import java.util.*;
    import java.sql.*;
    public class Customer{
    private int customer_id;
    private String customer_name;
    private String address1;
    private String address2;
    private String town;
    private String county;
    private String post_code;
    private String country;
    private String fax;
    private String telephone;
    private String contact_name;
    private String email;
    private boolean newCustomer;
    //private JobList jobList;
    public Customer(int c){
    customer_id = c;
    newCustomer = true;
    public Customer(int inCustomer_id,String inCustomer_name,String inAddress1, String inAddress2, String inTown, String inCounty,String inPost_code,String inCountry,String inFax,String inTelephone,String inContact_name,String inEmail){
    customer_id=inCustomer_id;
    customer_name=inCustomer_name;
    address1=inAddress1;
    address2=inAddress2;
    town=inTown;
    county=inCounty;
    post_code=inPost_code;
    country=inCountry;
    fax=inFax;
    telephone=inTelephone;
    contact_name=inContact_name;
    email=inEmail;
    newCustomer = false;
    public String getAddress1(){
    if (address1 == null)
    return ("");
    else
    return address1;
    public String getAddress2(){
    if (address2 == null)
    return ("");
    else
    return address2;
    public String getCounty(){
    if (county == null)
    return ("");
    else
    return county;
    public String getFax(){
    if (fax == null)
    return ("");
    else
    return fax;
    public int getCustomer_id(){
    if (customer_id == 0)
    return (0);
    else
    return customer_id;
    public String getCustomer_name(){
    if (customer_name == null)
    return ("");
    else
    return customer_name;
    public String getTelephone(){
    if (telephone == null)
    return ("");
    else
    return telephone;
    public String getPost_code(){
    if (post_code == null)
    return ("");
    else
    return post_code;
    public String getTown(){
    if (town == null)
    return ("");
    else
    return town;
    public String getCountry(){
    if (country == null)
    return ("");
    else
    return country;
    public String getContact_name(){
    if (contact_name == null)
    return ("");
    else
    return contact_name;
    public String getEmail(){
    if (email == null)
    return ("");
    else
    return email;
    /*public JobList getJobList() throws SQLException {
    // if the joblist object exists return it otherwise create it
    if (jobList != null){
    return jobList;
    else{
    return new JobList(this);
    public boolean isNewCustomer(){
    return newCustomer;
    public void setAddress1(String inAddress1){
    address1=inAddress1;
    public void setAddress2(String inAddress2){
    address2=inAddress2;
    public void setCounty(String inCounty){
    county=inCounty;
    public void setFax(String inFax){
    fax=inFax;
    public void setCustomer_id(int inCustomer_id){
    customer_id = inCustomer_id;
    public void setCustomer_name(String inCustomer_name){
    customer_name=inCustomer_name;
    public void setTelephone(String inTelephone){
    telephone=inTelephone;
    public void setPost_code(String inPost_code){
    post_code=inPost_code;
    public void setTown(String inTown){
    town=inTown;
    public void setCountry(String inCountry){
    country=inCountry;
    public void setContact_name(String inContact_name){
    contact_name=inContact_name;
    public void setEmail(String inEmail){
    email=inEmail;
    customerList class
    import java.sql.*;
    import java.util.*;
    public class CustomerList{
    private ResultSet rs ;
    private Connection con;
    private Statement stmt;
    public CustomerList () {
    ConnectionManager man = ConnectionManager.getInstance();
    con = man.getConnection();
    public Customer getFirstCustomer()throws SQLException {
    Customer firstCustomer;
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    rs = stmt.executeQuery("select customer_id,customer_name,address1,address2,town,county,post_code,country,fax,telephone,contact_name,email from customer");
    rs.next();
    firstCustomer = loadCustomer();
    return firstCustomer;
    public Customer getLastCustomer() throws SQLException{
    Customer lastCustomer;
    rs.last();
    lastCustomer = loadCustomer();
    return lastCustomer;
    public Customer getNextCustomer()throws SQLException{
    Customer nextCustomer ;
    if (rs.next()){
    nextCustomer = loadCustomer();
    else{
    nextCustomer = null;
    return nextCustomer;
    public Customer getPreviousCustomer()throws SQLException{
    Customer previousCustomer;
    if (rs.previous()){
    previousCustomer = loadCustomer();
    else
    previousCustomer = null;
    return previousCustomer;
    public Customer findCustomer(int inCustNum) throws SQLException{
    Customer foundCust;
    if (inCustNum==0){
    foundCust = getFirstCustomer();
    else{
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    rs = stmt.executeQuery("select customer_id,customer_name,address1,address2,town,county,post_code,country,fax,telephone,contact_name,email from customer where customer_id = "+inCustNum);
    if (rs.next()){
    foundCust = loadCustomer();
    else
    foundCust = null;
    return foundCust;
    public Customer addCust()throws SQLException{
    Statement stmt2 = con.createStatement();
    ResultSet rsadd = stmt2.executeQuery("select custid.nextval from dual");
    rsadd.next();
    int id = rsadd.getInt("nextval");
    rsadd.close();
    stmt2.close();
    Customer newCust = new Customer(id);
    return newCust;
    public Customer saveCustomer(Customer inSaveCust)throws SQLException{
    Statement stmt3 = con.createStatement();
    int rowNum;
    //int incid = inSaveCust.getCid();
    if (inSaveCust.isNewCustomer()){
    stmt3.executeUpdate("insert into customer values ("
    +inSaveCust.getCustomer_id()
    +",'"+inSaveCust.getCustomer_name()
    +"','"+inSaveCust.getAddress1()
    +"','"+inSaveCust.getAddress2()
    +"','"+ inSaveCust.getTown()
    +"','"+ inSaveCust.getCounty()
    +"','"+inSaveCust.getPost_code()
    +"','"+inSaveCust.getCountry()
    +"','"+inSaveCust.getFax()
    +"','"+ inSaveCust.getTelephone()
    +"','"+inSaveCust.getContact_name()
    +"','"+inSaveCust.getEmail()+"')");
    inSaveCust = getFirstCustomer();//refreshes list after insert
    inSaveCust = getLastCustomer();// goes to the inserted record ie last one
    else {
    rowNum = rs.getRow();//traps the record number so can be returned to
    stmt3.executeUpdate("update customer set customer_name = '"+inSaveCust.getCustomer_name()
    + "', address1 = '"+inSaveCust.getAddress1()
    + "', address2 = '"+inSaveCust.getAddress2()
    + "', town = '"+ inSaveCust.getTown()
    + "', county = '"+ inSaveCust.getCounty()
    + "', post_code = '"+inSaveCust.getPost_code()
    + "', telephone = '"+inSaveCust.getCountry()
    + "', fax = '"+inSaveCust.getFax()
    + "', country = '"+inSaveCust.getTelephone()
    + "', contact_name = '"+inSaveCust.getContact_name()
    + "', email = '"+inSaveCust.getEmail()
    +"' where customer_id = "+inSaveCust.getCustomer_id());
    inSaveCust = getFirstCustomer();
    rs.absolute(rowNum); // points back to same record number as updated
    inSaveCust = loadCustomer();
    con.commit();
    return inSaveCust;
    //Trying to add in the delete method here(as u can see it is not working)
    /*public Customer deleteCustomer() throws SQL Exception {
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_READ_ONLY);
    rs = stmt4.executeQuery("delete from customer where customer_id = "Integer.parseInt(textCustomer_id.getText()));
    rs.next();
    firstCustomer = loadCustomer();
    return firstCustomer;
    public boolean isFirst() throws SQLException{
    return rs.isFirst();
    public boolean isLast() throws SQLException{
    return rs.isLast();
    public Customer loadCustomer ()throws SQLException{
    Customer cust = new Customer(rs.getInt("customer_id"),rs.getString("customer_name"),rs.getString("address1"),
    rs.getString("address2"),rs.getString("town"),rs.getString("county"),
    rs.getString("post_code"),rs.getString("country"),rs.getString("fax"),
    rs.getString("telephone"),rs.getString("contact_name"),rs.getString("email"));
    return cust;
    customerForm class
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.util.*;
    public class CustomerForm extends JFrame implements ActionListener {
    private Customer currentCustomer;
    private CustomerList inCustomerList;
    private JPanel panel;
    private JTextField textCustomer_id,textCustomer_name,textAddress1,textAddress2,textTown,
    textCounty,textPost_code,textCountry,textTelephone,textFax,textContact_name,textEmail,textFind;
    private JButton nextCust, prevCust,firstCust,lastCust,newCust,
    findCust,add,save,delete,jobs,close,deleteCust;
    public CustomerForm(CustomerList inC)throws SQLException{
    inCustomerList = inC;
    currentCustomer = inCustomerList.getFirstCustomer();
    displayForm();
    displayFields();
    setTextFields();
    displayButtons();
    getContentPane().add(panel);
    setVisible(true);
    public void displayForm() throws SQLException{
    setTitle("Customer Form");
    setSize(700,500);
    // Center the frame
    Dimension dim = getToolkit().getScreenSize();
    setLocation(dim.width/2-getWidth()/2, dim.height/2-getHeight()/2);
    getContentPane().setLayout(new BorderLayout());
    Border etched = BorderFactory.createEtchedBorder();
    panel = new JPanel();
    panel.setLayout( null );
    Border paneltitled = BorderFactory.createTitledBorder(etched,"");
    panel.setBorder(paneltitled);
    panel.setBackground(new Color(224,224,255));
    public void displayFields() throws SQLException{
    int x = 10;
    int y = 50;
    int textheight = 20;
    int textwidth = 150;
    int labelwidth = 110;
    int ydist = textheight + 10;
    int xdist = textwidth*2;
    JLabel labelCustomer_id = new JLabel("Customer Number:");
    labelCustomer_id.setBounds( x, y, labelwidth, textheight);
    panel.add(labelCustomer_id);
    JLabel labelCustomer_name = new JLabel("Customer Name:");
    labelCustomer_name.setBounds(xdist, y, labelwidth, textheight);
    panel.add(labelCustomer_name);
    JLabel labelAddress1 = new JLabel("Address 1:");
    labelAddress1.setBounds( x, y+ydist, labelwidth, textheight);
    panel.add(labelAddress1);
    JLabel labelAddress2 = new JLabel("Address 2:");
    labelAddress2.setBounds( xdist, y+ydist, labelwidth, textheight);
    panel.add(labelAddress2);
    JLabel labelTown = new JLabel("Town:");
    labelTown.setBounds(x, y+ydist*2, labelwidth, textheight);
    panel.add(labelTown);
    JLabel labelCounty = new JLabel("County:");
    labelCounty.setBounds(xdist, y+ydist*2, labelwidth, textheight);
    panel.add(labelCounty);
    JLabel labelPost_code = new JLabel("Post Code:");
    labelPost_code.setBounds(x, y+ydist*3, labelwidth, textheight);
    panel.add(labelPost_code);
    JLabel labelCountry = new JLabel("Country:");
    labelCountry.setBounds(xdist, y+ydist*3, labelwidth, textheight);
    panel.add(labelCountry);
    JLabel labelTelephone = new JLabel("Phone:");
    labelTelephone.setBounds(x, y+ydist*4, labelwidth, textheight);
    panel.add(labelTelephone);
    JLabel labelFax = new JLabel("Fax:");
    labelFax.setBounds(xdist, y+ydist*4, labelwidth, textheight);
    panel.add(labelFax);
    JLabel labelContact_name = new JLabel("Contact Name:");
    labelContact_name.setBounds(x, y+ydist*5, labelwidth, textheight);
    panel.add(labelContact_name);
    JLabel labelEmail = new JLabel("E-mail address:");
    labelEmail.setBounds(xdist, y+ydist*5, labelwidth, textheight);
    panel.add(labelEmail);
    JLabel labelFind = new JLabel("Customer Number Search:");
    labelFind.setBounds( 40, 360, 200, textheight);
    panel.add(labelFind);
    textAddress1 = new JTextField();
    textAddress1.setBounds(x+labelwidth, y+ydist, textwidth, textheight);
    panel.add(textAddress1);
    textAddress2 = new JTextField();
    textAddress2.setBounds(xdist+labelwidth, y+ydist, textwidth, textheight);
    panel.add(textAddress2);
    textTown = new JTextField();
    textTown.setBounds(x+labelwidth, y+ydist*2, textwidth, textheight);
    panel.add(textTown);
    textCounty = new JTextField();
    textCounty.setBounds(xdist+labelwidth, y+ydist*2, textwidth, textheight);
    panel.add(textCounty);
    textPost_code = new JTextField();
    textPost_code.setBounds(x+labelwidth, y+ydist*3, textwidth, textheight);
    panel.add(textPost_code);
    textCountry = new JTextField();
    textCountry.setBounds(xdist+labelwidth, y+ydist*3, textwidth, textheight);
    panel.add(textCountry);
    textTelephone = new JTextField();
    textTelephone.setBounds(x+labelwidth, y+ydist*4, textwidth, textheight);
    panel.add(textTelephone);
    textFax = new JTextField();
    textFax.setBounds(xdist+labelwidth, y+ydist*4, textwidth, textheight);
    panel.add(textFax);
    textContact_name = new JTextField();
    textContact_name.setBounds(x+labelwidth, y+ydist*5, textwidth, textheight);
    panel.add(textContact_name);
    textEmail = new JTextField();
    textEmail.setBounds(xdist+labelwidth, y+ydist*5, textwidth+50, textheight);
    panel.add(textEmail);
    textFind = new JTextField();
    textFind.setBounds(200, 360, 80, textheight);
    panel.add(textFind);
    textCustomer_id = new JTextField();
    textCustomer_id.setBounds(x+labelwidth, y, textwidth, textheight);
    panel.add(textCustomer_id);
    textCustomer_name = new JTextField();
    textCustomer_name.setBounds(xdist+labelwidth, y, textwidth+50, textheight);
    panel.add(textCustomer_name);
    public boolean delete() {
    textCustomer_id.setText("");
    textCustomer_name.setText("");
    textAddress1.setText("");
    textAddress2.setText("");
    textTown.setText("");
    textCounty.setText("");
    textPost_code.setText("");
    textCountry.setText("");
    textTelephone.setText("");
    textFax.setText("");
    textContact_name.setText("");
    textEmail.setText("");
    textFind.setText("");
    return true;
    public void displayButtons(){
    firstCust= new JButton("FIRST");
    firstCust.addActionListener(this);
    firstCust.setBounds(50, 430, 100, 20 );
    panel.add( firstCust );
    nextCust = new JButton("NEXT");
    nextCust.addActionListener(this);
    nextCust.setBounds(150, 430, 100, 20 );
    panel.add( nextCust );
    prevCust = new JButton("PREVIOUS");
    prevCust.addActionListener(this);
    prevCust.setBounds(250, 430, 100, 20 );
    panel.add( prevCust );
    lastCust= new JButton("LAST");
    lastCust.addActionListener(this);
    lastCust.setBounds(350, 430, 100, 20 );
    panel.add( lastCust );
    findCust= new JButton("FIND");
    findCust.addActionListener(this);
    findCust.setBounds(350, 360, 100, 20 );
    panel.add( findCust );
    add = new JButton("ADD");
    add.addActionListener(this);
    add.setBounds(150, 400, 100, 20 );
    panel.add( add );
    save = new JButton("SAVE");
    save.addActionListener(this);
    save.setBounds(250, 400, 100, 20 );
    panel.add( save );
    jobs = new JButton("JOBS");
    jobs.addActionListener(this);
    jobs.setBounds(550, 360, 100, 20 );
    panel.add( jobs );
    close = new JButton("CLOSE");
    close.addActionListener(this);
    close.setBounds(550, 430, 100, 20 );
    panel.add( close );
    delete = new JButton("DELETE");
    delete.addActionListener(this);
    delete.setBounds(350, 400, 100, 20 );
    panel.add( delete );
    deleteCust = new JButton("DELETECUST");
    deleteCust.addActionListener(this);
    deleteCust.setBounds(450, 400, 100, 20);
    panel.add( deleteCust );
    public void getTextFields(){
    currentCustomer.setCustomer_id(Integer.parseInt(textCustomer_id.getText()));
    currentCustomer.setCustomer_name(textCustomer_name.getText());
    currentCustomer.setAddress1(textAddress1.getText());
    currentCustomer.setAddress2(textAddress2.getText());
    currentCustomer.setTown(textTown.getText());
    currentCustomer.setCounty(textCounty.getText());
    currentCustomer.setPost_code(textPost_code.getText());
    currentCustomer.setCountry(textCountry.getText());
    currentCustomer.setFax(textFax.getText());
    currentCustomer.setTelephone(textTelephone.getText());
    currentCustomer.setContact_name(textContact_name.getText());
    currentCustomer.setEmail(textEmail.getText());
    public void setTextFields() throws SQLException{
    textCustomer_id.setText(String.valueOf(currentCustomer.getCustomer_id()));
    textCustomer_id.setEditable(false);
    textCustomer_name.setText(currentCustomer.getCustomer_name());
    textAddress1.setText(currentCustomer.getAddress1());
    textAddress2.setText(currentCustomer.getAddress2());
    textTown.setText(currentCustomer.getTown());
    textCounty.setText(currentCustomer.getCounty());
    textPost_code.setText(currentCustomer.getPost_code());
    textCountry.setText(currentCustomer.getCountry());
    textFax.setText(currentCustomer.getFax());
    textTelephone.setText(currentCustomer.getTelephone());
    textContact_name.setText(currentCustomer.getContact_name());
    textEmail.setText(currentCustomer.getEmail());
    public void actionPerformed(ActionEvent e) {
    Object source = e.getSource();
    try {
    if (source == nextCust)
    currentCustomer = inCustomerList.getNextCustomer();
    else if (source == prevCust)
    currentCustomer = inCustomerList.getPreviousCustomer();
    else if (source == findCust) {
    try {
    currentCustomer =
    inCustomerList.findCustomer(Integer.parseInt(textFind.getText()));
    catch (NumberFormatException ex) {
    JOptionPane.showMessageDialog(
    null, "Invalid Customer number", "ERROR",
    JOptionPane.ERROR_MESSAGE);
    if (currentCustomer == null) {
    JOptionPane.showMessageDialog(null, "Customer not found");
    currentCustomer = inCustomerList.getFirstCustomer();
    textFind.setText(null);
    else if (source == firstCust)
    currentCustomer = inCustomerList.getFirstCustomer();
    else if (source == lastCust)
    currentCustomer = inCustomerList.getLastCustomer();
    else if (source == add) {
    currentCustomer = inCustomerList.addCust();
    add.setEnabled(false);
    else if (source == delete) {
    delete();
    else if (source == save) {
    add.setEnabled(true);
    getTextFields();
    currentCustomer = inCustomerList.saveCustomer(currentCustomer);
    //else if (source == jobs) {
    // JFrame newJobForm = new JobForm(currentCustomer.getJobList());
    //else if (source == deleteCust) {
    //........... //currentCustomer = inCustomerList.deleteCustomer(currentCustomer);
    else if (source == close) {
    dispose();
    setTextFields();
    nextCust.setEnabled(!inCustomerList.isLast());
    prevCust.setEnabled(!inCustomerList.isFirst());
    firstCust.setEnabled(!inCustomerList.isFirst());
    lastCust.setEnabled(!inCustomerList.isLast());
    catch (SQLException ex) {
    System.out.println("Failed");
    System.out.println(ex.getMessage());
    ex.printStackTrace();
    System.exit(-1);
    PLEASE HELP ME!!!

    http://www.ss64.demon.co.uk/orasyntax/

  • Re-Implementing Standard Class's Method

    Hi ,
    I want to Enhance a Standard class's Method.
    For this class "/SAPSRM/CL_CLL_PWL_A_SC_H" i want to write a new implementation for method "IF_POWL_FEEDER~GET_DETAIL_COMP".
    This method is inherited from "/SAPSRM/CL_CLL_POWL_BASE_AGENT" and is implemented in this class.
    Now if i want to write a new implementation in class "/SAPSRM/CL_CLL_PWL_A_SC_H" , how do i do it?
    Regards,
    Ashish Shah

    Created an Implicit Enhancement of Class /SAPSRM/CL_CLL_POWL_BASE_AGENT , method  IF_POWL_FEEDER~GET_DETAIL_COMP.
    Solved by using import parameter I_TYPE of IF_POWL_FEEDER~GET_DETAIL_COMP method.

  • How to disable PUT/DELETE method in SMC tomcat

    Hi,
    SMC provides tomcat as the web server to allow logon the SMC console through IE.
    For security consideration, we have to disable the http "PUT" and "DELETE" method of tomcat. Its config file seems to be /opt/SUNWsymon/web/conf/catalina.policy, but I have no knowledge of this file.
    Do anyone know how to disable PUT/DELETE method in tomcat? Or provide me a reference book for this issue?
    Thanks a lot.

    For security consideration, we have to disable the
    http "PUT" and "DELETE" method of tomcat. Its config
    file seems to be
    /opt/SUNWsymon/web/conf/catalina.policy, but I have
    no knowledge of this file.I'm not sure how to disable that feature, but be aware if you disable the ability for Agents to send files to the SunMC web server you may break all Configuration Tasks. Agent config files are sent to the Server by HTTP to allow them to be stored as templates/snapshots.
    I don't remember seeing instructions on how to make the changes you want: the quickest way to find out is probably to call SunMC support.
    Regards,
    [email protected]

  • Standard proxy

    hi guruz
    how can we see standard proxy in system for particular system,(like for CRM ,SRM etc).
    warm regards.
    Edited by: Pawan chauhan on Dec 22, 2008 4:14 PM

    Hey,
    you need to do certain configurations on the application server to see the interfaces in the SPROXY transaction.
    These are the settings that need to be done.
    R3 side
    SLDCHECK
      Use this transaction to access the SLD of XI.
    SLDAPICUST
      Create an entry for respective XI server
      requires hostname, port username and ip.
      Can have multiple enteries for different servers.
      But you can check only one entry.
      based on the entry that is checked, respective SLD API will be triggered from
      SLDCHECK.
    SM59 (T type connections).
      To connect to the SLD you need 2 types of TCP/IP connections.
      1)LCRSAPRFC:-
          In this you require the gateway host(ip address) and gatewayservice(sapgw[system no.])
          YOu also need to give Program ID.
          Entry of corresponding Program ID must be maintained in SMGW.
          IN SMGW Click GoTo->logged on Clients.
          If entry is not there for corresponding XI.
          Create a communication channel in XI, pointing to R3 and give a Program ID
          in the channel. Once the channel is activated, corresponding Program ID wil
          appear in SMGW.
      2)SAPSLDAPI:-
         In this case follow the same porcedure as for LCRSAPRFC.
       As far as the Program ID is concerned te procedure mentioned above is for
       Customized RFC's
       The RFC destinations mentioned here are both standard RFC's
       Hence for these two RFC's no need to Create Program ID's. you just need to
       change the System ID of the Program ID.
       Both these RFC's are maintained in the J2ee server of XI.
    SPROXY.
       In this transcation you can check the Proxies.
       If the proxies are not activated (i.e. if the message interfaces are not active)
       then you need to maintain one G type RFC destination pointing the resepctive XI server.
       In the G tpye RFC destination give the Ip adress of the XI server in the target
       host and set the path prefix as /rep.
       Goto SPROXY->Goto->connection test-> click on the table SPROXSET.
       In this table maintain enteries for ADDRESS_ONLY_FROM_SPROXSET and IFR_HTTP_DEST
       The values corresponding to these enteries will be the G tpye RFC destination.
    In order to connect R3 to the Integaration server you need to maintain H type
    The default RFC is XI_INTEGRATIONSERVER. In you need to give the Target host entry as the
    Ip address and Path Prefic as.../sap/XI/engine/?type=entry (this you can get from SXMB_ADM of XI)
    You can also create the H type RFc of your own.
    goto SXMB_ADM(r3) and open Integration engine configuration.
    Goto edit->change global configuration and give the RFC dest name like this:-
    Corresponding Integration server:- dest://{h-type rfc destination}
    If you do not want to create RFC destination you can directly give
    the Integration server address(that you can obtain from SXMB_ADM of XI) in the
    Corresponding Integration server field.
    regards,
      Milan.

  • All my data on my phone got deleted so I restored it through Itunes and now my IMessage will not recieve nor send out messages through my phone number but my email. I've tried alot but non is really working, help please !!

    All my data on my phone got deleted so I restored it through Itunes and now my IMessage will not recieve nor send out messages through my phone number but my email. I've tried alot but non is really working, help please !!

    Ok. You don't have to select your number. Just check your email under your "grey" number and then at the bottom of this page you will see the option "Start new conversations from". Select your number.

  • Methods of restore

    What are the various methods of restoring/reseting an iphone?
    I know you can reset by holding the sleep/wake and home buttons until the Apple logo appears.
    And I know a restore can be done via iTunes.
    Are there other ways?

    X1Zero wrote:
    What are the various methods of restoring/reseting an iphone?
    I know you can reset by holding the sleep/wake and home buttons until the Apple logo appears.
    And I know a restore can be done via iTunes.
    Are there other ways?
    No

  • Creating table withtranslation via the standard SAP translation method

    Hi All,
    i have created a Z_test table with fields mandt, field ,spras, and field discription.
    I have created a maintanence gererator for  table  Z_test  where i use to maintain description in different languages
    like EN and DE.
    but instead of this i want to use standard SAP translation method for translation(instead of maintaining in various languages)
    can any one help

    Hi Pankaj,
    In the standard table say example MAKT in which Maktx is for material descriiption.
    Now when you create  a material using MM01 in EN language say your language the description get stores in english language..
    similary if you login in DE language and create a material using MM01 te description for the material gets stored in login language in maktx field.. This is how it works for different logon languages..
    so if you are fectching the maktx from makt you can use in the below way
    select matnr
              maktx
             from makt
             into table itab
            where matnr = 'your required material number' and
                        spras = sy-langu.
    now by the above select statment it gets the description in your logon language..
    I guess there is no transalation given by sap to transalate the records from one language to other language..  I surely believe there is no such option given for your case.
    In your case you need to use
    select mandt
              field
             spras
             fielddes
             from Z_test
            into itab
            where spras = sy-langu.
    you will get the descrition in your logon language.
    Regards
    Satish Boguda

  • Hot code replace failed - Delete method not implemented

    I debug my Java application with Eclipse (3.1). When I change my code during debugging, I get the following error message:
    ...MyApp at localhost:4540 (may be out of synch) was unable to replace the running code with the code in the workspace.
    Reason:
    Hot code replace failed - Delete method not implemented
    What does that mean and how can I fix this?

    This means you changed a class while it was debugging an application and it could not update the class for the application while it was running.
    The error suggests you may be running an older JVM, i.e. pre-1.4.2 but this error can occur with any JVM if the change is incompatible with the previous version of the class.
    The hot replace often does not work for non trivial changes to code.

Maybe you are looking for

  • New Matrices on System Forms

    Is it possible to create an additional matrix on a system form?  If so, how?  I would greatly appreciate a code sample for doing this.  Thank you.

  • Problem in Refreshing data

    Hi Gurus, i have added a new column in MD04. Here my problem is while populating the data in New column standard program is Refreshing my data. say .... Avl Qty      USEX1 (new column)    2                     2    1                     3(sum of 2 +1

  • What exactly does private browsing mean ?

    Does this mean you can't be tracked even though your using through wifi ?

  • Camera Raw Compatibility Update 3.6

    I read elsewhere on this forum that Raw format support is system-wide (I am running OS X 10.6.6) but when I tried to run the installer it tells me it will only work with Aperture 3 or iPhoto 11. My computer came with iPhoto 09. Prior updates worked f

  • Can't access OS X shared folder after Win 8 upgrade

    I have a Mountain Lion Mac and a Win 7 PC with folder sharing over wifi for many months. After the Win 8 upgarde last night, the Mac still can read and write the shared PC folder, but not vice versa. PC sees Mac as a network drive, but it keeps sayin