Never got any response from this forum!!!!

Never got any response from this forum!!!!

PLEASE DO HELP ME, ELSE I WILL BE KICKED OUT FROM MY JOB!!!
          I have been encountering the same problem for two weeks, but I couldn't solve it yet since I am using WebLogic not Websphere, and I'm not using SAPJ2EE server.
          Running it under Windows, there is no problem. But in Linux, it does. I always encounter,
          java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO; nested exception is: java.rmi.RemoteException: EJB Exception:
          The configurations are right on LD_LIBRARY_PATH. I mean, the file "librfccm.so" and "libsapjcorfc.so" are being refered. Also the sapjco.jar is set to CLASSPATH.
          I am using JCO in Linux and deploying it in WebLogic. I already put the
          APP_CLASSPATH=$APP_HOME/sapjco.jar. I guarantee you that the configurations on path and classpath are correct.
          Is there anything to do with "application.xml" of the j2ee? Do I need to add some tag there?
          I tried also putting the "sapjco.jar" in WEB-INF\lib but it doesn't wiork.
          The tag below obviously, wouldn't work for me.
          <reference reference-type="hard">
          <reference-target
          provider-name="engine.sap.com"
          target-type="library">com.sap.mw.jco
          </reference-target>
          </reference>
          PLEASE DO HELP SINCE MY DAYS ARE NUMBERED

Similar Messages

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

  • How do I incorporate a Screenshot from Photo in a response on this forum. I'm working from an ipad2. Thanks

    How do I incorporate a Screenshot from Photo in a response on this forum? I'm working from an iPad2. Thanks for any help.

    You do need to use a browser that can identify as a desktop version. Safari will not allow you to post a screenshot. I use iCab Mobile and Mercury. Both of those browsers will allow you to add a screenshot. If you download one of those browsers, and you have the screenshot in the photos app - tap on the camera icon at the top of the editing block that you type in and you can add the screenshot from the photos app.
    You can see the camera icon at the top of this screenshot.
    Using iCab Mobile, I have to post the screenshot and then type the text. If I type the text and then decide to add the screenshot, the text disappears.
    BTW ... I did not spell check before I took the screenshot.

  • I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    Hi,
    I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    The trial is always extended. The serial number you enter determines whether it runs as standard or extended.
    I'm getting through fine with that link, so it must be a browser issue or some such thing. Try another browser.

  • 'L' key on macbook not functioning. I got a response from chrishopewell, but still not working. Can someone please assist me. Thanks Veedeekay

    Dear All
    The 'L' key on my macbook is still not functioning. I got a response from chrisfromhopewell and tried what he said, but its still not functioning. Can someone please assist me. I was using Universal Access before when I had visual problems so this might have caused the problem. but have turned universal access off, so I dont know what else to try. Can someone pleeeze help?
    Thanks Veedeekay

    Thanks King_Penguin for taking time to read and reply. 
    I just purchased this movie on Thursday, May 15, so just a few days ago.  I have never had any trouble whatsoever since I have been in Vietnam.  I have downloaded several movies and even music and they have all synced to my respected Apple products except for this purchase. 
    Sorry, I don't quite understand what you mean by studios and different versions.  Could you please explain? 
    I checked my purchased list in my purchase history under my account and there are no hidden items. 

  • Cannot stop getting email threads from this forum.

    Had a problem with Safari crashing. Posted the problem and even though people tried to help the problem never got fixed.
    Since then i get a notification copy of every email of every problem sent to the person I posted the question to.
    Changed settings to no avail. I get 20-40 emails from this forum every day and cannot stop it!
    What to do? Thanks.

    Next time you see one of those emails, click vew full discussion. Once there sign in, then in the upper right hand conner click "stop email notification"

  • Can't get any response from HttpsURLConnection

    sorry, i've reformat the code here again
    Deal frens,
    Currently i'm doing a code to get a response from https link in my servlet. I don't know where the lack of my coding, but i don't get any response from the server when i execute my code. here is my code
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.net.ssl.*;
    public class Servlet1 extends HttpServlet {
      private static final String CONTENT_TYPE = "text/html";
      //Initialize global variables
      public void init() throws ServletException {
      //Process the HTTP Get request
      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType(CONTENT_TYPE);
        PrintWriter out = response.getWriter();
        String authentURL = "https://server1.tst.cvs/servlet/RequestHandler?login=admin&pwd=admin&method=viewUser&username=00032a0183db";
        out.println("<html>");
        out.println("<head><title>Servlet1</title></head>");
        URL url = new URL(authentURL);
        HttpsURLConnection URLconn = (HttpsURLConnection) url.openConnection();
       // HttpsURLConnection conn = null;
        URLconn.setDoInput(true);
        URLconn.setDoOutput(true);
        URLconn.setRequestMethod("GET");
        URLconn.setUseCaches(false);
        OutputStream authOut = URLconn.getOutputStream();
        BufferedReader reader = new BufferedReader(new InputStreamReader(URLconn.getInputStream()));
        out.println("<body bgcolor=\"#ffffff\">");
        out.println("<p>The servlet has received a GET. This is the reply.</p>");
        out.println("output"+authOut);
        out.println("output2"+URLconn.getContent().toString());
        out.println("output3"+reader);
        out.println("</body></html>");
      //Clean up resources
      public void destroy() {
    } the result suppose i get when i execute the script is..
    userdata=234&uname=00032a0183db&concurrentlogins=1
    i don't have any problem when i paste the link
    https://server1.tst.cvs/servlet/RequestHandler?login=admin&pwd=admin&method=viewUser&username=00032a0183db
    and i able to get the response
    userdata=234&uname=00032a0183db&concurrentlogins=1
    please..please help..what is wrong with my code

    YOU DON'T READ ANYTHING IN YOUR CURRENT CODE !!!
    If you use a BufferedReader, then read the input stream via readLine() method.
    Default implementation of getContent() method is not generally usable for getting your desired "content". Experiment that.

  • My Safari is not working  right.  It often stalls and I get the "colored spinning wheel of Death".  I send reports to Apple, but I never get any response or helpful info.  What do I do to get Safari working correctly on my MacBook laptop?

    My Safari is not working  right.  It often stalls and I get the "colored spinning wheel of Death".  I send reports to Apple, but I never get any response or helpful info.  What do I do to get Safari working correctly on my MacBook laptop?

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    If you wish, you may be able to salvage the errant extension by uninstalling and reinstalling it. Its settings will revert to their defaults. If the extension still causes a problem, remove it permanently or refer to its developer for support.
    Uninstall the McAfee product by following the instructions on whichever of the pages linked below is applicable:
    How to install or uninstall McAfee Internet Security for Mac
    How to manually remove VirusScan for Mac 8.6.x using a removal script
    How to uninstall and reinstall McAfee Agent 4.x on Macintosh computers
    Note that if you have already tried to uninstall the software, you may have to reinstall it in order to finish the job. If you have a different version of the product, the procedure may be different.
    Back up all data before making any changes.

  • I've got no response from serial port

    Hi,i found sample source code from this forum to make communication to modem. I tried that code to make communication to cellular phone which is connected to serial port by data cable. There is no response at all from the phone. I'm confused, what's wrong with the code? But if i use hyper terminal on windows 2000 to send AT commands,the phone gives responds. FYI,i use Siemens C35i cellular phone. Is there someone who can tell me what's wrong with the code ?
    Thank's very much
    Here is the code :
    import java.io.*;
    import java.util.*;
    import javax.comm.*;
    public class Coba11 implements SerialPortEventListener {
    static CommPortIdentifier portId;
    Enumeration portList;
    DataInputStream inputStream;
    DataOutputStream outputStream;
    SerialPort serialPort;
    public static void main(String[] args) {
    boolean portFound = false;
    String defaultPort = "COM1";
    Coba11 cb = new Coba11();
    cb.portList = CommPortIdentifier.getPortIdentifiers();
    while (cb.portList.hasMoreElements()) {
    System.out.println("Masuk ke dalam while");
    cb.portId = (CommPortIdentifier) cb.portList.nextElement();
    if (cb.portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
    if (cb.portId.getName().equals("COM1")) {
    System.out.println("Found port: "+defaultPort);
    portFound = true;
    try {
    cb.serialPort = (SerialPort) cb.portId.open("SimpleReadApp", 2000);
    } catch (PortInUseException e) {}
    //get inputstream and outputstream from the port
    try {
    cb.inputStream = new DataInputStream(cb.serialPort.getInputStream());
    cb.outputStream = new DataOutputStream(cb.serialPort.getOutputStream());
    } catch (IOException e) {}
    try {
    cb.serialPort.addEventListener(cb);
    } catch (TooManyListenersException e) {}
    cb.serialPort.notifyOnCTS(true);
    cb.serialPort.notifyOnDSR(true);
    cb.serialPort.notifyOnRingIndicator(true);
    cb.serialPort.notifyOnCarrierDetect(true);
    cb.serialPort.notifyOnOverrunError(true);
    cb.serialPort.notifyOnParityError(true);
    cb.serialPort.notifyOnFramingError(true);
    cb.serialPort.notifyOnBreakInterrupt(true);
    cb.serialPort.notifyOnDataAvailable(true);
    try {
    cb.serialPort.setSerialPortParams(19200, SerialPort.DATABITS_7,SerialPort.STOPBITS_1,SerialPort.PARITY_NONE);
    } catch (UnsupportedCommOperationException e) {}
    //send commands to the cellular phone
    String atCommand = "ATD08128533615";
    try {
    cb.outputStream.write(atCommand.getBytes());
    atCommand = "AT";
    Thread.sleep(1000);
    cb.outputStream.write(atCommand.getBytes());
    }      catch (IOException e) {}
         catch (InterruptedException e) {}
    try {
    Thread.sleep(40000);
    atCommand = "AT";
    cb.outputStream.write(atCommand.getBytes());
    Thread.sleep(500);
    }      catch (InterruptedException e) {}
         catch (IOException e) {}
    try {
         cb.inputStream.close();
         cb.outputStream.close();
    } catch (IOException e) {}
    cb.serialPort.close();
    System.out.println("Serial Port is closed");
    if (!portFound) {
    System.out.println("port " + defaultPort + " not found.");
    public void serialEvent(SerialPortEvent event) {
    switch (event.getEventType()) {
    case SerialPortEvent.DATA_AVAILABLE:
    byte[] readBuffer = new byte[20];
    try {
    int numBytes = inputStream.read(readBuffer);
    String string = new String(readBuffer);
    System.out.print(string);
    } catch (IOException e) {}
    break;

    the very first command you have to send to the modem is AT
    wait 2 seconds then start sendind other commands

  • HT3529 My group messaging on/off label isn't showing up at all. I can only create group messages but every time someone starts a group chat it says its send to my number but I never got any text. I wen't to settings Messages and I can't find any on/off sw

    I can only create group messages but every time someone starts a group chat it says its send to my number but I never got any text. I wen't to settings>Messages and I can't find any on/off switch.

    Hello there, Idaniabb.
    The following Knowledge Base article offers up some great information in regards to group messaging and also links to another excellent resource for troubleshooting messages as well:
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Cannot find '\\file\name'. Verify the path or Internet address is correct. Cannot find any answer any where in this forum.

    I cannot find any answer any where in this forum. PLEASE Help!!!   I'm receiving this error message every I click on the link, this only happen
    on the desktop, but Laptop has no problem to access the file, and everyone else in my group --they don't have issue.
    Run Windows 7 Enterprise SP 1, IE ver 9 and 11
    Thanks in advance.
    Akira

    Hi,
    Could please clarify the steps to reproduce this issue? Did this issue occur when clicking on a link in an email message within Outlook?
    If I didn't misunderstand it, please first try to log into the web mail to check if this issue persists.
    If problem didn't exist in webmail, please try to open your Internet Explorer with no add-on mode to troubleshoot the issue. See:
    http://support.microsoft.com/kb/976915/en-us
    If above didn't fix the issue, please try to reset your Internet Explorer to check the result:
    http://support.microsoft.com/kb/923737/en-us
    Note: Resetting Internet Explorer isn't reversible, and all previous settings are lost after the reset.
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Out from this forum

    how to out from this forum?

    If by "out from this forum", you mean post links to other sites, read
    http://social.technet.microsoft.com/wiki/contents/articles/15960.how-to-verify-your-msdntechnet-forums-account-so-that-you-can-post-images-and-links.aspx .
    If you mean something else, you'll need to clarify your question.

  • Some messages are disappearing from this forum

    Hello friends at www.oracle.com ,
    some messages seems to disappear from this forum, I've just read 2 answers to a message I've posted these days and they disappeared when I answered. What's happening?
    If I'm doing something wrong, I want to be advised of this. Even my personal e-mail can be used for explanations - but I need to know what's the problem.
    Franklin Gongalves Jr.
    [email protected]

    Open Mail.
    From the Mail menu, select Preferences. Select the Accounts icon and click on your email account under the Description heading.  The Account Information appears.
    Click on the Advanced tab.
    Make sure that Remove copy from server after retrieving a message: is not checked. Click on the field below and select after one day, or after one week, etc.
    Close the Accounts box to return to the email program.

  • I got fab advice from this site for getting hotmail contacts onto ipad 2, can anyone tell me why my folders are empty though?

    I got fab advice from this site for getting my hotmail contacts onto ipad 2, but all my folders appear empty, can anyone tell me why?

    I got fab advice from this site for getting my hotmail contacts onto ipad 2, but all my folders appear empty, can anyone tell me why?

  • I placed the order for iphone 4s on 21st august 2012. it got cancelled on 23rd august 2012 but till now i havent got any refund from apple. is that normal or i shud take some more actions?

    i placed the order for iphone 4s on 21st august 2012. it got cancelled on 23rd august 2012 but till now i havent got any refund from apple. is that normal or i shud take some more actions?

    http://store.apple.com/us/help/returns_refund

Maybe you are looking for