ABAP Error. Help needed ASAP

Hi Gurus,
I am trying to write an ABAP statement for the below requirement.
Function has two import parameters. 1. key and 2. date.
                            Export parameter: export_rec like TAB.
Req:  I need to select a record from a table where key = input parameter and input date lies between the from and to date fields in the table. (since table is time dependent).
EXPORT_REC like TAB,
I_T_TAB like TAB OCCURS 0 WITH HEADER LINE.
SELECT  SINGLE * FROM I_T_TAB INTO EXPORT_REC WHERE KEY = IMPORT_ PARAMETER AND IMPORT_PARAM_DATE BETWEEN FROM_DATE AND TO_DATE.
But, I am getting errors. It says the I_T_TAB is not defined in the Abap dictionary as table, view or projection.
I defined it as an internal table. But, even then I am getting this error.
Can anyone please help me out with this issue,
Thanks,
Regards,
aarthi
[email protected]

Hi
From you code i understand that I_T_TAB is the internal table that fetch data from the SAP table TAB.
So, the reason for the error statement is because of the Select statement.
The select statement is used to fetch data from SAP table TAB.
So your select statement should look like this...
SELECT SINGLE * FROM TAB INTO I_T_TAB
WHERE key = import_ PARAMETER
AND import_param_date BETWEEN from_date AND to_date.
IF sy-subrc = 0.
  MOVE-CORRESPONDING i_t_tab TO export_rec.
ENDIF.
If you are trying to fetch data from the internal table I_T_TAB &
append the export parameter EXPORT_REC then you should use the READ statement.
READ TABLE i_t_tab WITH KEY key = import_ parameter
and import_param_date between from_date and to_date.
IF sy-subrc = 0.
  MOVE-CORRESPONDING i_t_tab TO export_rec.
  APPEND export_rec.
ENDIF.
Hope this helps!
best regards,
Thangesh

Similar Messages

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Help needed asap! Will my IPAD 3G wifi work in another country with the sim of a 3G services provider?

    Help needed asap! I want to buy an IPAD 3G + Wifi before I return to my country from the US. The problem is that I have GSM service providers in my country that provide 3G services but I am wondering if their SIM card would work in the IPAD? In other words, can I get an unlocked IPAD 3G wifi? Thanks for helping out

    The AT&T 3G iPads (which are GSM/sim based) in the US are not locked (the Verizon models are CDMA based so they effectively are). So as long as you can get a sim in your own country you shouldn't have a problem

  • Error in Jdeveloper 10g in Remote deployment : Help Needed ASAP

    Hi,
    Am trying to deploy the simple application to remote oracle IAS server from Jdeveloper 10g. It is not allowing me to deploy any application remotely. The deployment log window shows following message:
    Target platform is Oracle9i Application Server (AppServerConnection1).
    Wrote WAR file to C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.war
    Wrote EAR file to C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear
    Invoking DCM servlet client...
    C:\jdev10g\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\jdev10g\jdev\lib\oc4j_remote_deploy.jar http://as18schgefage:1811/Oc4jDcmServletAPI/ ias_admin **** redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Command = INVALID_COMMAND
    #### Invalid command: redeploy /home/ias/unified C:\jdev10g\jdev\mywork\Business Insight\Project1\deploy\webapp1.ear webapp1 home
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    #### Could not send command to Oc4jDcmServlet
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (-6)
    #### HTTP return code was -6
    Exit status of DCM servlet client: -6
    Elapsed time for deployment: 4 seconds
    #### Deployment incomplete. #### Mar 16, 2005 9:20:03 AM
    Please help asap.
    Regards,
    Ujwala

    1. Re-test your connection from JDev to AS and it must success.
    I suggest to create a new OC4J instance on AS and fill
    the instance name on the dialog window while
    creating AS Connection on JDev. i.e OC4J instance name (optional)
    2. For JDev 9.0.5.x/10.1.2 using AS 9.0.4,
    don't forget to install ADF Runtime Libraries on AS.
    3. Make sure your AS support JDK/J2SE version as in JDev.
    JDev 10.1.2 need AS to use JDK version 1.4.2_04-b05.
    You can download it from http://java.sun.com/products/archive/j2se/1.4.2_04/index.html
    and install it.
    To cek your ORACLE_HOME/jdk/bin/java -fullversion
    Regs,
    Ferry Situmorang

  • MAC OS-X Lion and Error 51 - Help Needed ASAP Please

    Greetings,
    I have been using the Cisco VPN Client (4.9.01) for Mac under Snow Leopard (10.6.x) without any issues.
    Since upgrading to Lion earlier today I am now receiving an Error 51 - unable to communicate with the subsystem.
    I found a thread that suggested restarting the system while holding down Opt/3/2 keys to force a 32-Bit restart and the Client will indeed run. However, this is a bandaid patch.
    Has Cisco addressed this issue? Is there a better workaround at this time?
    Thank you,
    Lyman

    Hello Robert,
    In Windows 7 you would need to use the Cisco IPsec client which operates the same way as it does in XP with regards to the pcf.  So I am not sure why you are having trouble with Win7, if you are still having trouble with Win7 using the Cisco IPsec client please start a new thread for that specific issue as it is separate and distinct from Mac OS X and using the Mac OS X built in client.
    Did you follow this guide:
    http://anders.com/guides/native-cisco-vpn-on-mac-os-x/
    Thanks tomas.truchly.
    I have not heard of an issue with the Mac OS X Built-in client when properly configured and when the head-end has the security levels necessary.
    Also, since this thread has been Answered, to help ensure you get the help you need it might be best to open a new thread.
    -Craig

  • Unexpected Signal : 11 Error??? Help needed ASAP

    hello All,
    I have been running tomcat with SDK 1.4 on a linux for around 6 months with no major problem. The other day though tomcat began to crash, now it will not stay up. As soon as you browse a JSP page it crashes with the following error.
    Any ideas please, this is really important that i fix this ASAP.
    Unexpected Signal : 11 occurred at PC=0x402DD686
    Function=(null)+0x402DD686
    Library=/home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
          just occurred. Please refer to release documentation for possible
          reason and solutions.
    Current Java thread:
         at java.lang.StringBuffer.expandCapacity(StringBuffer.java:202)
         at java.lang.StringBuffer.append(StringBuffer.java:401)
         - locked <0x45e5fec8> (a java.lang.StringBuffer)
         at java.util.zip.ZipFile.getEntry(ZipFile.java:149)
         - locked <0x462c4790> (a java.util.jar.JarFile)
         at java.util.jar.JarFile.getEntry(JarFile.java:194)
         at java.util.jar.JarFile.getJarEntry(JarFile.java:181)
         at sun.misc.URLClassPath$JarLoader.getResource(URLClassPath.java:671)
         at sun.misc.URLClassPath.getResource(URLClassPath.java:160)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:191)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:187)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:289)
         - locked <0x462cc500> (a sun.misc.Launcher$ExtClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:282)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:274)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:302)
         - locked <0x462ca3e0> (a sun.misc.Launcher$AppClassLoader)
         at mx4j.server.interceptor.NotificationListenerMBeanServerInterceptor.addNotificationListener(NotificationListenerMBeanServerInterceptor.java:91)
         at mx4j.server.interceptor.DefaultMBeanServerInterceptor.addNotificationListener(DefaultMBeanServerInterceptor.java:98)
         at mx4j.server.interceptor.ContextClassLoaderMBeanServerInterceptor.addNotificationListener(ContextClassLoaderMBeanServerInterceptor.java:54)
         at mx4j.server.MBeanServerImpl.addNotificationListenerImpl(MBeanServerImpl.java:609)
         at mx4j.server.MBeanServerImpl.addNotificationListener(MBeanServerImpl.java:603)
         at org.apache.coyote.tomcat5.MapperListener.init(MapperListener.java:145)
         at org.apache.coyote.tomcat5.CoyoteConnector.start(CoyoteConnector.java:1537)
         at org.apache.catalina.core.StandardService.start(StandardService.java:489)
         - locked <0x4637e370> (a [Lorg.apache.catalina.Connector;)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         - locked <0x463bc2b0> (a [Lorg.apache.catalina.Service;)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Dynamic libraries:
    08048000-08056000 r-xp 00000000 62:00 442447     /home/audient/Java/j2sdk1.4.2_07/bin/java
    08056000-08059000 rw-p 0000d000 62:00 442447     /home/audient/Java/j2sdk1.4.2_07/bin/java
    40000000-40004000 rw-s 00000000 62:00 655436     /tmp/hsperfdata_audient/1347
    40004000-40005000 r--p 0034f000 62:00 9504       /usr/lib/locale/locale-archive
    40005000-40008000 r--s 00000000 62:00 786492     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/dnsns.jar
    40009000-40407000 r-xp 00000000 62:00 557107     /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    40407000-40423000 rw-p 003fd000 62:00 557107     /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/client/libjvm.so
    40435000-4043d000 r-xp 00000000 62:00 1376291    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/native_threads/libhpi.so
    4043d000-4043e000 rw-p 00007000 62:00 1376291    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/native_threads/libhpi.so
    4043e000-40448000 r-xp 00000000 62:00 24306      /lib/libnss_files-2.3.2.so
    40448000-40449000 rw-p 0000a000 62:00 24306      /lib/libnss_files-2.3.2.so
    40449000-40459000 r-xp 00000000 62:00 1245289    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libverify.so
    40459000-4045b000 rw-p 0000f000 62:00 1245289    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libverify.so
    4045b000-4047b000 r-xp 00000000 62:00 1245290    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libjava.so
    4047b000-4047d000 rw-p 0001f000 62:00 1245290    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libjava.so
    4047d000-40491000 r-xp 00000000 62:00 1245292    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libzip.so
    40491000-40494000 rw-p 00013000 62:00 1245292    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libzip.so
    40494000-4058b000 r--s 00000000 62:00 852034     /home/audient/jakarta-tomcat-5.0.28/common/endorsed/xercesImpl.jar
    4058b000-405aa000 r--s 00000000 62:00 852035     /home/audient/jakarta-tomcat-5.0.28/common/endorsed/xml-apis.jar
    405aa000-41f53000 r--s 00000000 62:00 557164     /home/audient/Java/j2sdk1.4.2_07/jre/lib/rt.jar
    41f9d000-41fb3000 r--s 00000000 62:00 557110     /home/audient/Java/j2sdk1.4.2_07/jre/lib/sunrsasign.jar
    41fb3000-42090000 r--s 00000000 62:00 557155     /home/audient/Java/j2sdk1.4.2_07/jre/lib/jsse.jar
    42090000-420a1000 r--s 00000000 62:00 557111     /home/audient/Java/j2sdk1.4.2_07/jre/lib/jce.jar
    420a1000-425fa000 r--s 00000000 62:00 557156     /home/audient/Java/j2sdk1.4.2_07/jre/lib/charsets.jar
    42722000-42922000 r--p 00000000 62:00 9504       /usr/lib/locale/locale-archive
    42922000-4293e000 r--s 00000000 62:00 786491     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/sunjce_provider.jar
    4293e000-4294b000 r--s 00000000 62:00 786494     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/ldapsec.jar
    4294b000-42a07000 r--s 00000000 62:00 786495     /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/localedata.jar
    42a07000-42a43000 r--s 00000000 62:00 1097765    /home/audient/Java/j2sdk1.4.2_07/jre/lib/ext/mysql-connector-java-3.0.11-stable-bin.jar
    42a43000-42f1f000 r--s 00000000 62:00 278689     /home/audient/Java/j2sdk1.4.2_07/lib/tools.jar
    42f1f000-42f27000 r--s 00000000 62:00 1343609    /home/audient/jakarta-tomcat-5.0.28/bin/bootstrap.jar
    42f27000-42f7b000 r--s 00000000 62:00 1343619    /home/audient/jakarta-tomcat-5.0.28/bin/jmx.jar
    42f7b000-42f7e000 r--s 00000000 62:00 1343614    /home/audient/jakarta-tomcat-5.0.28/bin/commons-daemon.jar
    42f7e000-42f85000 r--s 00000000 62:00 1343616    /home/audient/jakarta-tomcat-5.0.28/bin/commons-logging-api.jar
    42f85000-42f95000 r-xp 00000000 62:00 1245295    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libnet.so
    42f95000-42f96000 rw-p 0000f000 62:00 1245295    /home/audient/Java/j2sdk1.4.2_07/jre/lib/i386/libnet.so
    42f96000-42f99000 r--s 00000000 62:00 1261707    /home/audient/jakarta-tomcat-5.0.28/common/lib/ant-launcher.jar
    42f99000-43084000 r--s 00000000 62:00 1261708    /home/audient/jakarta-tomcat-5.0.28/common/lib/ant.jar
    43084000-4310d000 r--s 00000000 62:00 1261709    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-collections-3.1.jar
    4310d000-43128000 r--s 00000000 62:00 1261710    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-dbcp-1.2.1.jar
    43128000-43144000 r--s 00000000 62:00 1261711    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-el.jar
    43144000-4314f000 r--s 00000000 62:00 1261712    /home/audient/jakarta-tomcat-5.0.28/common/lib/commons-pool-1.2.jar
    4314f000-431a5000 r--s 00000000 62:00 1261713    /home/audient/jakarta-tomcat-5.0.28/common/lib/jasper-compiler.jar
    431a5000-431bf000 r--s 00000000 62:00 1261714    /home/audient/jakarta-tomcat-5.0.28/common/lib/jasper-runtime.jar
    431bf000-431cc000 r--s 00000000 62:00 1261715    /home/audient/jakarta-tomcat-5.0.28/common/lib/jsp-api.jar
    431cc000-431d3000 r--s 00000000 62:00 1261716    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-common.jar
    431d3000-431d7000 r--s 00000000 62:00 1261717    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-factory.jar
    431d7000-431d8000 r--s 00000000 62:00 1261718    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-java.jar
    431d8000-431e3000 r--s 00000000 62:00 1261719    /home/audient/jakarta-tomcat-5.0.28/common/lib/naming-resources.jar
    431e3000-431fb000 r--s 00000000 62:00 1261720    /home/audient/jakarta-tomcat-5.0.28/common/lib/servlet-api.jar
    431fb000-43200000 r--s 00000000 62:00 573558     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-ant.jar
    43200000-4321f000 r--s 00000000 62:00 573559     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-cluster.jar
    4321f000-43225000 r--s 00000000 62:00 573560     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-es.jar
    43225000-4322b000 r--s 00000000 62:00 573561     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-fr.jar
    4322b000-43231000 r--s 00000000 62:00 573562     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-i18n-ja.jar
    43231000-4324c000 r--s 00000000 62:00 573563     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina-optional.jar
    4324c000-432f9000 r--s 00000000 62:00 573564     /home/audient/jakarta-tomcat-5.0.28/server/lib/catalina.jar
    432f9000-43328000 r--s 00000000 62:00 573565     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-beanutils.jar
    43328000-43343000 r--s 00000000 62:00 573566     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-digester.jar
    43343000-43349000 r--s 00000000 62:00 573567     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-fileupload-1.0.jar
    43349000-43364000 r--s 00000000 62:00 573568     /home/audient/jakarta-tomcat-5.0.28/server/lib/commons-modeler.jar
    43364000-4336b000 r--s 00000000 62:00 573569     /home/audient/jakarta-tomcat-5.0.28/server/lib/jakarta-regexp-1.3.jar
    4336b000-43373000 r--s 00000000 62:00 573570     /home/audient/jakarta-tomcat-5.0.28/server/lib/jkconfig.jar
    43373000-43374000 r--s 00000000 62:00 573571     /home/audient/jakarta-tomcat-5.0.28/server/lib/jkshm.jar
    43374000-43375000 r--s 00000000 62:00 573573     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-common.jar
    43375000-4337b000 r--s 00000000 62:00 573574     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-default.jar
    4337b000-4337d000 r--s 00000000 62:00 573575     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-invoker.jar
    4337d000-43383000 r--s 00000000 62:00 573577     /home/audient/jakarta-tomcat-5.0.28/server/lib/servlets-webdav.jar
    43383000-43388000 r--s 00000000 62:00 573578     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-coyote.jar
    43388000-43395000 r--s 00000000 62:00 573579     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-http11.jar
    43395000-43396000 r--s 00000000 62:00 573580     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jk.jar
    43396000-433b4000 r--s 00000000 62:00 573581     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jk2.jar
    433b4000-433b8000 r--s 00000000 62:00 573582     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-jni.jar
    433b8000-433e4000 r--s 00000000 62:00 573583     /home/audient/jakarta-tomcat-5.0.28/server/lib/tomcat-util.jar
    433e4000-433ea000 r--s 00000000 62:00 49514      /usr/lib/gconv/gconv-modules.cache
    43bb0000-43bc5000 r-xp 00000000 62:00 69861      /lib/ld-2.3.2.so
    43bc5000-43bc6000 rw-p 00015000 62:00 69861      /lib/ld-2.3.2.so
    43bc8000-43cff000 r-xp 00000000 62:00 69862      /lib/libc-2.3.2.so
    43cff000-43d02000 rw-p 00137000 62:00 69862      /lib/libc-2.3.2.so
    43d07000-43d28000 r-xp 00000000 62:00 31514      /lib/libm-2.3.2.so
    43d28000-43d29000 rw-p 00020000 62:00 31514      /lib/libm-2.3.2.so
    43d2b000-43d2d000 r-xp 00000000 62:00 69864      /lib/libdl-2.3.2.so
    43d2d000-43d2e000 rw-p 00001000 62:00 69864      /lib/libdl-2.3.2.so
    43d43000-43d52000 r-xp 00000000 62:00 24322      /lib/libpthread-0.10.so
    43d52000-43d53000 rw-p 0000f000 62:00 24322      /lib/libpthread-0.10.so
    43dc6000-43dd8000 r-xp 00000000 62:00 33884      /lib/libnsl-2.3.2.so
    43dd8000-43dd9000 rw-p 00011000 62:00 33884      /lib/libnsl-2.3.2.so
    Heap at VM Abort:
    Heap
    def new generation   total 576K, used 551K [0x45de0000, 0x45e80000, 0x462c0000)
      eden space 512K,  99% used [0x45de0000, 0x45e5ffe8, 0x45e60000)
      from space 64K,  61% used [0x45e60000, 0x45e69cf0, 0x45e70000)
      to   space 64K,   0% used [0x45e70000, 0x45e70138, 0x45e80000)
    tenured generation   total 7136K, used 4382K [0x462c0000, 0x469b8000, 0x49de0000)
       the space 7136K,  61% used [0x462c0000, 0x46707848, 0x46707a00, 0x469b8000)
    compacting perm gen  total 6656K, used 6602K [0x49de0000, 0x4a460000, 0x4dde0000)
       the space 6656K,  99% used [0x49de0000, 0x4a452bb0, 0x4a452c00, 0x4a460000)
    Local Time = Mon Mar 21 23:25:01 2005
    Elapsed Time = 11
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_07-b05 mixed mode)
    #

    I'm having a similar problem. Did you ever find a solution?

  • SAP HR IMG ABAP Error Help

    Hi,
    I am new to this site and I have a question. Recently, I had the "Vanilla SAP System" installed on a harddrive for my laptop. I am studying for the SAP HR Consultant Certification.
    However, the system doesn't have the training DB and I have to start with implementing a project through the IMG. Yesterday, I received an error message (below) when I go to the application component sectin to add on Pers. Administration, Countries, etc).
    Can anyone direct me to someone in Atlanta that may be able to take a look at this for me?
    I was working on my computer and I get to a certain point in my customizing activity and I get this error msg:
    Runtime errors RFCGUI_unexpected_data
    The termination occurred in the ABAP program “SAPMSSYO” in “%_CTL_OUTPUT”
    The main program was SAPLS_IMG_TOOL_5
    The termination occurred in line 30 of the source code of the (Include) program <SYSINI> of the source code of program <SYSINI> (when calling the editor 300)
    There is more to the error message and I would have to perform the activity to let the person see the message. Not unless they can tell what's wrong by the error above.

    Hi
    From you code i understand that I_T_TAB is the internal table that fetch data from the SAP table TAB.
    So, the reason for the error statement is because of the Select statement.
    The select statement is used to fetch data from SAP table TAB.
    So your select statement should look like this...
    SELECT SINGLE * FROM TAB INTO I_T_TAB
    WHERE key = import_ PARAMETER
    AND import_param_date BETWEEN from_date AND to_date.
    IF sy-subrc = 0.
      MOVE-CORRESPONDING i_t_tab TO export_rec.
    ENDIF.
    If you are trying to fetch data from the internal table I_T_TAB &
    append the export parameter EXPORT_REC then you should use the READ statement.
    READ TABLE i_t_tab WITH KEY key = import_ parameter
    and import_param_date between from_date and to_date.
    IF sy-subrc = 0.
      MOVE-CORRESPONDING i_t_tab TO export_rec.
      APPEND export_rec.
    ENDIF.
    Hope this helps!
    best regards,
    Thangesh

  • ABAP MAPPING:Help needed

    Hi Friends,
    I have a scenario where I need to pick up  Idocs out of a packet of Idocs .The Idocs will be picked by checking for a certain condition for the Idoc Segement and of all the Idocs the Idocs which satisfy a particular condition should only be output and for this I have been asked to achieve this using ABAP Mapping.So any info in this regard would be of great help for me.
    Packet of Idocs----
    >  Idocs satisfying the cond.
      (sender)*********(Check for a condition)*****(Receiver)
    Please do provide with me a sample coding if possible.Please take up this with some priority.
    Thanks & Regards,
    Pradeep.

    Hi All,
    The output from the ABAP class needs to be transformed into a different message using Graphical Mapping .
    Please provide me some inputs for creating this ABAP mapping.
    Thanks & Regards,
    Pradeep.

  • HELP Needed ASAP! Curve Not Turning On, Red Flashing Lights!

    Hi,
    I have a Blackberry curve 8310. I plugged my curve into my mac to do a software update. Midway through, my phone shut off and hasn't worked since. The battery is fully charged. The phone is off and won't turn on. Additionally, there is a red LED light blinking twice every few seconds. I think I found an article on blackberry.com's knowledge database that diagnosed my issue, but my problem now is that because the curve isn't turning on/off, it's not connecting to my mac's desktop manager. So I can't do anything the article tells me to do. What should I do now? I need help ASAP!
    Here's the link to the article: http://www.blackberry.com/btsc/search.do?cmd=displayKC&docType=kc&externalId=KB19915
    Thanks in advanced!

    Hello Asmro and welcome to the BlackBerry Support Community Forums.
    It can take up to 30 minutes for the Mac to connect to the BlackBerry.
    I would remove your battery and connect to the BlackBerry Desktop Manager. Once it comes up there is no software installed, re-insert the battery and follow the article KB19915.
    Let me know how you make out.
    -HMthePirate
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • HT4623 iphone 3 restore help needed asap

    Hi,
    See below print screem of problem I am having, iphone 3 is in restore mode and i have trird everything I have been advised to.
    \error 6025
    2012-09-27 22:36:11.015 [1012:120c]: restore library built Aug 11 2012 at 16:32:14
    2012-09-27 22:36:11.015 [1012:120c]: iTunes: iTunes 10.7.0.21
    2012-09-27 22:36:11.015 [1012:120c]: iTunes: Software payload version: 8C148
    2012-09-27 22:36:55.604 [1012:aec]: iTunes: Specifying UOI boot image
    2012-09-27 22:36:55.610 [1012:aec]: requested restore behavior: Erase
    2012-09-27 22:36:55.611 [1012:aec]: requested variant: Erase
    2012-09-27 22:36:55.625 [1012:aec]: *** UUID 6729FE47-231E-B74A-B26A-EE2F3B282E46 ***
    2012-09-27 22:36:55.667 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: withApTicket is False
    2012-09-27 22:36:55.668 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreLogo" Digest = "<CFData 06D3B9F0 [71048078]>{length = 20, capacity = 20, bytes = 0x9eba4b1152ef0493161c31d5cade4ae26ec4d01b}"
    2012-09-27 22:36:55.668 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreDeviceTree" Digest = "<CFData 06D40E78 [71048078]>{length = 20, capacity = 20, bytes = 0xe1c1d64ae4a66c446fe5a2ea91a8de3462a9cbf3}"
    2012-09-27 22:36:55.669 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreKernelCache" Digest = "<CFData 06D3C698 [71048078]>{length = 20, capacity = 20, bytes = 0xffe4fd533832ec121bf356ca1143e360972d4190}"
    2012-09-27 22:36:55.669 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RestoreRamDisk" Digest = "<CFData 06D3EFB0 [71048078]>{length = 20, capacity = 20, bytes = 0x7b7645b89389219cfb4de5257fec59b67237d8aa}"
    2012-09-27 22:36:55.703 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "KernelCache" Digest = "<CFData 06D3DA98 [71048078]>{length = 20, capacity = 20, bytes = 0xffe4fd533832ec121bf356ca1143e360972d4190}"
    2012-09-27 22:36:55.704 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow1" Digest = "<CFData 06D430D8 [71048078]>{length = 20, capacity = 20, bytes = 0x8be30a8b298e36866e05eee57538430dc60af012}"
    2012-09-27 22:36:55.705 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryLow0" Digest = "<CFData 06D3C648 [71048078]>{length = 20, capacity = 20, bytes = 0x7c27972b0539fbdacfed19f6cbf3bba92eaa4f13}"
    2012-09-27 22:36:55.716 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "iBoot" Digest = "<CFData 06D3F4B0 [71048078]>{length = 20, capacity = 20, bytes = 0x67814c9641a3a8c28fa800b6c3f753590aed60db}"
    2012-09-27 22:36:55.716 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "DeviceTree" Digest = "<CFData 06D39B28 [71048078]>{length = 20, capacity = 20, bytes = 0xe1c1d64ae4a66c446fe5a2ea91a8de3462a9cbf3}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging1" Digest = "<CFData 06D3CE40 [71048078]>{length = 20, capacity = 20, bytes = 0xa622ccd2cbc8406da1757d19212cacc6f856eb4d}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging" Digest = "<CFData 06D3DA20 [71048078]>{length = 20, capacity = 20, bytes = 0x8ae3e48d62cd8a83287c8133a195637c908458b2}"
    2012-09-27 22:36:55.717 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "AppleLogo" Digest = "<CFData 06D41E68 [71048078]>{length = 20, capacity = 20, bytes = 0x9eba4b1152ef0493161c31d5cade4ae26ec4d01b}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryPlugin" Digest = "<CFData 06D3AAC8 [71048078]>{length = 20, capacity = 20, bytes = 0xea5805db544407d49475a4584e6c3af3bc97cd0f}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryFull" Digest = "<CFData 06D42700 [71048078]>{length = 20, capacity = 20, bytes = 0x50dd3114f4b9a3bb9c18589bfc5a300e35335f5f}"
    2012-09-27 22:36:55.718 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "BatteryCharging0" Digest = "<CFData 06D42278 [71048078]>{length = 20, capacity = 20, bytes = 0x64c7eb75bfdf1c0ff50ff17851c37918316eeed8}"
    2012-09-27 22:36:55.719 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: personalizing "RecoveryMode" Digest = "<CFData 06D406D0 [71048078]>{length = 20, capacity = 20, bytes = 0xa21af5e198d8dccd00bea4bfa47b26c771a0716b}"
    2012-09-27 22:36:55.719 [1012:aec]: amai: _AMAuthInstallBundleCreateServerRequestDictionary: using UniqueBuildID <CFData 06D3D728 [71048078]>{length = 20, capacity = 20, bytes = 0x4a515ecc484322448d261b13499bfb4002f66b96}
    2012-09-27 22:36:55.721 [1012:aec]: amai: AMAuthInstallRequestSendSync: SSO function returned NULL, SSO disabled.
    2012-09-27 22:36:55.812 [1012:aec]: amai: tss_submit_job: HttpQueryInfo returned 200
    2012-09-27 22:36:55.823 [1012:aec]: amai: AMAuthInstallRequestSendSync: received tss response (server version: 0.6.30-b2)
    2012-09-27 22:36:56.280 [1012:1580]: iBoot build-version = iBoot-931.71.16
    2012-09-27 22:36:56.281 [1012:1580]: iBoot build-style = RELEASE
    2012-09-27 22:36:56.298 [1012:1580]: unable to open device_map.txt: No such file or directory
    2012-09-27 22:36:56.300 [1012:1580]: found device map entry for 0x00008900 0x00000004. boardConfig=n82ap platform=s5l8900x
    2012-09-27 22:36:56.301 [1012:1580]: _AMRestoreCreateCFDataWithContentsOfFile: CreateFileA failed: 2
    2012-09-27 22:36:56.301 [1012:1580]: unable to create data from file: 17
    2012-09-27 22:36:56.301 [1012:1580]: device_map.plist file not found
    2012-09-27 22:36:56.302 [1012:1580]: AMDeviceIoControl: GetOverlappedResult failed
    Can anyone help,  i have tried all youtube videos, all apple advice, I am at a loss
    Thanks
    Sam

    unfortunately if its not working you need a update from apple or a update from the manufacturer there has been a lot of complaints about car stereos not working with the iPhone 4 and it def has something to do with the software that apple is shipping there is no magic application or magic setting that is going to change this sorry

  • ABAP Proxy, Help needed regarding Naming Conventions

    Hi,
    I have made a ABAP Proxy Scenario to a File Service. The Objects have been created in the INTEGRATION REPOSITORY and the Configurations are made in INTEGRATION DIRECTORY. While Creating the PROXIES executing the TCode "SPROXY", the Proxies for the DATA TYPE and the MESSAGE TYPE are being created successfully but the Proxy for the Outbound MESSAGE INTERFACE is not getting created.
    The Error says the Name must begin with 'CO_'. All the Objects that have been created by me begin with "Z_", and I have also made a Custom Package called "ZPROXY" and assigned this package . The error says Naming Errors.
    Can anyone please help me out on this.
    <b> The Proxy Class that is being generated starts with "CO_" and so checking out in SE24, it says Object does not exist.</b>
    So please tell me how I can go about Correcting this.
    Thanks and Regards
    Somnath

    Hi,
    Thanx a lot for ur reply UDO...but this is not solving my Problem, actually when I am trying to Create the Proxy for the Outbound Message Interface, it is automatically Prefixing the "CO_". Thus I cannot Save it after this and also not see it in SE24.
    A few more details:
    <b>
    The Outbound Message Interface name that I have used is "Z_ABAP_PROXY_MSG_INTERFACE"</b>
    We i Create it Prefixes a "CO_" before the Interface name and it cannot be saved or seen in SE24.
      Do provide me with some Help.
      Thanking you in anticipation.
    Warm Regards
    Chakra

  • AE CS4 Error Help Needed!!

    Hey  I get 3 errors everytime Ii run AE.
    1- failed to create process default activation context
    2- Microsoft C++ Runtime Library Runtime Error!! Error Code R6034 - An application has made an attempt to load the C runtime library incorrectly. Please contact the application's support team fow more information.
    3- Microsoft C++ Runtime Library Runtime Error!! Error Code R6030 - CRT not initialized. 
    Please Need Help!!

    83 :: xx are all resource errors, many times related to fonts as listed on my site. The logical conclusion therefore is that you have changed something outside AE, that is added a rubbish font or updated an external component like Quicktime. Still, as the others said, it's miraculous AE runs/ ran at al lon your system and you were actually able to use it.
    Mylenium

  • 9i Developer suite login problem. help needed ASAP

    i installed oracle 9i developer suite, my problem is i can't login. this is the error ora12560: TNS: oracle adapter error.
    or
    if i put the hostname it displays a no listener error and closes. i tried to create a listener in net configuration assistant, but i can't see it in services.
    i'm using windows XP. and not conneted to any machine.
    do i need any changes on my window settings?
    please help...
    thanks
    here is my listener.ora
    ABC =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\OraHome)
    (PROGRAM = extproc)
    tnsnames.ora
    TEST.ABC =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = ABC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = test.ABC)
    ORACLE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abc)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = oracle)

    check your operating system network protocole is TCP/IP is installed if so check is there any problem with these protocoles. this error is encounter generally due operating system network protocoles it is not an oracle error. here is discription.
    TNS-12560 TNS:protocol adapter error
    Cause: A generic protocol adapter error occurred.
    Action: Check addresses used for proper protocol specification. Before reporting this error, look at the error stack and check for lower level transport errors.For further details, turn on tracing and re-execute the operation. Turn off tracing when the operation is complete.

  • PHP error help needed

    I've worked through the Adobe tutorial, "Developing a web
    application with
    Dreamweaver"
    http://www.adobe.com/devnet/dreamweaver/articles/develop_web_application.html).
    Everything works fine until I get to the final step of
    testing the Record
    Insert form be submitting data. When I click the Insert
    record button
    instead of going to the View page I get these errors for each
    form field:
    Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    Access denied for user 'ODBC'@'localhost' (using password:
    NO) in
    F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
    Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]: A
    link to the server could not be established in
    F:\Webs\cafe_php\TMPh4f4n13a5b.php on line 8
    The warnings appear on the form page above the page itself.
    When I connected the database to the site the test worked.
    Here are the first 8 lines of code:
    <?php require_once('Connections/connTownsend.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    Any suggestions?
    Walt

    First, thanks for helping.
    2nd, sorry to be so thick, this is all still Greek to me, but
    I have no idea
    where to insert
    with a die($rsInsert_query):
    Here is all the PHP code above the DOCTYPE:
    <?php require_once('Connections/connTownsend.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType,
    $theDefinedValue = "",
    $theNotDefinedValue = "")
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue)
    : $theValue;
    $theValue = function_exists("mysql_real_escape_string") ?
    mysql_real_escape_string($theValue) :
    mysql_escape_string($theValue);
    switch ($theType) {
    case "text":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "long":
    case "int":
    $theValue = ($theValue != "") ? intval($theValue) : "NULL";
    break;
    case "double":
    $theValue = ($theValue != "") ? "'" . doubleval($theValue) .
    "NULL";
    break;
    case "date":
    $theValue = ($theValue != "") ? "'" . $theValue . "'" :
    "NULL";
    break;
    case "defined":
    $theValue = ($theValue != "") ? $theDefinedValue :
    $theNotDefinedValue;
    break;
    return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
    $editFormAction .= "?" .
    htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) &&
    ($_POST["MM_insert"] == "form1")) {
    $insertSQL = sprintf("INSERT INTO comments (FIRST_NAME,
    LAST_NAME) VALUES
    (%s, %s)",
    GetSQLValueString($_POST['FIRST_NAME'], "text"),
    GetSQLValueString($_POST['LAST_NAME'], "text"));
    mysql_select_db($database_connTownsend, $connTownsend);
    $Result1 = mysql_query($insertSQL, $connTownsend) or
    die(mysql_error());
    ?>
    Walt
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Walt - this is a good puzzle.
    >
    > All of your observations suggest that you have adequate
    permissions, yet,
    > this error says you don't -
    >
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> A link to the server could not be established in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >
    > Let's take a look at your insert command - can you trap
    the insert process
    > with a die($rsInsert_query) command, right before the
    actually execution?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Walt F. Schaefer" <[email protected]> wrote
    in message
    > news:[email protected]...
    >> Murray,
    >>
    >> Here's an Update/Summary:
    >>
    >> 1. I have a MySQL database (localhost) I can see and
    manipulate via
    >> Navicat
    >> 2. In my site (in DW) I created a connection to that
    database. It tested
    >> successfully.
    >> 3. I created a recordset using that database. It
    tested successfully.
    >> 4. On a new page Insert > Application Objects
    > Insert Record > Record
    >> Insertion Form Wizard.
    >> 5. Save page and preview locally in IE6.
    >> 6. Input info in form and click Insert record.
    >> 7. Record IS added to table but every field is Null.
    >> 8. Errors for each form field:
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> Access denied for user 'ODBC'@'localhost' (using
    password: NO) in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >>
    >> Warning: mysql_real_escape_string()
    [function.mysql-real-escape-string]:
    >> A link to the server could not be established in
    >> F:\Webs\GoFreeFuel\TMP4r8sq1dpfl.php on line 8
    >>
    >> As I can read from the database/table and the Insert
    record form DOES ADD
    >> a record it would seem I am connected to the db just
    unable to add data.
    >>
    >> What have I done wrong?
    >>
    >> Thanks.
    >> --
    >>
    >> Walt
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> OK - I think we will have to solve your database
    connectivity issues
    >>> first. What does your Connections file look
    like?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>> ==================
    >>>
    >>>
    >>> "Walt F. Schaefer" <[email protected]>
    wrote in message
    >>> news:[email protected]...
    >>>>> LOL - you are interpreting my code MUCH
    too literally. Change this -
    >>>> It's only because I don't have a clue. Hence
    the need to use this
    >>>> beginner's tutorial.
    >>>>
    >>>> I replaced to code as instructed. No
    improvement. Error messages:
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: Access
    denied for user
    >>>> 'ODBC'@'localhost' (using password: NO) in
    >>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: A link
    to the server could not be
    >>>> established in
    F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: Access
    denied for user
    >>>> 'ODBC'@'localhost' (using password: NO) in
    >>>> F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>>
    >>>> Warning: mysql_real_escape_string()
    >>>> [function.mysql-real-escape-string]: A link
    to the server could not be
    >>>> established in
    F:\Webs\cafe_php\TMPgayzl14jqr.php on line 8
    >>>> INSERT INTO comments (FIRST_NAME, LAST_NAME)
    VALUES (NULL, NULL)
    >>>> --
    >>>>
    >>>> Walt
    >>>>
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> LOL - you are interpreting my code MUCH
    too literally. Change this -
    >>>>>
    >>>>> $insertSQL = sprintf("INSERT INTO
    comments (FIRST_NAME, LAST_NAME)
    >>>>> VALUES
    >>>>> (%s, %s)",
    >>>>> GetSQLValueString($_POST['FIRST_NAME'],
    "text"),
    >>>>> GetSQLValueString($_POST['LAST_NAME'],
    "text"));
    >>>>> $insert_rsEmails = sprintf("INSERT INTO
    tblcontactdata SET emailValue
    >>>>> =
    >>>>> %s", GetSQLValueString($filter_rsEmails,
    "text"));
    >>>>> die($insert_rsEmails);
    >>>>> $rsEmails =
    mysql_query($insert_rsEmails, $selectData) or
    >>>>> die(mysql_error()); // insert this email
    into the database
    >>>>>
    >>>>> mysql_select_db($database_connTownsend,
    $connTownsend);
    >>>>>
    >>>>> to this -
    >>>>>
    >>>>> $insertSQL = sprintf("INSERT INTO
    comments (FIRST_NAME, LAST_NAME)
    >>>>> VALUES
    >>>>> (%s, %s)",
    >>>>> GetSQLValueString($_POST['FIRST_NAME'],
    "text"),
    >>>>> GetSQLValueString($_POST['LAST_NAME'],
    "text"));
    >>>>> die($insertSQL);
    >>>>>
    >>>>> mysql_select_db($database_connTownsend,
    $connTownsend);
    >>>>>
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "Walt F. Schaefer"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Murray,
    >>>>>>
    >>>>>> Here's all the PHP code that
    precedes the DOCTYPE *after* inserting
    >>>>>> the code you provided:
    >>>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>
    >>
    >

  • Eclipse error | Help needed badly

    Hi,
    My Eclipse was working properly a couple of days back but suddenly It's stopped working and gives me an error : "workspace does not contain a main type,Do you have a public void run method"
    Now,I think the problem Is some how the jar's that I'm trying to upload aren't getting uploaded.
    I say this because a strange problem has arised and I think this might have to do with Eclipse giving the above error.
    This Is what I do to create a new java project
    -Open eclipse
    -save files to workspace
    -click on new > java project
    -Then,give the project a name and then click finish
    -after that I create a new class by right clicking on the project folder > new > class >give the class a name and then click finish.
    -after that I open workspace(thats on my desktop) click on the project folder make a new folder name It "lib" and upload the jar that I need for the project.
    -after this I go back Into eclipse and right click on the project folder and hit refresh,now I see the folder"lib" containing the jar Inside It.
    -I right click on the jar file and select "add to build path",and now theres the Issue comes In.
    I want the jar to Into the reference librarys,because the last time I got the jar In the reference library It worked.
    But this time I can't even manage to find where the reference library Is.
    so when I click on add to build path the jar Instead of appearing in the reference library (which Isn't there) just dissapears.
    I really need to fix this,because I cant test and write code until Its fixed.
    heres a snapshot of how my eclipse framework looks : [http://www.flickr.com/photos/38561743@N03/4122304046/sizes/o/]
    I tried to solve this on my own for hours and hours but It just Isn't working.
    please guys help,I need to solve this.
    Thanks,
    Edited by: Parastar on Nov 21, 2009 7:26 AM
    Edited by: Parastar on Nov 21, 2009 7:27 AM

    Parastar wrote:
    okay guys,I'v tried the eclipse forums for about 24 hours now.
    but no response,those guys are really really slow.
    please,some one here help me out.Quit begging. You've already been told this is not the place for this question. You're complaining about not getting an answer there, and begging people here to answer, as if that vindicates your decision to post here in the first place. But you haven't gotten your solution here either. Which is worse--no answer there, or a bunch of answers that don't help you here?

Maybe you are looking for

  • How to use code in iphone 4s verizon?

    Hi, I have iphone 4s verizon mobile. I have unlocked the mobile and i have unlock code. while changing the sim there is no option for give the code and i cannot use the phone.

  • Is it safe to delete preview files/folders?

    I noticed I have 30gb or more of folders in a folder called preview files.  These seem to be the product of rendering and look like a waste of space - what happens if i delete the whole lot for projects i no longer work on?  would removing these and

  • Time capsule backups safe?

    Hi all, I  just got round to installing my new TC and am backing up my whole Mac with time machine, how do i keep my backup private, so nobody else on the network can access this? And also where are all the settings found for the time capsule? Cheers

  • Open a transaction for user using RFC

    Hi all, Is it possible to open a transaction (I mean to actualy open a gui for the user) using a RFC that is called from my Web Server? For example: I have a web application (written in some language) that presents some list of transaction codes. Whe

  • Sx-20 serial number

    Hello, I have an SX20 and i don't know what is the correct serial number to register it with a Cisco contract mantenance. In the box different numbers are available. CTS-QSC20-MIC----------- S/N 120........ CTS-RMT-TRC5------------ S/N F1A........ CT