I am facing problem in calling Ztransaction second time ?

Hi All,
I have no issues while calling ztransaction first time , but while calling second time it is taking too much time ,
if we are entering transaction code  in command field only i am facing this problem , no issues when we call tcode programatically using call transaction keyword , what is the reason for this and how to avoid it...
thanks in advance.

Hi,
Tick on all (Three) GUI Support check box and try.
Tcode se93
regds,
paras

Similar Messages

  • Hi I am using iphone 4, since last few days i am facing problem in touch screen at times it doesn't work at all for 5-10 mins and then it works out itself. Can anyone pls suggest what the problem is and how it can be sorted out?

    Hi I am using iphone 4, since last few days i am facing problem in touch screen at times it doesn’t work at all for 5-10 mins and then it works out itself. Can anyone pls suggest what the problem is and how it can be sorted out?

    Did you recently updated to 7.0.4? Even for me same also issues.

  • Dialog Box does not function when called a second time

    I have created a dialog box that only seems to work once in a larger application. The box is designed to be a MatLab code debugger. My idea was to allow a user to interactively create/debug Matlab code from LabView using ActiveX automation. Anyway, I have created a test vi that uses this dialog box twice. The first time it is called it functions as expected, but the second time nothing on the front panel (of the dialog box) responds and I cannot close the window or interrupt the vi. I am using LabVIEW 7.0 on Windows 98. Please see the attached vi's. MatlabDebugger.vi is the dialog that's causing the problem. Matlabx2.vi is the sub vi that handles the ActiveX automation. Debuggertest.vi is the test v
    i in which the dialog will not word a second time.
    Thanks in advance for any help or suggestions.
    Attachments:
    Debuggertest.vi ‏51 KB
    MatlabDebugger.vi ‏303 KB
    Matlabx2.vi ‏361 KB

    The problem is caused by the nested event structures; you have an event structure inside an event structure, acting on the same controls. When the main one reacts to the cancel the other one get's stuck...so on the next call the main event structure just halts due to the stuck event structure inside it. It's not obvious why this is a fault, you may be able to spot it now that you're on the track though.
    MTO

  • My iPhone 5 gives a busy tone whenever someone calls the first time. The person has to call a second time for the ringtone to be heard? How o I tux this issue? I have a missed call every time and then a ringtone.

    My iPhone 5 gives the caller a busy tone the first time when the phone is actually not in use. The caller has to make another call to get the ringtone. I will get the first call as missed with no ringtone and then the second time it will ring. What can be fond to solve this problem ?

    Turn off Do Not Disturb.
    http://support.apple.com/kb/HT5463?viewlocale=en_US&locale=en_US

  • JDialog: Repaint does not work as wanted when called a second time

    Hi,
    I have created a JDialog with a More/Less Details button which, when invoked, shows or not shows a JScrollPane with a JEditorPane and resizes the dialog window to make space for that extra component or to take away that space.
    It works fine the first time I invoke the JDialog (see main method). But if I invoke it a second time and want to see the details the details JScrollPane is not fully shown.
    I have experimented with repaint and revalidate on different panels but to no avail.
    I am quite new to Swing, what am I misunderstanding? Is my Close-button not tidying up properly?
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import java.awt.*;
    class Tester extends JDialog {
        private static int totalWidth = 200;
        private static int totalHeight = 100;
        private static int detailsPanelHeight = 200;
        public Tester() {
         super();
        public static int createAndShowGUI() {
         Tester td = new Tester();
         return td.doGUI();
        public int doGUI() {
            //Create and set up the window.
         setPreferredSize(new Dimension(totalWidth, totalHeight+detailsPanelHeight));
         setModal(true);
         setResizable(false);
         setTitle("Tester");
         setAlwaysOnTop(true);
         final Container mainPane = getContentPane();
         mainPane.setLayout(new FlowLayout());
         // *** Panel for details
         final JEditorPane detailsText = new JEditorPane("text/html", "<HTML>Some <i>html</i>.</HTML>");
         final JScrollPane detailsPanel = new JScrollPane(detailsText);
         detailsPanel.setBorder(new TitledBorder("Details"));
         detailsText.setEditable(false);
         detailsPanel.setPreferredSize(new Dimension(totalWidth-100, detailsPanelHeight));
         detailsPanel.setVisible(false);
         // *** Panel for Info
         final JToggleButton detailsBtn = new JToggleButton("More Details");
         detailsBtn.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                  if (detailsBtn.isSelected()) {
                   detailsBtn.setText("Less Details");
                   detailsBtn.repaint();
                   detailsPanel.setVisible(true);
                   setBounds(getX(), getY(),
                          getWidth(), getHeight()+detailsPanelHeight);
                   // Also tried detailsPanel.revalidate(), mainPane.revalidate/repaint()
                   // to no avail
                   detailsPanel.repaint();
                  else {
                   detailsBtn.setText("More Details");
                   detailsBtn.repaint();
                   detailsPanel.setVisible(false);
                   setBounds(getX(), getY(),
                          getWidth(), getHeight()-detailsPanelHeight);
                   detailsPanel.repaint();
         // *** Panel for buttons
         JPanel btnPanel = new JPanel();
         mainPane.add(btnPanel);
         mainPane.add(detailsPanel);
         // Allow Button
         JButton allowBtn = new JButton("Close");
         allowBtn.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e) {
                  setVisible(false);
                  dispose();
         btnPanel.add(allowBtn);
         btnPanel.add(detailsBtn);
            //Display the window.
            pack();
         setBounds(getX(), getY(), totalWidth, totalHeight);
            setVisible(true);
         return 1;
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
              public void run() {
                  // Run once and you can see details in nice window
                  System.err.println(Tester.createAndShowGUI());
                  // Run twice and switching on details shows an empty space
                  System.err.println(Tester.createAndShowGUI());
    }

    Replace your action preformed with this:
    public void actionPerformed(ActionEvent e) {
        if (detailsBtn.isSelected()) {
         detailsBtn.setText("Less Details");
         setSize(new Dimension(
                getWidth(), getHeight()+detailsPanelHeight));
         detailsPanel.setVisible(true);
        else {
         detailsBtn.setText("More Details");
         detailsPanel.setVisible(false);
         setSize(new Dimension(
                     getWidth(), getHeight()-detailsPanelHeight));
        validate();
    }

  • Original I phone4 user facing problem while calling or receiving a call.

    I have an Iphone 4 which i purchased from HK. All of a sudden now, (after a year) I have started facing a problem when I talk on the phone. While talking (whether i received a call or made) I can hear the other person but the person on the other side cannot hear me. Further, when this happens, I need to restart my phone. It then works ok for a few mnutes and again during a call I face the same problem. Please advise what could be the possible cause and how can this be rectified? As I am based in India, there is no Apple Store to which I could turn to.
    Thank you,

    Warranty and support are only valid in the country of origin, in your case, that is Hong Kong.
    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.
    The fact that it seems to clear up after a restart leads me to believe it is not a hardware issue but rather a software issue or network problem.
    Have you contacted the carrier?

  • Facing problem in call function starting new task taskname

    Hi all,
    when i call a function module using starting new task, it is failing with sy-subrc 3. can anyone guide me in this.
    see the code :
      DATA   lv_taskname(7) TYPE c VALUE 'PEM_EXE'.
        CALL FUNCTION 'PEM_SCHEDULE'  STARTING NEW TASK lv_taskname
             EXPORTING
                  iv_packid             = gv_packid
                  iv_pebid              = ls_alv_out-peb_id
             EXCEPTIONS
                  invalid_state_request = 1
                  database_error        = 2
                  OTHERS                = 3.
    Thanks in advance.
    Best Regards,
    Prashant

    when i change the function module from normal to remote, it gives me a error that the "generic types are not allowed in RFC", but i have not given any generic type in the parameters.
    see the signature of the function module.
    *"  IMPORTING
    *"     VALUE(IV_PACKID) TYPE  CNVMBTPACK-PACKID
    *"     VALUE(IV_PEBID) TYPE  CNVMBTPEB-PEB_ID
    *"  EXPORTING
    *"     VALUE(EV_ERROR_DETECTED) TYPE  C
    *"     VALUE(EV_STOP) TYPE  C
    *"  EXCEPTIONS
    *"      INVALID_STATE_REQUEST
    *"      DATABASE_ERROR
    *"      FORIEGN_LOCK
    Can u please check it and find out the problem
    Thanks,
    Prasanth

  • Facing problem with call subscreen area in standard infotype

    Dear SAP Guru's,
    I have enhanced standard infotype 0185 from PM01, in assign enhancement tab it create multiple screens ,
    my program name ZP018500, screen number 0200 generated,
    on  0200 screen i need to display two subscreens tfor that
    i have created subscreen area  on srcreen 0200 which is already a subscreen.
    and i am calling two subscreen 0201 and 0202 on that  subscreen area.
    while creating entries for 0185 infotype  my screen keep going in continious loop for call subscreen statement on 0200 screen number.
    roll in fail, session terminated error coming because of this.
    is it correct to create subscreen area on subscreen and calling subscreen on that.
    Guide me to solve the issue.
    Thanks and Regards,
    Syed

    Dear Gopal,
    Thanks for the reply,
    But i can't make 0200 screen as normal screen because it is automatically generated by system while enhancing the standard infotype,
    Please let me know any other solution.
    Regards,
    Syed Taj

  • PROBLEM IN LOADING XML SECOND TIME

    HI,
    Actually i m loading xml 1st time when the page is loading,then again 2nd time when i m trying to load 2nd xml based on dropdown value then it is loading xml but it is appending the 2nd xml with the 1st xml.i m also unloading xml at first then loading 2nd xml but it is cming like that.the code is for loading and unloading is........
    for loading i m calling---------------load_xml(xml)
    for unloading i m calling------------- unload_xml()
    function unload_xml():void
    trace("in unload")
    this.removeChild( flashmo_item_group );
    function push_array(e:Event):void
    flashmo_xml = XML(e.target.data);
    total = flashmo_xml.item.length();
    for( i = 0; i < total; i++ )
      flashmo_item_list.push( { content: flashmo_xml.item[i].content.toString() } );
    load_css();
    function load_xml(xml_file:String):void
    var xml_loader:URLLoader = new URLLoader();
    xml_loader.load( new URLRequest( xml_file ) );
    xml_loader.addEventListener(Event.COMPLETE, push_array);
    xml_loader.addEventListener(IOErrorEvent.IO_ERROR, io_error);
    function load_css():void
    css_loader.load( new URLRequest(css_file) );
    css_loader.addEventListener(Event.COMPLETE, css_complete);
    css_loader.addEventListener(IOErrorEvent.IO_ERROR, io_error);
    function css_complete(e:Event):void
    var css_format:TextFormat = new TextFormat();
    flashmo_style.parseCSS(css_loader.data);
    create_item_list();
    flashmo_loading.visible = false;
    function io_error(e:IOErrorEvent):void
    flashmo_loading.xml_info.text += "\n\n" + e;
    function create_item_list():void
    for( i = 0; i < total; i++ )
      var flashmo_item = new MovieClip();
      flashmo_item.addChild( create_item_desc( flashmo_item_list[i].content ) );
      flashmo_item.addChildAt( create_item_bg( flashmo_item.height, i ), 0 );
      flashmo_item.y = item_height;
      item_height += flashmo_item.height + item_spacing;
      flashmo_item_group.addChild( flashmo_item );
    this.addChild( flashmo_item_group );
    flashmo_item_group.mask = flashmo_mask;
    flashmo_sb.scrolling("flashmo_item_group", "flashmo_mask", 0.40); // ScrollBar Added
    function create_item_bg( h:Number, item_no:Number )
    var fm_rect:Shape = new Shape();
    fm_rect.graphics.beginFill(0xFFFFFF, 1); // ITEM BACKGROUND COLOR
    fm_rect.graphics.drawRoundRect(0, 0, item_width, h + item_padding * 2, 0);
    fm_rect.graphics.endFill();
    return fm_rect;
    function create_item_desc( item_desc:String )
    var fm_text = new TextField();
    fm_text.x = item_padding;
    fm_text.y = item_padding;
    fm_text.width = item_width - item_padding * 2;
    fm_text.styleSheet = flashmo_style;
    fm_text.htmlText = item_desc;
    fm_text.multiline = true;
    fm_text.wordWrap = true;
    fm_text.selectable = true;
    fm_text.autoSize = TextFieldAutoSize.LEFT;
    return fm_text;
    flashmo_sb.alpha=1;
    so plz give me idea to resolve this problem.

    function push_array(e:Event):void
        flashmo_item_list = [];
    flashmo_xml = XML(e.target.data);
    total = flashmo_xml.item.length();
    for( i = 0; i < total; i++ )
      flashmo_item_list.push( { content: flashmo_xml.item[i].content.toString() } );
    load_css();
    that will reset your array.

  • Problem dispatching event a second time

    When the page is first loaded I dispatch an event to get data
    as follows:
    public function init():void
    CairngormEventDispatcher.getInstance().dispatchEvent( new
    CairngormEvent( GetTransactionsEvent.EVENT_GET_TRANSACTIONS ) );
    In one of my functions to insert new data, I dispatch
    getTransactions event again but it doesnt fire:
    private function insertTransactions():void
    { CairngormEventDispatcher.getInstance().dispatchEvent( new
    CairngormEvent( GetTransactionsEvent.EVENT_GET_TRANSACTIONS ) );
    It's only when I remove the first getTransactions event that
    the second instance fires. I am guessing there is some problem
    dispatching a same event twice??
    Can somebody please advise?
    Thanks in advance.

    Yes I have created a brand new event (and also command) and
    everything is working now. However, I tried doing the following but
    it doesnt work (the refresh version doesnt work):
    Event:
    public class GetTransactionsEvent extends CairngormEvent
    public static var EVENT_GET_TRANSACTIONS : String =
    "getTransactions";
    public static var EVENT_GET_TRANSACTIONS_REFRESH : String =
    "getTransactionsRefresh";
    Controller:
    addCommand( GetTransactionsEvent.EVENT_GET_TRANSACTIONS,
    GetTransactionsCommand);
    addCommand(GetTransactionsEvent.EVENT_GET_TRANSACTIONS_REFRESH,
    GetTransactionsCommand );

  • Jframe when called a second time is screwed up

    I have basically a splash page that is a jframe. From this splash page I can launch multiple applications. If I launch on application then close it and launch it again it comes up really messed up. The components are all moved around. Anyone have any ideas what would cause this.

    The problem is caused by the nested event structures; you have an event structure inside an event structure, acting on the same controls. When the main one reacts to the cancel the other one get's stuck...so on the next call the main event structure just halts due to the stuck event structure inside it. It's not obvious why this is a fault, you may be able to spot it now that you're on the track though.
    MTO

  • Facing problem which starting a real time services BODS Management Console

    Hello All ,
    I am facing a issue while starting the real time services from managment console
    Error Log
    Log: error_10_05_2011.log 
    (12.2) 10-05-11 11:05:55 (E) (1700:2324) Unknown: SP(NewService2, INDRMD36Q2:3501):flowThread() could not start real time job (BODI-300101)
    List of congiurations done
    1) Access Server configured and able to ping as well
    2)Real time job create in BODS designer and can see that in management console
    Note :
    ETL tool : BODS
    DB : Oracle
    Any help is highly aprreciated
    Thanks,
    Rishi

    Rishi -
    I think below URL can help you for the same.
    https://wiki.sdn.sap.com/wiki/display/BOBJ/Settingupthe+Service
    thx
    Deep

  • Facing problem in JavaStoredProc being called from plsql pass JPublisher

    I'm facing problems in calling java stored procedure from a plsql procedure.
    1) I have a plsql types
    create or replace type wwpro_api_portlet_instance
    as object
    portlet_inst_guid varchar2(60),
    provider_id number(38),
    portlet_id number(38),
    ref_path varchar2(100)
    create or replace type wwpro_api_portlet_instances
    as table of wwpro_api_portlet_instance
    2)I create java classes from JPublisher for these types as attached with this mail.
    3) There is a sql procedure where I create a instance of wwpro_api_portlet_instances with values populated in it.
    and then pass it to another procedure which is a CallSPec for the java class.
    Call Spec
    procedure export_data_internal
    p_http_url in varchar2,
    p_timeout in number,
    p_service_id in varchar2,
    p_proxy_host in varchar2,
    p_proxy_port in number,
    p_proxy_username in varchar2,
    p_proxy_password in varchar2,
    p_portal_version in varchar2,
    p_encryption_key in varchar2,
    p_message_lang in varchar2,
    p_export_id in varchar2,
    p_provider_id in varchar2,
    p_debug_level in number,
    p_portlet_instances in wwpro_api_portlet_instances
    )as language java
    name 'oracle.webdb.provider.web.ExportImportClient.exportData(
    java.lang.String,
    int,
    java.lang.String,
    java.lang.String,
    int,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.Integer,
    oracle.webdb.provider.web.PortletInstanceArray
    Procedure calling Call Spec
    procedure export_data
    p_export_id in varchar2,
    p_provider_id in number,
    p_portlet_instances in wwpro_api_provider.portlet_instance_table
    ) is
    begin
    --calling Call Spec
    export_data_internal
    p_http_url => l_provider.http_url,
    p_timeout => l_provider.timeout,
    p_service_id => l_provider.service_id,
    p_proxy_host => l_provider.dbtier_proxy_hostname,
    p_proxy_port => l_provider.dbtier_proxy_portnumber,
    p_proxy_username => l_proxy_info.username,
    p_proxy_password => l_proxy_info.password,
    p_portal_version => wwctx_api.get_product_version(),
    p_encryption_key => wwpro_util.get_encryption_key(p_provider_id, TRUE),
    p_message_lang => l_provider.language,
    p_export_id => p_export_id,
    p_provider_id => p_provider_id,
    p_debug_level => wwpro_util.get_debug_level,
    p_portlet_instances => l_portlet_instances <== Populated as I'm sure about it.
    //this gets 'EXP :ORA-29532: Java call terminated by uncaught Java exception: java.sql.SQLExc
    eption: Closed Connection'
    end export_data;
    4)Inside the Java class 'oracle.webdb.provider.web.ExportImportClient'.
    public static void exportData
    String url,
    int timeout,
    String serviceId,
    String proxyHost,
    int proxyPort,
    String proxyUser,
    String proxyPass,
    String portalVersion,
    String sharedKey,
    String messageLocale,
    String exportId,
    String providerId,
    Integer portalDebugLevel,
    PortletInstanceArray instances
    )throws Exception
    oracle.webdb.provider.v2.adapter.soapV1.SOAPException
    try
    conn = DriverManager.getConnection("jdbc:default:connection:");
    stmt = conn.createStatement();
    stmt.execute ("INSERT INTO d VALUES ('into ExportImportClient.exportData ')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData url :: " + url +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData instances:: " + instances +"')");
    // Prints this ==> FROM ExportImportClient.exportData instances:: oracle.webdb.provider.web.PortletInstanceArray@78e2087c
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData debugLevel:: " + portalDebugLevel +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData instances:: " + instances.length() +"')");
    //This Operation is giving the problem as any operation performed on this is clsing the Connection and comming out.
    //This has worked once but did not work after that, I tried this in the 10g as well as 901
    conn.commit();
    }catch(SQLException sqe){
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData sqe error :: " + sqe.getMessage() +"')");
    conn.commit();
    throw sqe;
    catch(Exception e)
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData exception error :: " + e.getMessage() +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData exception error :: " + e.getClass() +"')");
    conn.commit();
    throw e;
    Any reason what may be happening ? I have done the loadJava of the Jpublisher classes once in the database. After that I never made any changes to
    them, I just modify and upload the oracle.webdb.provider.web.ExportImportClient class.
    What Shold I try to over come this ?
    Also
    thanks
    rahul

    I'm facing problems in calling java stored procedure from a plsql procedure.
    1) I have a plsql types
    create or replace type wwpro_api_portlet_instance
    as object
    portlet_inst_guid varchar2(60),
    provider_id number(38),
    portlet_id number(38),
    ref_path varchar2(100)
    create or replace type wwpro_api_portlet_instances
    as table of wwpro_api_portlet_instance
    2)I create java classes from JPublisher for these types as attached with this mail.
    3) There is a sql procedure where I create a instance of wwpro_api_portlet_instances with values populated in it.
    and then pass it to another procedure which is a CallSPec for the java class.
    Call Spec
    procedure export_data_internal
    p_http_url in varchar2,
    p_timeout in number,
    p_service_id in varchar2,
    p_proxy_host in varchar2,
    p_proxy_port in number,
    p_proxy_username in varchar2,
    p_proxy_password in varchar2,
    p_portal_version in varchar2,
    p_encryption_key in varchar2,
    p_message_lang in varchar2,
    p_export_id in varchar2,
    p_provider_id in varchar2,
    p_debug_level in number,
    p_portlet_instances in wwpro_api_portlet_instances
    )as language java
    name 'oracle.webdb.provider.web.ExportImportClient.exportData(
    java.lang.String,
    int,
    java.lang.String,
    java.lang.String,
    int,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.String,
    java.lang.Integer,
    oracle.webdb.provider.web.PortletInstanceArray
    Procedure calling Call Spec
    procedure export_data
    p_export_id in varchar2,
    p_provider_id in number,
    p_portlet_instances in wwpro_api_provider.portlet_instance_table
    ) is
    begin
    --calling Call Spec
    export_data_internal
    p_http_url => l_provider.http_url,
    p_timeout => l_provider.timeout,
    p_service_id => l_provider.service_id,
    p_proxy_host => l_provider.dbtier_proxy_hostname,
    p_proxy_port => l_provider.dbtier_proxy_portnumber,
    p_proxy_username => l_proxy_info.username,
    p_proxy_password => l_proxy_info.password,
    p_portal_version => wwctx_api.get_product_version(),
    p_encryption_key => wwpro_util.get_encryption_key(p_provider_id, TRUE),
    p_message_lang => l_provider.language,
    p_export_id => p_export_id,
    p_provider_id => p_provider_id,
    p_debug_level => wwpro_util.get_debug_level,
    p_portlet_instances => l_portlet_instances <== Populated as I'm sure about it.
    //this gets 'EXP :ORA-29532: Java call terminated by uncaught Java exception: java.sql.SQLExc
    eption: Closed Connection'
    end export_data;
    4)Inside the Java class 'oracle.webdb.provider.web.ExportImportClient'.
    public static void exportData
    String url,
    int timeout,
    String serviceId,
    String proxyHost,
    int proxyPort,
    String proxyUser,
    String proxyPass,
    String portalVersion,
    String sharedKey,
    String messageLocale,
    String exportId,
    String providerId,
    Integer portalDebugLevel,
    PortletInstanceArray instances
    )throws Exception
    oracle.webdb.provider.v2.adapter.soapV1.SOAPException
    try
    conn = DriverManager.getConnection("jdbc:default:connection:");
    stmt = conn.createStatement();
    stmt.execute ("INSERT INTO d VALUES ('into ExportImportClient.exportData ')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData url :: " + url +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData instances:: " + instances +"')");
    // Prints this ==> FROM ExportImportClient.exportData instances:: oracle.webdb.provider.web.PortletInstanceArray@78e2087c
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData debugLevel:: " + portalDebugLevel +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData instances:: " + instances.length() +"')");
    //This Operation is giving the problem as any operation performed on this is clsing the Connection and comming out.
    //This has worked once but did not work after that, I tried this in the 10g as well as 901
    conn.commit();
    }catch(SQLException sqe){
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData sqe error :: " + sqe.getMessage() +"')");
    conn.commit();
    throw sqe;
    catch(Exception e)
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData exception error :: " + e.getMessage() +"')");
    stmt.execute ("INSERT INTO d VALUES ('FROM ExportImportClient.exportData exception error :: " + e.getClass() +"')");
    conn.commit();
    throw e;
    Any reason what may be happening ? I have done the loadJava of the Jpublisher classes once in the database. After that I never made any changes to
    them, I just modify and upload the oracle.webdb.provider.web.ExportImportClient class.
    What Shold I try to over come this ?
    Also
    thanks
    rahul

  • Facing problem with incoming calls in iphone 5

    When a caller calls for second time within 10 seconds, the call is rejected saying that the user is not reachable.
    This is not the carrier problem for sure, as I tried using other phone and dint find the problem.
    Is this some known bug/feature???
    Any help is appreciated
    Thanks.

    I have not seen this type of behavior before. Let me get this correct, you say that if someone calls your iPhone 5 after just calling it within 10 seconds, they get a message stating "user is unreachable"?
    What troubleshooting have you done with the iPhone? Restart (power off/on) and reset (hold the sleep/wake and home buttons together until you see the Apple logo and then release) the phone restarts, are the first two steps.
    You say you tried this by calling another phone and it did not react like the iPhone?
    This is not something I would say is a bug/feature. It may be something with your particular device. Suggest trying the troubleshooting, otherwise, connection issues are generally resolved by the carrier. You might have them check to ensure your account is provisioned correctly.

  • Facing problem in placing and receiving calls in l...

    Bought my lumia 720 a week ago. For past two days, i am facing problems during calls. Most of the my voice isn't audible to the receiver. It's happening during incoming calls and outgoing calls both. Its freakishly frustarting. Pls help me out.
    Note: I am able to hear the voice of the caller clearly.
    Thanks,
    Adnan

    I purchased Nokia Lumia 720 a week ago. Since than, I am facing sound fade problem while making call. The dstination number can hear my voice clearly, but I hear the voice getting **bleep**. Seems there is something extra noise.I tried with another network sim, but same result. The problem is persist even I change the sim. I can't hear the other party voice clearly .. Please help to fix the issue.. I've purchased from nokia care and have warranty card for 1 year. Thanks

Maybe you are looking for

  • Update is complete but "do not disconnect" won't go away!!!

    I listened and it is still spinning in there too. It's been doing this all evening. We used the advice on the site and tried ejected it. Didn't work. Tried the other couple of things it mentioned (turning itunes off and on again) and finally just dis

  • Problems with a result in a switch/case control statement

    I am having troubles with a switch/case statement in which I am trying to get a result returned from different operators. The problem is that the result always returns 0 no matter what I put in the driver class. The class where the result needs to be

  • How to buy unlocked iPhone 5s in Santa Monica

    I am in Santa Monica now and I want to buy Iphone 5S 16GB without contract. I want to use my sim card, no US sim card.

  • Variable xml file and Cyrillic

    Hello, Due to the workflow of our design studio I have been working on a series of scripts that use php to write artwork information from a database into xml files to be loaded into illustrator. after first getting an issue where any image replacemen

  • Not able to distribute the model

    Hi I created a model using BD64 according to the procedure to the best of my knowledge. But i am getting the following error "Model view has not been updated. Reason: the distribution model is currntly being processed." Nobody else are logged in. Can