OAS 4.0.8 fail to send complete HTML from PL/SQL sp

OAS 4.0.8 may fail to send complete HTML response from the PL/SQL cartridge sometimes. It also varies with different browsers or even with different versions of the same browser. Sometimes it works OK, sometimes the HTML was broken. I tried to figure out the reason, but only realized that the proxy server might cause the problem. As I disabled the proxy server setting on my browser at school(the server is on campus), it worked. However, as I did the same thing at home, it did not work. I am confused what the problem is. That trouble never happened for the previous version OAS 3.0.1. Anybody can help me with that. The ORACLE staff in Taiwan did not come out with the solutions!

OAS 4.0.8 may fail to send complete HTML response from the PL/SQL cartridge sometimes. It also varies with different browsers or even with different versions of the same browser. Sometimes it works OK, sometimes the HTML was broken. I tried to figure out the reason, but only realized that the proxy server might cause the problem. As I disabled the proxy server setting on my browser at school(the server is on campus), it worked. However, as I did the same thing at home, it did not work. I am confused what the problem is. That trouble never happened for the previous version OAS 3.0.1. Anybody can help me with that. The ORACLE staff in Taiwan did not come out with the solutions!

Similar Messages

  • How to send JMS message from pl/SQL to jBoss

    Hi all,
    I need a helping. This is my problem:
    There's a queue which is definitied under the Jboss. I would like send a message from pl/SQL to jBoss.
    Why is't working??
    http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/jms/Readme.html
    thnk's,
    fgy,,

    You can defince a queue in Oracle, then access this queue from your Jboss application. Not sure if you need JMS, but there are some Oracle OCI functions that are certainly helpful for such a task.
    You might look into further details be reading the manual on Oracle Advanced Queuing or Oracle Streams.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14257/part4.htm#i436427

  • Sending E-Mail from PL/SQL

    I have used Oracle 9i (9.2.0.1) on windows Xp machine. I want to send e-mail
    from PL/SQL procedure.
    I execuete the procedure as follows friom SQL prompt in SCOTT user..
    execute prc_send_mail('[email protected]','[email protected]','Test message');
    before that I create the procedure in scott user and it is created successfully in scott user..
    Procedue is as follows...
    CREATE OR REPLACE PROCEDURE prc_send_mail (p_sender IN VARCHAR2,
    p_recipient IN VARCHAR2,
    p_message IN VARCHAR2)
    as
    l_mailhost VARCHAR2(255) := 'mail.yahoo.com';
    l_mail_conn utl_smtp.connection;
    BEGIN
    l_mail_conn := utl_smtp.open_connection(l_mailhost, 25);
    utl_smtp.helo(l_mail_conn, l_mailhost);
    utl_smtp.mail(l_mail_conn, p_sender);
    utl_smtp.rcpt(l_mail_conn, p_recipient);
    utl_smtp.open_data(l_mail_conn );
    utl_smtp.write_data(l_mail_conn, p_message);
    utl_smtp.close_data(l_mail_conn );
    utl_smtp.quit(l_mail_conn);
    end;
    unfortunately i have receiveed some error which I mentioned below...
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 138
    ORA-06512: at "SCOTT.PRC_SEND_MAIL", line 9
    ORA-06512: at line 1.
    Please anyone giove me the solution..

    > ORA-29278: SMTP transient error: 421 Service not available
    Not an Oracle error. This is the SMTP server telling you to go and get stuffed. It does not want to talk to you.
    See http://www.faqs.org/rfcs/rfc821.html.
    The RFC says that this type of response code can be for example when the SMTP server is about to shutdown - thus informing the client that it cannot be serviced.
    But seeing that you're trying to hijack mail.yahoo.com as your SMTP server.. I'm not surprise that the server is giving you the bird.

  • Transportation failed while sending a request from DEV - Quality

    Hi sdns,,,
                       I got an error while sending a request from DEV -> Quality...Am new to transportation.. mayi know.. wat was this error and wat kind of action i need to take over here...
    I got an error message like this,,
    Start of the after-import method for object type R3TR ELEM (Activation Mode)          
    Element 0QWSUMHUOOK19OOUIFCLB4T8C was copied from 'modified' to 'active'              
    Error when activating element 45HKXU7KAG6V1I0L1W3LWEDZC                               
    Element 3Z571P6G8RCDNR3NQAEI8S6YW is missing in version M                                                                               
    Start of the after-import method for object type R3TR ELEM (Delete Mode)              
    Errors occurred during post-handling RS_AFTER_IMPORT for ELEM L                       
    RS_AFTER_IMPORT belongs to package RS                                                 
    The errors affect the following components:                                           
       BW-WHM (Warehouse Management)                                                      
    Post-import method RS_AFTER_IMPORT completed for ELEM L, date and time: 20070417044624
    Post-import methods of change/transport request I11K903499 completed                  
         Start of subsequent processing ... 20070417044621                                
         End of subsequent processing... 20070417044624                                   
    Answering getz really appreciated,
    Thanks & Regards,
    Aluri

    Hi,
    This error will come when your are transporting any Query/ BW elements to Production system.
    when there is element in the deve. class $TEM in your collected objects this error may come, so identify this elements and change this Dev.class to other package used in transportaion.
    To change all the elements to common dev. class first collecting the elements using transport connection. secondly, using the Pencil button at the menu of trasnport change to required dev.class.
    you can change individaul elements also.
    Regards,
    Vish.

  • Send a email from PL SQL

    hii All,
    I need a help! :(,
    i want to create a pl sql block to send an email with the result of a select the table DBA_TABLES and attached a txt file and / or pdf
    pls anyone can help me ?
    i use ORACLE 11g
    my parameter of smtp_out_server is 'smtp.gmail.com', well i dont know that is correct, if no, please put the correct.
    thank you alot.
    Pd: sorry for my bad english.

    Hi
    You can user utl_mail package for send emails from pl/sql. Try like this....!!!
    rerequisites:
       I need to execute these two scripts as sysdba;
       @$ORACLE_HOME/rdbms/admin/utlmail.sql;
       @$ORACLE_HOME/rdbms/admin/prvtmail.plb;
       Then you have to configure smtp server information in init.ora file . or spfile.
       smtp_out_server = 'smtp.gmail.com'
       Then execute this commond as sysdba;
       alter system set smtp_out_server = 'smtp.gmail.com'  scope=both;
         exec utl_mail.send(sender => '[email protected]',
                           recipients => '[email protected]','[email protected]',
                           subject => 'Testing Mail',
                           message => 'Hi..This is a test mail');
    grant execute permission on UTL_MAIL package.
    eg: grant execute on utl_mail to <your schema>;KPR

  • How can i send a mail from pl/sql

    hi ...
    this is karthic....
    please help me in how to send the email from the pl/sql by using the procedure concepts..
    i need the query with explanations...

    Welcome to the forum.
    Your question has been asked earlier today.
    See the provided links in this thread as well:
    how to send mail through procedure

  • Sending OS command from PL/SQL procedure

    "How can I send a operating system comand from PL/SQL procedure?
    I want to move , to copy , delete a file from a PL/sql procedure. i.e under unix send mv, cp or
    rm command";
    my e-mail is [email protected]

    take a look at
    http://asktom.oracle.com/pls/ask/f?p=4950:8:881946
    regards
    Freek D'Hooge
    "How can I send a operating system comand from PL/SQL procedure?
    I want to move , to copy , delete a file from a PL/sql procedure. i.e under unix send mv, cp or
    rm command";
    my e-mail is [email protected]

  • How to send archive html from the my directory?

    Hi, im try send mi archive from C:\\index.html , mi code is:
    DataSource fds = new FileDataSource("C:\\index.html");
    messageBodyPart= new MimeBodyPart();
    messageBodyPart.setDataHandler(new DataHandler(fds));
    but the mail is sent empty
    why?

    Hi!
    Raw message is empty ?
    Classic method to send file in attachment :
    // Create the message part
    MimeBodyPart messageBodyPart = new MimeBodyPart();
    // Fill the message
    messageBodyPart.setText(_msg, charset);
    Multipart multipart = new MimeMultipart();
    multipart.addBodyPart(messageBodyPart);
    // Part two is attachment
    messageBodyPart = new MimeBodyPart();
    DataSource source = new FileDataSource(_filename);
    messageBodyPart.setDataHandler(new DataHandler(source));
    String a_sep = System.getProperty("file.separator");
    String a_filename = _filename.substring(_filename.lastIndexOf(a_sep) + a_sep.length());
    messageBodyPart.setFileName(a_filename);
    multipart.addBodyPart(messageBodyPart);
    // Put parts in message
    message.setContent(multipart);
    // Send message
    Transport.send(message);regards,
    http://www.jservlet.com/

  • FaxSTF fails to send - but only from my main user account!

    I bought FaxSTF in version 6 for OS 9, and version 10.5.3 for OS X. My woes with it in OS X are not so much of the kind that I've read while searching this area for answers; they are rather peculiar, and I suspect FaxSTF might not even be at fault (though I can't be sure). For what it's worth, let me also state up front that under OS 9 it worked almost rock-solidly. It was very, very versatile and amazingly reliable. Not so much in OS X; versatility and reliability are out the window. I'll explain:
    In my main user account ('alex', admin account) no matter which application I try to fax from, when I click on the blue throbbing 'Fax' button, it stops throbbing and becomes grey and nothing else happens. I can only dismiss the print dialog by clicking on 'Cancel'. There is nothing I have tried which can change this behavior.
    Things are better, though, in secondary, standard or admin user accounts on the same machines. From them, I can fax things with no problem whatsoever.
    This is the second powerbook on which this is happening: the other one is my TiBook 550MHz running Tiger, also. What it's meant basically is that when I need to send a fax, I have to:
    •save my document in a directory accessible by my other, secondary, accounts, then
    •use Fast User Switching (thank goodness for that) and through my other account ...
    •open the document (usually a PDF by now, so I only have to use Preview which loads fast enough) and
    •enter the fax number manually (since my Address Book database is not accessible by the secondary account) and click on Fax.
    Of course, if I need to keep track of sent faxes, I then have the additional step of exporting the fax into Fax format from FaxSTF from the secondary account, then over at my main account go into FaxSTF and import it for my records.
    Not so practical...
    Thankfully, FaxSTF is fine when receiving faxes while logged in my main account.
    I was hoping that some useful hints/help will be available through the Discussion Area, as opposed to SmithMicro customer support; they take up to months to reply to an incident posted on their web-driven database, and when they do, their responses are almost meaningless most of the time, assuring me that my problem is not really happening, and reminding me of the correct procedure for doing things (it's the very procedure that doesn't work with me, but often times they haven't even read/understood my incident post in the first place. Very polite people, though; I'll give them that!)
    As always, thanks in advance, people.

    I would look into if the ports the smtp is using are open at all
    if they are closed over 3g then it should work over wifi unles your wifi router block them too
    and of cause if you set the wrong encryption or some of the other smtp settings then that too would
    explain it

  • Sending 2 messages from SAP but get 1 message in PI

    Hi all,
    This is a bit of a strange one but I have the situation where we send two idocs at the same time from a SAP ECC system to PI. The first idoc is processed but the second one just dissapears. Things I have checked:
    SMQ1/SMQ2 on both systems - nothing there
    Runtime workbench - the successful one is there but no failed messages
    Sending two messages from another ECC system - we do get both messages - but this is a different interface (however the one with the problem is just a copy of the one which works)
    Any ideas what this could be or what else I should be checking?
    Kind regards
    Ben

    Hi Mark,
    Thanks for your quick reply. I have checked idx5 and there is only one message/TID from the sending system.
    The other ECC system is owned by a different department so I will ask them to run SM58 to see if anything is stuck in there as well

  • Send mail from PL/SQL with an attachment

    Hi,
    Can any body help me on how to send a mail from PL/SQL with an attachment which is located on a unix system path.
    This is an urgent requirement in my current project. Any quick reply would be greatly appreciated.
    Thanks
    Kumar.

    Quick reply (too bad you didn't mention your DB-version):
    Check the docs @ http://tahiti.oracle.com regarding packages UTL_SMTP and UTL_MAIL
    Check http://asktom.oracle.com/pls/asktom/asktom.search?p_string=%22mail+attachment%22
    Check http://www.oracle.com/technology/sample_code/tech/pl_sql/htdocs/Utl_Smtp_Sample.html
    Check http://www.oracle-base.com/articles/10g/PlsqlEnhancements10g.php#UTL_MAIL

  • Sending Email from PL/SQL on Oracle 8.05...

    Hi,
    I need to send an email from PL/SQL, my database is on Windows
    server and it's 8.05 (sorry we're late on upgrading:(...)
    Thanks in advance
    Cecmlia

    Hello,
    Here is sample code for sending mail using PL/SQL.
    This PL/sql Procedure sends mails using SMTP server.
    Author - Mr. Adinath R. Kamode
    Date - 08/05/2001
    procedure sendmail is
    c utl_smtp.connection; -- Connectio type variable
    v_from varchar2(200);
    v_from1 varchar2(200);
    v_to varchar2(200);
    PROCEDURE send_header(name IN VARCHAR2, header IN VARCHAR2)
    AS
    BEGIN
    -- Generates header data required from mail
    utl_smtp.write_data(c, name || ': ' || header ||
    utl_tcp.CRLF);
    END;
    begin
    c := utl_smtp.open_connection('smtp_server.pc150'); --
    Specify your SMTP -- server
    address here
    utl_smtp.helo(c, 'pc150');
    -- Define sender and receiver
    utl_smtp.mail(c, '[email protected]');
    utl_smtp.rcpt(c, '[email protected]');
    utl_smtp.open_data(c);
    send_header
    ('From','Sender<[email protected]>');
    send_header
    ('To', 'Recipient<[email protected]>');
    send_header('Subject', 'Hello');
    utl_smtp.write_data(c, utl_tcp.CRLF || 'Hello, world!');
    utl_smtp.close_data(c);
    utl_smtp.quit(c);
    end;
    Adi

  • Failed to send start signal for complete cluster, SLD may still be stopped.

    Hello,
    I am trying to create technical systems in the SLD on the portal (http://host:port/sld). It prompts me to start the SLD server by going to Administration.
    When I click the button "Start Server" under Administration, I get this following error message:
    "Failed to send start signal for complete cluster, SLD may still be stopped on other cluster nodes."
    Can you please tell me what has to be done to successfully start the SLD server so that I can go ahead and add technical systems.
    Thanks
    Srinivas

    Hi Siddarth,
    I checked MMC. There is only one instance running.
    Here is the structure in MMC.
    Database
    Instance 0
    Instance 1
    Instances are green and running.
    Here is log on the server:
    #28 12/12/2008 07:43:44.413 [SAPEngine_Application_Thread[impl:3]_15] FATAL com.sap.lcr.start.StartDirector: SLD start failure, unable to activate the SLD CIMOM. Check the log of the persistence medium for any errors. If the error is reproducible, please send a message to SAP. More...
    #27 12/12/2008 07:43:44.397 [SAPEngine_Application_Thread[impl:3]_15] FATAL com.sap.lcr.objmgr.core.TransactionContainerChangeBuffer: Storing changes to cache failed. Please restart the application to reinitialize the cache.(Error: CIM_ERR_FAILED: Failed to initialize cluster notification sender.) More...
    #26 12/12/2008 07:43:44.382 [SAPEngine_Application_Thread[impl:3]_15] ERROR com.sap.lcr.cimsrv.ClusterNotificationSender$JMSSender: Failed to initialize cluster notification sender. Please check your JNDI service and JMS provider for errors. More...
    #25 12/12/2008 07:43:44.288 [SAPEngine_Application_Thread[impl:3]_15] ERROR com.sap.lcr.webui.CimIO: Failed to send start signal for complete cluster, SLD may still be stopped on other cluster nodes.
    #24 12/12/2008 07:43:44.288 [SAPEngine_Application_Thread[impl:3]_15] ERROR com.sap.lcr.cimsrv.ClusterNotificationSender$JMSSender: Failed to initialize cluster notification sender. Please check your JNDI service and JMS provider for errors. More...
    What could be the problem.

  • Adobe Creative Cloud connectivity issue on Websense run network; Failed to send the request to server to get the response - 12002

    Hi all,
    I am able to install the Windows Adobe Creative Cloud application fine on Windows 7 box but the application fails to establish a connection with Adobe server/-s.
    We use a proxy with Websense as our network security solution. Proxy configuration script is set in Internet Options. We have not tried to whitelist anything as per http://helpx.adobe.com/creative-cloud/kb/proxy-authentication-support-creative-cloud.html as the errors suggest the application does not even connect to the proxy server/Websense at all.
    Please see below snippet from that DLM.log file that contains the error messages - please have a look. Could anybody tell me what it means or advise how to resolve this please? I don't see the Adobe Creative Cloud tool to have any options where manual proxy settings can be setup to try that.
    <snip>
    11/05/14 08:50:48:184 | [INFO] | |  |  |  |  |  | 5236 | **File download complete.**
    11/05/14 08:50:52:145 | [INFO] | |  |  |  |  |  | 3732 | **File download complete.**
    11/05/14 08:51:05:327 | [INFO] | |  |  |  |  |  | 1784 | **File download complete.**
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | The windows error code is - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | Failed to send the request to server to get the response - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | the download job (0) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:51:06:992 | [INFO] | |  |  |  |  |  | 6844 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:51:11:514 | [INFO] | |  |  |  |  |  | 6844 | incrementing the thread. now the active thread count is 2
    11/05/14 08:51:12:519 | [INFO] | |  |  |  |  |  | 6648 | **File download complete.**
    11/05/14 08:51:16:541 | [INFO] | |  |  |  |  |  | 6844 | decrementing the thread count. now the active thread count is 1
    11/05/14 08:51:22:281 | [INFO] |  | |  |  |  |  | 3452 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:51:29:022 | [INFO] | |  |  |  |  |  | 1836 | **File download complete.**
    11/05/14 08:52:22:381 | [INFO] | |  |  |  |  |  | 7220 | incrementing the thread. now the active thread count is 2
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | The windows error code is - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | Failed to send the request to server to get the response - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | the download job (5) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:52:27:383 | [INFO] | |  |  |  |  |  | 7220 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:52:27:663 | [INFO] |  | |  |  |  |  | 4908 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:52:28:733 | [INFO] | |  |  |  |  |  | 6064 | **File download complete.**
    11/05/14 08:52:42:810 | [INFO] | |  |  |  |  |  | 7220 | **File download complete.**
    11/05/14 08:52:45:570 | [INFO] | |  |  |  |  |  | 3788 | **File download complete.**
    </snip>
    There is also an INFO class message that talks about resetting an ‘error 9’ from 1 to 0.

    Hi all,
    I am able to install the Windows Adobe Creative Cloud application fine on Windows 7 box but the application fails to establish a connection with Adobe server/-s.
    We use a proxy with Websense as our network security solution. Proxy configuration script is set in Internet Options. We have not tried to whitelist anything as per http://helpx.adobe.com/creative-cloud/kb/proxy-authentication-support-creative-cloud.html as the errors suggest the application does not even connect to the proxy server/Websense at all.
    Please see below snippet from that DLM.log file that contains the error messages - please have a look. Could anybody tell me what it means or advise how to resolve this please? I don't see the Adobe Creative Cloud tool to have any options where manual proxy settings can be setup to try that.
    <snip>
    11/05/14 08:50:48:184 | [INFO] | |  |  |  |  |  | 5236 | **File download complete.**
    11/05/14 08:50:52:145 | [INFO] | |  |  |  |  |  | 3732 | **File download complete.**
    11/05/14 08:51:05:327 | [INFO] | |  |  |  |  |  | 1784 | **File download complete.**
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | The windows error code is - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | Failed to send the request to server to get the response - 12002
    11/05/14 08:51:06:968 | [ERROR] |  | |  |  |  |  | 3452 | the download job (0) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:51:06:992 | [INFO] | |  |  |  |  |  | 6844 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:51:11:514 | [INFO] | |  |  |  |  |  | 6844 | incrementing the thread. now the active thread count is 2
    11/05/14 08:51:12:519 | [INFO] | |  |  |  |  |  | 6648 | **File download complete.**
    11/05/14 08:51:16:541 | [INFO] | |  |  |  |  |  | 6844 | decrementing the thread count. now the active thread count is 1
    11/05/14 08:51:22:281 | [INFO] |  | |  |  |  |  | 3452 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:51:29:022 | [INFO] | |  |  |  |  |  | 1836 | **File download complete.**
    11/05/14 08:52:22:381 | [INFO] | |  |  |  |  |  | 7220 | incrementing the thread. now the active thread count is 2
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | The windows error code is - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | Failed to send the request to server to get the response - 12002
    11/05/14 08:52:26:971 | [ERROR] |  | |  |  |  |  | 6756 | the download job (5) failed to execute. The job state is STOPPED_STATE
    11/05/14 08:52:27:383 | [INFO] | |  |  |  |  |  | 7220 | some intermittent error. Retrying now. Error code is 12002 and error type is -45
    11/05/14 08:52:27:663 | [INFO] |  | |  |  |  |  | 4908 | resetting intermitent error 9 from to 1 to 0
    11/05/14 08:52:28:733 | [INFO] | |  |  |  |  |  | 6064 | **File download complete.**
    11/05/14 08:52:42:810 | [INFO] | |  |  |  |  |  | 7220 | **File download complete.**
    11/05/14 08:52:45:570 | [INFO] | |  |  |  |  |  | 3788 | **File download complete.**
    </snip>
    There is also an INFO class message that talks about resetting an ‘error 9’ from 1 to 0.

  • IPhone 4s recorded voice memos failing to send and locking memo app.

    I am using an iPhone 4s 16gb with the latest ios. When I record a voice memo, and then try to send it via iMessage it often fails to send.  It does not provide any error messages but what will happen is, I will push the "send" button and the phone will sit there doing nothing for a second then the memo will disappear having not actually send anything. This causes me to have to reboot the phone or I can not send recorded memo's via any message format. (ie text, imessage, email) Is this a known issue? Is there a fix?

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.

Maybe you are looking for

  • Credit limit check cause the item schedule line confirmed qty empty

    Hi, I have an SO that is under credit limit check, the problem is, after releasing it via VKM3, the confirmed qty at item schedule line is not taking the qty as of stock at the time. The SO qty is 100 Pcs, but there's still stock of 80 Pcs. I will th

  • Adobe Photoshop CS6 has stopped working... AppCrash when manipulating size

    Every time I try to adjust the size of an item in Photoshop (Ctrl T) the program crashes - making it useless. I have uninstalled and reinstalled the program and ran the latest update. I have also tried to run updates on my OS and Driver but both say

  • Verifier and method transactions

    Test Name : tests.ejb.ContainerTransactionStyle3      Test Assertion : The container transaction method must be one defined in the remote or home interface of the specified enterprise bean test      Test Description : For [ module_forum_jar#forum_jar

  • Automation support dll

    Hi I am adding 3rd party DLL in my program using ActiveX controller option. In some computer my exe file is working properly and in some computer it is giving me error. I checked that in debug mode and I found that it is saying like " Function CA_Cst

  • Variable for RKF

    Hi Guru, Requirement is USER wants a selection option for a restricted key figure. How to create a variable with user input option for a restricted key figure(RKF) in BEx query so that user can select GT, LT, EQ with some value ? Please advice how to