Error in header files on DMA using SDK

I followed procedure as like as simple Hello_world mention in zedboard and chosen "OS Platform as Linux".check out this link i followed the procedure as
http://zedboard.org/content/zedboard-create-planahead-project-embedded-p....
Then replaced that Hello_world code by My program.I attached DMA program.while compling I faced error and post in the zedboard->support->s/w development application and then i added header files in the project explorer window in SDK to the include folder as a path.pls check out link below for header file inclusion as http://s1322.photobucket.com/user/Arunvision/media/sdk_bsp_zps99084a46.j...
we got the error like as
**** Build of configuration Debug for project Dma ****
make all
Building file: ../src/OCM2PL.c
Invoking: ARM Linux gcc compiler
arm-xilinx-linux-gnueabi-gcc -Wall -O0 -g3 -I"C:\Xilinx\14.4\ISE_DS\EDK\sw\XilinxProcessorIPLib\drivers\scutimer_v1_00_a\src\" -I"C:\Xilinx\14.4\ISE_DS\EDK\sw\XilinxProcessorIPLib\drivers\dmaps_v1_00_a\src" -I"C:\Xilinx\14.4\ISE_DS\EDK\sw\XilinxProcessorIPLib\drivers\scugic_v1_00_a\src" -I"C:\Xilinx\14.4\ISE_DS\EDK\sw\XilinxProcessorIPLib\drivers\common_v1_00_a\src" -I"C:\Xilinx\14.4\ISE_DS\EDK\sw\lib\bsp\standalone_v3_07_a\src\cortexa9" -c -fmessage-length=0 -MMD -MP -MF"src/OCM2PL.d" -MT"src/OCM2PL.d" -o"src/OCM2PL.o" "../src/OCM2PL.c"
arm-xilinx-linux-gnueabi-gcc: fatal error: no input files
compilation terminated.
make: *** [src/OCM2PL.o] Error 1
Pls provide solution as soon as possible.

Ran into a very similar problem compiling code (on win7/64bit) for the zc702 board.    In our case it was due to the cygwin binaries being on the windows PATH.   You won't have to remove cygwin - just remove from the windows path.   
Also can't take credit - John Zhao and his team at mathworks uncovered it - while we were tracking down a different issue.
--Bart

Similar Messages

  • Error when trying to run script using SDK at plugin startup

    Hi
    I am trying to run a script when my InDesign plugin is loaded. I referred to the PanelTreeView sdk sample as an example and implemented a StartupShutdown Boss
    In my implementation, in the startup() method I have the code to get the scriptManager and the scriptRunner for my javascript that I want to run. However, when my code hits the following line :
              InterfacePtr<IScriptRunner>theRunner(Utils<IScriptUtils>()->QueryScriptRunner(scriptFile) ); //scriptfile is ID script file that I want to run
              I get the error saying "Calling ScriptInfoDatabase::InitScriptInfoManager before resources have been registered".
    I am wondering how I can fix this error. or if this is too early to invoke scriptrunner, then is there some other place where I can invoke the scriptrunner to run my script
    this is how I have defined my StartupShutdown Boss class in  the .fr file
        Class
             kmyStartupShutdownBoss,
             kInvalidClass,
                 /** Implementation of IStartupShutdownService that runs a  scripts on startup */
                 IID_IAPPSTARTUPSHUTDOWN, kmyStartupShutdownImpl,
                 /** identify the service type */
                 IID_IK2SERVICEPROVIDER, kCStartupShutdownProviderImpl,
    Appreciate any help on this one .. thanks!
    Sameer

    Dependent on your InDesign version, you can schedule an IdleTask and do it from there, or just use a lazy startup.
    IID_IK2SERVICEPROVIDER,kLazyStartupShutdownProviderImpl,
    Again dependent on your InDesign version you should first check whether a script can run at all - some nasty other plugins may prevent that with modal dialogs.
    Finally there is the possibility to run startup scripts even without plugin ...
    Dirk

  • Error Reading Header File When Creating a CIN

    Hello everyone. I am a college student new to LabView and Im using the
    software to create a real time data acquisition system for EMG signal
    analysis for a research project. However, Im having difficulty building
    a CIN for my C code. I am using Microsoft Visual Studio.NET 2003 and
    running LabView 7.1 on Windows XP. I am using the "Using External Code
    in LabView" (April 2003 Edition) manual and I am attempting to do the
    steps located in section 3-15 under Visual C++ IDE. However, I keep
    getting fatal error C1083: Cannot open include file: 'extcode.h': No
    such file or dir. I have followed all of the directions in the manual
    and even explicitly tried adding extcode.h to my project  but I
    still get this error. My version of Visual Studio is different then the
    one described so I was wondering if there is something different that I
    have to do in this process. Any help would be greatly appreciated.
    Thanks for your time.
    Pat

    Is there a particular reason you're not using a Call Library Function Node to call a DLL instead of using a CIN? Calling DLLs from Call Library Function Node are usually a much more user-friendly process, which I would recommend, unless you need to take advantage of the extra features listed on page 1-4 of Using External Code in LabVIEW.
    Jarrod S.
    National Instruments

  • Error while saving file to database using messageFileUpload

    Hi,
    In my OA Page I have messageFileUpload to save the file to a database. I have a custom stored procedure that I call in the AM that takes the file as BLOB and insert it into the table. My problem is for smaller files it works fine but as soon as I try to save a larger file i.e. over 0.5 MB I am getting the following errors. Sometime I get size error sometimes I get unreasonable conversion requested error. How can I solve this so it takes any size of file and save it.
    Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: Data size bigger than max size for this type: 2251264;
    Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = java.sql.SQLException: ORA-01460: unimplemented or unreasonable conversion requested ; Here is what I have in my Controller code snippet
    BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, fileName);
    Serializable[] parametersFile =  { fileName, contentType, fileSize, uploadedByteStream };
    Class[] paramTypesFile = { String.class, String.class, Long.class, BlobDomain.class };
    am.invokeMethod("saveFile", parametersFile, paramTypesFile);Here is the AM method that also invokes the Stored Procedure and pass the file as BLOB to save
    conn = (OracleConnection)dbTransaction.getJdbcConnection();
    cStmt = (OracleCallableStatement)conn.prepareCall(
                      "{CALL FILE_PKG.saveFile(:1, :2, :3, :4)}");
    cStmt.setString(1, fileName);
    cStmt.setString(2, fileContentType);
    cStmt.setNUMBER(3, new NUMBER(fileSize.intValue()));
    cStmt.setBinaryStream(4,uploadedFile.getBinaryStream(),fileSize.intValue());Any help is appreciated.
    Thanks

    I was able to resolve it and used the below code just in case if anyone else trying to save the BLOB
    byte[] barray = uploadedFile.getBytes(0,fileSize.intValue());
    oracle.sql.BLOB data = oracle.sql.BLOB.createTemporary(conn, true, BLOB.DURATION_CALL);
    data.putBytes(1,barray);
    cStmt.setBlob(4,tempBlob);

  • OutofMemory Error while sending file to database using Web services

    I have a file of 30MB to be written to the MySQL database. I am doing this in Axis web services and it gives me the following error:
    (I am using Tomcat as the application server and Apache as the web server, Axis 1.3 and MySQL standard 5.0.21 version. I have set the minimum and maximum heap size and it works well without using the web service (just uploading and downloading from the database using a simple java program). Another thing to notice is that I can send a file of almost 10MB size to the database using web service without any problem. But it doesn't work with the 30 MB .)
    java.lang.OutOfMemoryError: Java heap space; nested exception is:
         java.lang.OutOfMemoryError: Java heap space
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalException
    faultSubcode:
    faultString: java.lang.OutOfMemoryError: Java heap space; nested exception is:
         java.lang.OutOfMemoryError: Java heap space
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:dbr221d.dbr.louisville.edu
    java.lang.OutOfMemoryError: Java heap space; nested exception is:
         java.lang.OutOfMemoryError: Java heap space
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:633)
         at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanEndElement(XMLNSDocumentScannerImpl.java:719)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1685)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at edu.louisville.bcc_ma.ws.lab.LabServiceSoapBindingStub.storeGZIPFile(LabServiceSoapBindingStub.java:472)
         at edu.louisville.bcc_ma.lims.labclient.container.SendGZIPFile.sendFile(SendGZIPFile.java:69)
         at edu.louisville.bcc_ma.lims.labclient.container.LoginContainer.login(LoginContainer.java:58)
         at edu.louisville.bcc_ma.lims.labclient.container.LoginContainer.main(LoginContainer.java:44)

    Sorry for the delayed response here, forget to add it to my watchlist. I didn't catch if you were using Java 1.5 or not. Prior to 1.5 the default maximum heap space was 64MB which with the overhead of the appserver might be your problem.
    Take a look at http://java.sun.com/j2se/1.5.0/docs/guide/vm/gc-ergonomics.html and the java -Xmx <size> command line option to change the default (I believe the size argument is in bytes, but don't hold me to that). I think you can pass that as a command line option to the startup script, but you should check the doco to see if it needs to be wrapped in some other arg etc.,
    I seem to recall running into this same problem a few years back when I had a servlet doing some intense graphics processing on the fly and setting this option fixed the problem.

  • Error in header file

    While i compile this code to create dll file using command line compiler , it shows error in "twain.h"
    y it is showing error in twain.h?
    #include <jni.h>
    #include "Tmanager.h"
    #include "twain.h"
    JNIEXPORT jboolean JNICALL
    Java_Tmanager_isvalidDriver(JNIEnv *env, jclass cla)
         return (m_hTwainDLL && m_pDSMProc);
    Error :
    twain.h(84):error c2146: syntax error : missing ';' before identifier 'TW_HANDLE'
    twain.h(84):fatal error c1004:unexpected end of file found
    can anyone help me?
    Thanks,
    Sri

    twain.h(84):error c2146: syntax error : missing ';' before identifier 'TW_HANDLE'
    twain.h(84):fatal error c1004:unexpected end of file found
    can anyone help me?At least you could have shown us what's happening there around line 84 in
    that twain.h file; normally I'm psychic but this is beyond my capabilities.
    kind regards,
    Jos
    ps. this even isn't a Java question ...

  • Error while logging into CR server using SDK API

    I have crystal reports server 2008 running on Redhat linux machine. The CMS server (running on port 6400)and other servers are all up and running.
    When I try to communicate to the server using the SDK API I am getting error message. Can someone help me. I tried many things like shutting down firewall at the  server etc bit nothing work . The netstat -na command shows server is running on port 6400. I am going mad.
                  String  authentication = "secEnterprise"
                  ISessionMgr sm = CrystalEnterprise.getSessionMgr();
              enterpriseSession = sm.logon(userName,password,cms,authentication)
    Exception:
    com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$CommunicationError: Communication error occurred when trying to connect to server 15.7.204.107:6400 (FWM 01009)
    cause:com.crystaldecisions.thirdparty.org.omg.CORBA.TRANSIENT: attempt to establish connection failed: java.net.ConnectException: Connection timed out: connect  minor code: 0x4f4f0001  completed: No
    detail:Communication error occurred when trying to connect to server 15.7.204.107:6400 (FWM 01009) attempt to establish connection failed: java.net.ConnectException: Connection timed out: connect
         at com.crystaldecisions.enterprise.ocaframework.RawAPSDirectory.find(RawAPSDirectory.java:252)
         at com.crystaldecisions.enterprise.ocaframework.APSServerHandler.buildAPSClusterInfo(APSServerHandler.java:425)
         at com.crystaldecisions.enterprise.ocaframework.APSServerHandler.buildServerInfo(APSServerHandler.java:142)
         at com.crystaldecisions.enterprise.ocaframework.ServerController.redirectServer(ServerController.java:546)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.redirectServer(ServiceMgr.java:1060)
         at com.crystaldecisions.enterprise.ocaframework.ManagedSessions.get(ManagedSessions.java:250)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(ServiceMgr.java:694)
         at com.crystaldecisions.sdk.occa.security.internal.LogonService.ensureServiceStub(LogonService.java:504)
         at com.crystaldecisions.sdk.occa.security.internal.LogonService.doUserLogon(LogonService.java:648)
         at com.crystaldecisions.sdk.occa.security.internal.LogonService.userLogon(LogonService.java:295)
         at com.crystaldecisions.sdk.occa.security.internal.SecurityMgr.userLogon(SecurityMgr.java:162)
         at com.crystaldecisions.sdk.framework.internal.SessionMgr.authenticate(SessionMgr.java:598)

    Thanks for the reply. What do you mean by enterprise machine. Can you explain.
    I will try wireshark and let you know.
    I can login into infoview, cmc and ssh to that machine without problems.Very strange.

  • MakePathNa​me error, though header file included

    I use the makepathname() function found in utility.h, which I did include at the top at my code, and have shown in my list of .h files.
    Also, Options>>Build Options...>>Require function prototypes is also checked.
    However, I keep getting this error: error: implicit declaration of function 'MakePathName' is invalild in C99. Make sure that you include the function prototype. I need help with this.
    Solved!
    Go to Solution.

    Another suggestion is to look at the sample userint\custctrl\hyperlinkctrl\simple.cws - it builds fine and should also work on your computer. If so, you can check the differences...

  • Permission Error when copy files into cmsdk using NFS with non admin user

    Hi All,
    We are using CMSDK with NFS protocol and we have created different users with ACL to control different access for users.
    When we copy files into cmsdk folders using one of the admin user this works fine, even a multiple copy works fine. But when we use any non admin user , some time copy commands works but some time it throw a permission deny error. and this is happening very intermittently.
    when we use ftp protocol and ftp file it's all works fine for the both admin & non admin user. Is there any limitation in using CMSDK NFS protocol
    Did any one encouter any similar issue. Any pointers would be of great help.
    Thanks in advance
    Regards,
    Navin

    Hi All,
    We are using CMSDK with NFS protocol and we have created different users with ACL to control different access for users.
    When we copy files into cmsdk folders using one of the admin user this works fine, even a multiple copy works fine. But when we use any non admin user , some time copy commands works but some time it throw a permission deny error. and this is happening very intermittently.
    when we use ftp protocol and ftp file it's all works fine for the both admin & non admin user. Is there any limitation in using CMSDK NFS protocol
    Did any one encouter any similar issue. Any pointers would be of great help.
    Thanks in advance
    Regards,
    Navin

  • Please help.. error playing mp3 files in Sony Erricsson SDK 2.2.4

    i installed Sony Ericsson SDK 2.2.4 and also installed the software requirements like:
    SPOT xde Player,
    the script: WindowsXP-Windows2000-Script56-KB917344-x86-enu.exe,
    and directx 9.0
    i have jdk version 1.5.0
    but when i try to run the application named "mmademo", and select the Midlet named "Simle Player", and then select "SEMC mp3 test", it throws this exception "mediaexception: start ".
    if it is important the directory of this application is this: C:\SonyEricsson\JavaME_SDK_CLDC\PC_Emulation\WTK2\apps\mmademo
    by the way normally the emulator of Sony Ericsson K750 supports mp3 playing on mmapi..
    it works fine when i select some other applications like "Simple Ring Tone" playing..
    And when i quit the emulator, console screen displays this(even if i run the applications that work correctly):
    Execution completed.
    0 bytecodes executed
    0 thread switches
    801 classes in the system (including system classes)
    0 dynamic objects allocated (0 bytes)
    0 garbage collections (0 bytes collected)
    please give some idea.. its too important to me

    it is the example code of the Sony Ericsson SDK, i did not write it, plus it works on my desktop computer but i need it to work on my notebook.. it gives the that result(which i explained above) on my notebook computer.. and i cant understand why would a SDK malfunctions (at playing mp3) on my notbook, and runs ok on my desktop, though my desktop is too much older and slower..
    can that have something to do with my language properties? because in order to use netbeans i switched the language to english(usa), which was not the original language of my operating system.. i installed the Sony Ericsson SDK after switching to english(usa).
    thanx..

  • Error in Unique Bill Number alg using SDK

    Hi friends,
    I am trying to generate unique bill no by taking InstallationDocumentNumberAlgorithmSpot i added pluged this algorithm (admin->installation options framework)
    But i am getting some error ,pls help me how to solve this.
    public class CMBillNumber_Impl extends CMBillNumber_Gen implements
              InstallationDocumentNumberAlgorithmSpot {
         private static final Logger logger = Logger
         .getLogger(CMBillNumber_Impl.class);
         private Bill bill;
         private String docNumber;
         @Override
         public void invoke() {
              validateInput();
              Premise prem = bill.getAccount().fetchMailingPremise();
              Premise_Id premise_Id = prem.getId();
              GeographicType_Id geotype = new GeographicType_Id("SECTION");
              Query query = createQuery("from PremiseGeographicLocation pgl where pgl.premise.id= :premiseid and pgl.geographicType=:pgeocd ");
              query.bindId("premiseid", premise_Id);
              logger.warn("Premise id Number is "+premise_Id);
              query.bindId("pgeocd", geotype);
              query.addResult("geographicValue", "pgl.geographicValue");
              logger.warn("Premise id Geo is "+geotype);
              Iterator it= query.iterate();
              String sectionValue = "";
              while(it.hasNext())
                   sectionValue=it.next().toString();
              // PremiseGeographicLocation PrGeo=
              // pr.getGeographicLocations()pr.getCharacteristics().
              docNumber= sectionValue+"12345";
              logger.warn("Bill Number is "+docNumber);
              // TODO Auto-generated method stub
         private void validateInput() {
              if (this.bill == null) {
                   logger.warn("this.bill is nill");
                   addError(com.splwg.base.domain.StandardMessages
                             .fieldMissing("BILL_ID"));
         @Override
         public String getDocumentNumber() {
              // TODO Auto-generated method stub
              return docNumber;
         @Override
         public DocumentTypeLookup getDocumentType() {
              // TODO Auto-generated method stub
              return null;
         @Override
         public void setBill(Bill bill) {
              this.bill = bill;
              // TODO Auto-generated method stub
         @Override
         public void setPaymentEvent(PaymentEvent arg0) {
              // TODO Auto-generated method stub
    Error
    SPL - 127748-272-1 2011-05-27 16:39:28,368 [Parent Reader:Thread-28] ERROR (support.cobol.CobolToJavaGateway) A system error occurred calling method invoke on class com.splwg.ccb.domain.common.install
    ation.GenerateDocumentNumberFromCobol
    com.splwg.shared.common.LoggedException: Error invoking method invoke
    at com.splwg.shared.common.LoggedException.wrap(LoggedException.java:198)
    at com.splwg.shared.common.LoggedException.wrap(LoggedException.java:85)
    at com.splwg.base.support.cobol.CobolToJavaGateway$MethodDispatcherCache$MethodDispatcher.dispatchToRequestedMethod(CobolToJavaGateway.java:350)
    at com.splwg.base.support.cobol.CobolToJavaGateway$MethodDispatcherCache$MethodDispatcher.access$300(CobolToJavaGateway.java:255)
    at com.splwg.base.support.cobol.CobolToJavaGateway$MethodDispatcherCache.dispatchToRequestedMethod(CobolToJavaGateway.java:250)
    at com.splwg.base.support.cobol.CobolToJavaGateway$MethodDispatcherCache.access$000(CobolToJavaGateway.java:232)
    at com.splwg.base.support.cobol.CobolToJavaGateway.callJava(CobolToJavaGateway.java:65)
    at com.splwg.base.support.cobol.host.command.CobolToJavaGatewayCommand.invoke(CobolToJavaGatewayCommand.java:33)
    at com.splwg.base.support.cobol.host.PerformCommandExecuter.invoke(PerformCommandExecuter.java:68)
    at com.splwg.base.support.cobol.host.OptimizedRemoteExecuterSkel$RequestSocketReader.readRequestExecuteAndRespond(OptimizedRemoteExecuterSkel.java:157)
    at com.splwg.base.support.cobol.host.OptimizedRemoteExecuterSkel$RequestSocketReader.run(OptimizedRemoteExecuterSkel.java:91)
    at com.splwg.base.support.cobol.host.SocketThreadPool$WrappingParentRunnable.run(SocketThreadPool.java:204)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.ClassCastException: com.splwg.cm.domain.cmbills.CMBillNumber_Impl__ cannot be cast to com.splwg.ccb.domain.common.installation.GetDocumentNumberAlgComp
    at com.splwg.ccb.domain.common.installation.CcbInstallation_Impl.generateDocumentNumber(CcbInstallation_Impl.java:99)
    at com.splwg.domain.common.installation.CcbInstallation__.CGLIB$generateDocumentNumber$99(<generated>)
    at com.splwg.domain.common.installation.CcbInstallation__$$FastClassByCGLIB$$a0d1667d.invoke(<generated>)
    at net.sf.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:167)
    at com.splwg.base.support.interception.BusinessMethodInterceptor.intercept(BusinessMethodInterceptor.java:84)
    at com.splwg.domain.common.installation.CcbInstallation__.generateDocumentNumber(<generated>)
    at com.splwg.ccb.domain.billing.bill.Bill_Impl.generateDocumentNumber(Bill_Impl.java:306)
    at com.splwg.domain.billing.bill.Bill__.CGLIB$generateDocumentNumber$89(<generated>)
    at com.splwg.domain.billing.bill.Bill__$$FastClassByCGLIB$$3088dc4d.invoke(<generated>)
    at net.sf.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:167)
    at com.splwg.base.support.interception.BusinessMethodInterceptor.intercept(BusinessMethodInterceptor.java:84)
    at com.splwg.domain.billing.bill.Bill__.generateDocumentNumber(<generated>)
    at com.splwg.ccb.domain.common.installation.GenerateDocumentNumberFromCobol.mapResultToCobol(GenerateDocumentNumberFromCobol.java:47)
    at com.splwg.ccb.domain.common.installation.GenerateDocumentNumberFromCobol.mapInputFromCobol(GenerateDocumentNumberFromCobol.java:37)
    at com.splwg.ccb.domain.common.installation.GenerateDocumentNumberFromCobol.invoke(GenerateDocumentNumberFromCobol.java:28)
    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:597)
    Pls help me to resolve this issue
    thanks
    sivaram

    Hello
    it is not printed, becuase of the printer name not specified. Enter a valid printer, and try.
    Regards,
    J.

  • Compile error |gcc|header files

    I'm trying to compile my rf driver (8139D chipset).
    I did install SWFgcc.
    But when i'm trying to make the rf module, it says that mac.h isn't available.
    So i did download it from the opensolaris project, and put it into the /usr/include/sys/ directory.
    But i got errors like:
    gem.h:170: error: syntax error before "mac_t"
    gem.h:170: warning: no semicolon at end of struct or union
    gem.h:246: error: syntax error before ':' token
    gem.h:247: error: syntax error before ':' token
    gem.h:248: error: syntax error before ':' token
    gem.h:249: error: syntax error before ':' token
    .....Other people who are running solaris on x86 didn't have any problems with it?
    Is the support really that bad, or did i something wrong?
    //edit: Sorry that i posted it in the wrong area

    gem.h:170: error: syntax error before "mac_t"
    gem.h:170: warning: no semicolon at end of struct or
    union
    gem.h:246: error: syntax error before ':' token
    gem.h:247: error: syntax error before ':' token
    gem.h:248: error: syntax error before ':' token
    gem.h:249: error: syntax error before ':' token
    .....Yeah, read it. It's telling you what's wrong!
    First, it says there is a syntax error PRIOR to the "mac_t" - that means your INCLUDE ot whatever command is formed wrong, missing, etc.
    Obviously, everything after that error is going to be an error due to the chain effect. Fix that first syntax error and anything else will reveal itself. Just double check your syntax.

  • AI 10 How to get File- Separation Setup's color plate options using SDK?

    Hi All,
    Im using Microsoft VC++6.0 & Illustrator 10 SDK.
    How can i get access to "File->Seperation setup " menu of the document using SDK.Which header file should i use?
    Actually i need to get the color plates which are on/off inside the separation setup dialog.
    Any sample code please.
    Thanks in advance
    Regards
    myRiaz

    It sounds like you need to figure out which part of the API deals with colour separation. It could be AIDocument.h or it could be AIColor.h. I'm afraid you'll just have to check the headers until you find something that looks like you want. You could also try searching the API for a piece of text that you'd expect to find associated with the values you're trying to pull -- that might point you in the right direction.

  • I get an error when starting firefox on several user profiles: the bookmarks and history are not functional something about the file being in use.

    Windows Server 2008 R2, Windows 7 workstations, the appdata folder is redirected to a network share at \\server\profiles and several users are unable to use bookmarks getting an error about the file being in use. I'm wondering if maybe my antivirus (Trend Micro) or my backups (Symantec) might be locking up the places.sqlite for these users? Though I don't understand why it would be for some users and not others. I can't be the first one and I'm not coming up with anything searching google endlessly. Anybody else run into this?

    hello, yes this is likely caused by an external program locking access to the bookmarks/history database. you could try renaming the file in question & see if it is working when it is regenerated, this will clear bookmarks and the history though, so keep a backup...
    [[Fix "The bookmarks and history system will not be functional" error message]]
    http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox

  • Rescue and Recovery "File is in use and can't be copied" errors - T61 - WXP

    Hi and thanks -
    When Rescue and recovery backs up, I frequently get  the error message, "This file is in use and can't be backed up.  Close all programs and try again" [my paraphrase]. 
    Here is everything I have tried:
    Restarting Windows and backing up "clean" - I have also attempted doing a "Clean boot" by stopping all services in "msconfig". - still got many of the error messages.
    Starting in Safe mode - Rescue and restore doesn't work at all
    Starting up in "ThinkVantage" and doing a backup from there - Rescue and restore will restore from a previous copy, but will not back up.
    This backup error has gone on ever since I bought this macine used in January 2011, and I have never cared much.  But recently the machine had a "fatal error", and all of the backups were useless.  I had to comletely restore the machine to factory settings, which means I had to re-load all of my data and programs - an arduous task.  I do not want to meet this same fate again.
    Can you help me?
    Thanks!
    Solved!
    Go to Solution.

    Have you tried running a backup with your virus scanner / internet security software turned off? Sometimes these software can "hang" on files or folders with the intent to protect them and therefore prevent them being read
    Before attempting the above please ensure your system has no Internet access
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for