FSCM9.0: Compiling COBOL Issue

Folks,
Hello. I am working on FSCM 9.0 General Ledger module to post Journal entries. I compiled COBOL using this command:
c:\PS_HOME\setup>cblbld c: \temp\compile unicode
The above command is supposed to copy all of source code from "PS_HOME\src\cbl" to "PS_HOME\temp\compile" and then create directory "PS_HOME\cblbinu". But the following message comes up:
"Windows cannot open this file unicode.cfg. To open this file, Windows need to know what program created it. Windows can go online to look it up automatically. Or you manually select from a list of program on your computer."
I select WordPad to open unicode.cfg and there is only one line in this file that is "[Unicode] Unicode=1".
After that, an error message comes up:"Unicode COBOL compilation proceeding. Logging progress to file c:\temp\compile\CBLBLD.LOG. \temp\compile was unexpected at this time "
Do any folks understand how to fix the above problem ? Exact procedure to compile COBOL for FSCM 9.0 in Windows ?
Thanks.

Please refer to the PeopleTools installation guide for the variables required and compile instructions. Also make sure that you use double quotes (") around the directory names when compiling via a DOS box. When the directory path has spaces you need to double quote the path (ie. "c:\program files\microfocus\").

Similar Messages

  • Compiling COBOLs in PSOVM - psrun.mak error - "cob64: can not execute Id".

    Hi All,
    After installing PeopleSoft OVM in our server, I need to recompile the COBOL. I believe this is not included in the OVM. These are the steps I did.
    1. Installed Microfocus Server Express 5.0 WrapPack 4
    2. Follow the steps in Compiling Cobol in Unix mentioned is the PeopleTools_8.50_Installation_Oracle guide.
    I was able to successfully compille the COBOL files by running ./pscbl.mak. The next step is Linking COBOL Components on UNIX by running ./psrun.mak and here I got the error:
    +./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...+
    +./psrun.mak - Error(s) encountered creating PSRUN!+
    +./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages+
    +[root@pshcm91ab setup]# more /opt/oracle/psft/appbatch/tools/setup/psrun.err+
    cob64: can not execute ld
    +[root@pshcm91ab setup]#+
    I followed all the steps in setting environment variable mention in the "Compiling Cobols in Unix" in PeopleTools_8.50_Installation_Oracle.
    Is there any specific documentation of compiling COBOLs in PeopleSoft OVM?
    Can anyone help me with this?
    Thanks in advance.
    -Chris
    Edited by: user9977167 on 4/02/2010 15:52
    Edited by: user9977167 on 5/02/2010 06:18

    Hi,
    Ok, I reproduce your case :
    [psadm1@psovmab setup]$ ./psrun.mak
    ./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
    ./psrun.mak - Error(s) encountered creating PSRUN!
    ./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
    [psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
    cob64: can not execute ld
    [psadm1@psovmab setup]$It looks like a lot of rpm packages required by ld are missing on Peoplesoft OVM App/Batch server compared to the Peoplesoft OVM database server for instance.
    I added a lot of packages because of the dependendcies as below :
    From OEL5.2 Disk 1
    ==================
    -rw-r--r-- 1 root root  899210 Feb  7 10:10 kernel-headers-2.6.18-92.el5.x86_64.rpm
    -rw-r--r-- 1 root root  3073639 Feb  7 10:25 binutils-2.17.50.0.6-6.el5.x86_64.rpm
    -rw-r--r-- 1 root root  3114462 Feb  7 10:29 cpp-4.1.2-42.el5.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh kernel-headers-2.6.18-92.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:kernel-headers         ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh binutils-2.17.50.0.6-6.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:binutils               ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh cpp-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:cpp                    ########################################### [100%]
    [root@psovmab rpm]#
    From OEL5.2 Disk 2
    ==================
    -rw-r--r-- 1 root root  614718 Feb  7 10:05 glibc-headers-2.5-24.x86_64.rpm
    -rw-r--r-- 1 root root 2535024 Feb  7 10:05 glibc-devel-2.5-24.x86_64.rpm
    -rw-r--r-- 1 root root 2105297 Feb  7 10:05 glibc-devel-2.5-24.i386.rpm
    -rw-r--r-- 1 root root 5544086 Feb  7 10:20 gcc-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root 3987493 Feb  7 10:20 gcc-c++-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root    83518 Feb  7 10:31 libgomp-4.1.2-42.el5.i386.rpm
    -rw-r--r-- 1 root root    84654 Feb  7 10:41 libgomp-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root  2980440 Feb  7 10:43 libstdc++-devel-4.1.2-42.el5.x86_64.rpm
    -rw-r--r-- 1 root root    20483 Feb  7 11:46 elfutils-libelf-devel-0.125-3.el5.x86_64.rpm
    -rw-r--r-- 1 root root    58852 Feb  7 11:46 elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
    -rw-r--r-- 1 root root   102193 Feb  7 11:49 elfutils-libs-0.125-3.el5.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh glibc-headers-2.5-24.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:glibc-headers          ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:glibc-devel            ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh glibc-devel-2.5-24.i386.rpm
    Preparing...                ########################################### [100%]
       1:glibc-devel            ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.i386.rpm
    Preparing...                ########################################### [100%]
       1:libgomp                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh libgomp-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:libgomp                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh gcc-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:gcc                    ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh  libstdc++-devel-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:libstdc++-devel        ########################################### [100%]
    [root@psovmab rpm]#
    [root@psovmab rpm]# rpm -Uvh gcc-c++-4.1.2-42.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:gcc-c++                ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh elfutils-libs-0.125-3.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:elfutils-libs          ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh elfutils-libelf-devel-0.125-3.el5.x86_64.rpm elfutils-libelf-devel-static-0.125-3.el5.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:elfutils-libelf-devel-s########################################### [ 50%]
       2:elfutils-libelf-devel  ########################################### [100%]
    [root@psovmab rpm]#
    From OEL5.2 Disk 3
    ==================
    -rw-r--r-- 1 root root  4588773 Feb  7 10:22 compat-gcc-34-3.4.6-4.x86_64.rpm
    -rw-r--r-- 1 root root 13542100 Feb  7 10:23 compat-gcc-34-c++-3.4.6-4.x86_64.rpm
    -rw-r--r-- 1 root root   232846 Feb  7 12:21 compat-libstdc++-33-3.2.3-61.x86_64.rpm
    [root@psovmab rpm]# rpm -Uvh compat-gcc-34-3.4.6-4.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:compat-gcc-34          ########################################### [100%]
    [root@psovmab rpm]# rpm -Uvh compat-gcc-34-c++-3.4.6-4.x86_64.rpm
    Preparing...                ########################################### [100%]
       1:compat-gcc-34-c++      ########################################### [100%]
    [root@psovmab rpm]#The initial error is gone, but got a new one when linking :
    [psadm1@psovmab setup]$ ./psrun.mak
    ./psrun.mak - linking PSRUN for oel-5-x86_64, Version 2.6.18-92.0.0.0.1.el5xen ...
    ./psrun.mak - Error(s) encountered creating PSRUN!
    ./psrun.mak - See /opt/oracle/psft/appbatch/tools/setup/psrun.err for messages
    [psadm1@psovmab setup]$ more /opt/oracle/psft/appbatch/tools/setup/psrun.err
    ld: cannot find -lgcc
    [psadm1@psovmab setup]$I looked around for this error, found a Metalink note, but the suggestion does not apply here, the path directory metioned in $COBDIR/etc/cobopt already exists :
    [psadm1@psovmab setup]$ more $COBDIR/etc/cobopt
    -C nolist
    set GCC_LIB=/usr/lib/gcc/x86_64-redhat-linux/3.4.6
    [psadm1@psovmab setup]$ ls /usr/lib/gcc/x86_64-redhat-linux/3.4.6
    32          crtbeginS.o  crtend.o   include   libgcc_eh.a  libgcc_s_32.so  libstdc++.a   libstdc++_nonshared.a  libsupc++.a
    crtbegin.o  crtbeginT.o  crtendS.o  libgcc.a  libgcc_s.so  libgcov.a       libstdc++.so  libstdc++_shared.so    specs
    [psadm1@psovmab setup]$So far, no luck, I'll still try, but you may have more luck to install a separate server with all the packages install from the scratch and run a process scheduler from there.
    Nicolas.

  • Installing and Compiling COBOL on Windows

    Hi, I am at Installing and Compiling COBOL on Windows of PeopleTools_8.52_Installation_Oracle.pdf. After I typed in (basic syntax from pdf):
    CBLMAKE.BAT [] [ALL] [wildcard filename[ALL]] [wildcard filename | wildcard filename without extension[INT | GNT | EXE]] [EBCDIC] [LIST]
    This error appears:
    'wildcard' is not recognized as an internal or external command,
    operable program or batch file.
    Any advise? Thanks

    but now my step is after this already---> cblsrc PS_HOME C:\temp\compile
    After this step, it asks me to change directories to the compile directory which i think is (cd C:\temp\compile), and run CBLMAKE.BAT, using the basic syntax..... and I got that error... How can I do about it?

  • Compiling COBOL

    I tried compiling a sample cobol program (with embedded sql) with precompiler pro*COBOL for Oracle 8i. I used IBM visual Age for COBOl as the compiler. I was able to pre compile and compile the sample program provided with Oracle demo
    (precomp/demo/procob2) . I got the following linker error
    _SQLADR@8 could not resolve ..
    _SQLADRVC@12 """"
    _SQLBEX@0  etc...
    Could anyone help me in linking this.. I just have one library included (ORASQL8.lib)
    Thanks and Regards,
    Lal Praksh..

    Hi Todd/Ed,
    We have one more doubt on which we need your help..
    We are using AIX 6.1,Oracle 11g and all are 64 bit. MFCOBOL which we are using is 32 bit.While compling the code we are switching to 64 bit by using the command cobmode -s 64 and trying to run tuxbuild all+ command and we are encountering the errors which i have metioned in my earlier posts.
    As vac.cfg file was missing we copied older versions as vac.cfg and tried to complie the codes again.we encountered the following error.
    "BS-710b2.c", line 128.10: 1506-296 (S) #include file "mainexit.h" not found.
    cob64: error(s) in C compilation: BS-710b2.c
    so we added a script mainexit.h with cobinit() function declaration in the current directory.
    As we tried with tuxbuild all command we are facing this error.
    ld: 0711-224 WARNING: Duplicate symbol: .tpsvrdone
    ld: 0711-224 WARNING: Duplicate symbol: .tpsvrinit
    ld: 0711-224 WARNING: Duplicate symbol: TPSVRINIT
    ld: 0711-224 WARNING: Duplicate symbol: .TPSVRINIT
    ld: 0711-224 WARNING: Duplicate symbol: tpsvrinit
    ld: 0711-224 WARNING: Duplicate symbol: tpsvrdone
    ld: 0711-224 WARNING: Duplicate symbol: .memcpy
    ld: 0711-224 WARNING: Duplicate symbol: memcpy
    ld: 0711-224 WARNING: Duplicate symbol: .userlog
    ld: 0711-224 WARNING: Duplicate symbol: userlog
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    ld: 0711-317 ERROR: Undefined symbol: .SQLADR
    ld: 0711-317 ERROR: Undefined symbol: .SQLADRVC
    ld: 0711-317 ERROR: Undefined symbol: .SQLBEX
    CMDTUX_CAT:1832: ERROR: can't execute cobcc -I$TUXDIR/include -DTMMAINEXIT -o /BS-eb000.c -L${TUXDIR}/lib TPSVRINIT.o -brtl -qstaticinline -lcobatmis -ltux -lbuft -lfml -lfml32 -lengine -lpthread
    we have included this file as well /usr/local/opt/oracle/product/ostl133/precomp/lib/cobsqlintf.o still we are not able to solve this issue..
    Please help us with this.. :-(
    Thanks,
    Shama

  • Compilation CD Issues

    Good Day,
    I'm running into issues with iTunes and my compilation CDs. For example, if I have a soundtrack from a movie, it will show each song separately. I read through some forums and tried the "fix" for it. It goes as follows:
    1. Start by finding the album you want to modify. I like using iTunes' browser. You can open it by choosing View > Show Browser.
    2. If you are using the iTunes browser, albums appear in the right hand column. You can trim down your album list by selecting a genre from the left column, and an artist from the center column.
    3. Once you select the album you want to modify, choose File > Get Info, or use the Command-I keyboard shortcut.
    4. When you select more than one song to edit - in this case by selecting an entire album - iTunes checks to see if you really want to edit the settings for multiple tracks. Click the Yes button to dismiss the dialog window that says Are you sure you want to edit information for multiple items?
    5. If you are tagging an album as a compilation, choose Yes from the Compilation pop-up menu.
    6. Click OK.
    Even after doing this, it's not going to a "compilation" CD. Is anyone else having this issue? Any help would be great. Thanks!
    Regards,
    Brian
    Dell Laptop - Dual Core Windows XP Pro
      Windows XP Pro  

    This worked for me. Are you highlighting/selecting all the songs before doing this step?
    3. Once you select the album you want to modify, choose File > Get Info, or use the Command-I keyboard shortcut. <</div>

  • Error when compile COBOL file

    I install the Cumulative packages of PeopleSoft Enterprise Human Resources Management System and Campus Solutions 9.0 - Maintenance Pack 6 - Multi-Language for my HRCS system. After I deploy the COBOL files, I try to compile them. Most of the files can be compiled. However, when I compile of all 2007-2008 INAS COBOL programs using the file named inasbl07.mak, the error happed.
    ./inasbl07.mak : Convert INAS files for Unicode ....
    INAS 2007-2008 Unicode conversion routine beginning on Wed Oct 21 16:04:20 CST 2009...
    > Creating Work Area #1 folder...
    > Creating Work Area #2 folder...
    > Copying INAS 2007-2008 COBOL files to Work Area #1...
    > Renaming INAS COBOL files in Work Area #1 to PS Standard...
    > Executing COBOL Unicode Conversion on all INAS 2007-2008 COBOL files in Work Area #1...
    Conversion Summary for Source Codes in :
    Source: /opt/pt/inaswk07/
    Target: /opt/pt/inaswk2/
    Number of Copy Libraries Read: 15
    Modified: 15
    Not Modified: 0
    Number of Programs Read: 17
    Modified: 17
    Not Modified: 0
    > All INAS COBOL files converted for Unicode successfully and written
    > to Work Area #2...
    > Renaming INAS COBOL files back to original file names...
    > Copying Converted INAS 2007-2008 COBOL files to COBOL Unicode Source area...
    > All INAS 2007-2008 COBOL files successfully converted and staged.
    INAS Unicode conversion routine ending on Wed Oct 21 16:04:21 CST 2009...
    ./inasbl07.mak : INAS Unicode Conversion step done...
    .cbl not found : Error: File FMCALC07
    I find one answer from metalink, it says: When transferring the INASBL07.cbl file, make sure it is transferred as binary. If you open the file on unix and there is an ^M at the end of the file, the compile will error. However, I copy the file using the command scp from another machine that can compile successfully and I don’t open the file, the error still happed.
    My entironment :
    RedHat4
    weblogic 9.2
    oracle database 10.2.0.1
    peopletools 8.49
    hrms and campus solution 9.0

    i am very glad and appreciate for your help, but i would like to know how to get the value of a radio button.
    like in another JSP file i have :
    <input type="radio" name="type" value="Return" checked>
    Return
    <input type="radio" name="type" value="OneWay">
    One Way
    and when i try to get the value which is checked, i put
    String type = request.getParameter(type.checked);
    but this doesn't work,
    i would be very appreciate for your help. Thank you

  • Error during compiling cobol code after upgrading tuxedo 6.5 with 11

    cc: 1501-238 configuration file /etc/vac.cfg does not exist
    cob64: error(s) in C compilation: BS-c5050.c
    CMDTUX_CAT:1832: ERROR: can't execute cobcc -I$TUXDIR/include -DTMMAINEXIT -o BS-c5050.c -L${TUXDIR}/lib -brtl -qstaticinline -lcobatmis -ltux -lbuft -lfml -lfml32 -lengine -lpthread
    We are getting the above mentioned error while trying to run the tuxbuild. The make file is not getting completely executed and the above error is encountered.
    Please help us with this..
    Thanks,
    Shama
    Edited by: user13277723 on Oct 25, 2010 3:21 AM

    Hi Todd/Ed,
    We have one more doubt on which we need your help..
    We are using AIX 6.1,Oracle 11g and all are 64 bit. MFCOBOL which we are using is 32 bit.While compling the code we are switching to 64 bit by using the command cobmode -s 64 and trying to run tuxbuild all+ command and we are encountering the errors which i have metioned in my earlier posts.
    As vac.cfg file was missing we copied older versions as vac.cfg and tried to complie the codes again.we encountered the following error.
    "BS-710b2.c", line 128.10: 1506-296 (S) #include file "mainexit.h" not found.
    cob64: error(s) in C compilation: BS-710b2.c
    so we added a script mainexit.h with cobinit() function declaration in the current directory.
    As we tried with tuxbuild all command we are facing this error.
    ld: 0711-224 WARNING: Duplicate symbol: .tpsvrdone
    ld: 0711-224 WARNING: Duplicate symbol: .tpsvrinit
    ld: 0711-224 WARNING: Duplicate symbol: TPSVRINIT
    ld: 0711-224 WARNING: Duplicate symbol: .TPSVRINIT
    ld: 0711-224 WARNING: Duplicate symbol: tpsvrinit
    ld: 0711-224 WARNING: Duplicate symbol: tpsvrdone
    ld: 0711-224 WARNING: Duplicate symbol: .memcpy
    ld: 0711-224 WARNING: Duplicate symbol: memcpy
    ld: 0711-224 WARNING: Duplicate symbol: .userlog
    ld: 0711-224 WARNING: Duplicate symbol: userlog
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    ld: 0711-317 ERROR: Undefined symbol: .SQLADR
    ld: 0711-317 ERROR: Undefined symbol: .SQLADRVC
    ld: 0711-317 ERROR: Undefined symbol: .SQLBEX
    CMDTUX_CAT:1832: ERROR: can't execute cobcc -I$TUXDIR/include -DTMMAINEXIT -o /BS-eb000.c -L${TUXDIR}/lib TPSVRINIT.o -brtl -qstaticinline -lcobatmis -ltux -lbuft -lfml -lfml32 -lengine -lpthread
    we have included this file as well /usr/local/opt/oracle/product/ostl133/precomp/lib/cobsqlintf.o still we are not able to solve this issue..
    Please help us with this.. :-(
    Thanks,
    Shama

  • R12 compile fliexfield issue

    Hi;
    I have r12 (12.0.6) instance on aix,i took its clone and after clone process fliexfields(DFF_KFF) can be invalid? As i know in r11 there is opton for compile fliexfiled in adadmin utulity. In r12 how i can compiled fliexfiled (DFF-KFF) which is become corrupted or Invalid
    Thanks alot

    Hi,
    Compiles flexfield data structures in Oracle Application Object Library (FND) tables. Choose this task after you apply a patch that changes the setup of flexfields. Patches usually indicate when you should perform this step.
    Flexfields automatically compile data when you use them for the first time, so running this task is generally not required. However, compiling flexfields at a specific time can alleviate potential runtime performance issues. For example, you may choose to compile them when system usage is known to be low, rather than automatically on first use.
    Oracle Applications Maintenance Utilities
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121admu.pdf
    Regards,
    Hussein

  • Distributed compile distribution issue

    I have two computers: an iMac G4 17" 800 MHz machine that I use as my primary computer, and a PowerMac G4 450 DP. I would like to use both machines when compiling. However, when I enable distributed build in Xcode on my iMac and "share this machine for building" on my Powermac, while it distributes the build to the PowerMac just fine, it no longer does any building on the iMac. This is obviously less than ideal, as it means fully half of my processing power is sitting idle, not to mention the build being run on the less powerful (sort of) of the two machines. What am I doing wrong? how can I get Xcode to use both machines for the build? Thanks.

    Two additional things to check.
    1. Make sure both machines are using the same version of gcc.
    2. Make sure the iMac isn't sharing.
    If you're still having problems, ask your question on Apple's Xcode mailing list. Apple engineers hang out on the mailing list more than they do here. They know the most about the inner workings of distributed builds.
      Mac OS X (10.4)  

  • Compiler/jre issues

    I'm confused and need help.
    Can someone explain how I figure out what 'compiler' I'm using. I have Netbeans 3.6 installed on XP(default install), and also what JRE the output classes would be compatible with. I've been told you can specify this but I can't figure out where.
    I'm compiling simple applets but they don't run under default installs of win2K. However, other applets I have do, and I don't know how to figure out what the problem is.
    Also, is there any way to tell what version of JRE an applet if compatible with?
    If anyone can give me any other pointers for sorting this out then pls do so.
    Thanks.
    John.

    Can someone explain how I figure out what 'compiler' I'm using.Open a cmd window and type javac.
    If the list of options that display include -version, then use that option. If you have the PATH variable set correctly, it will tell you (This option exists in the current 1.5.0_04 version, but it may not in earlier versions.)
    Also, is there any way to tell what version of JRE an applet if compatible with? Correctly written applets specify which version of Java they can run with (if not with all versions). This information is contained in the html file
    that starts the applet.
    The Java Console will tell you what error occurs if an applet fails to run due to a Java problem.

  • Flex Compiler API Issue: Error: unable to open './flex-config.xml'

    1) I make a java struts(or a servlet) to build swf file
    dynamically when receiving the request from client. The struts
    source code please see the attached code. deploy the structs to the
    Tomcat
    2) then copy the <Flex_SDK>/frameworks to the
    <tomcat_home>/webapps/dozhang/WEB-INF
    3) then copy the all the libraries under the
    <Flex_SDK>/lib to the
    <tomcat_home>/webapps/dozhang/WEB-INF/lib
    4) Copy a test a.mxml to c:\
    5) Start up Tomcat , access the structs, I will get the
    Error: unable to open './flex-config.xml' in the tomcat log.
    Can anyone tell me how to specify the location of the
    flex-config.xml ?

    Ok, I solved it by myself
    I need to add the following codes when calling the Compiler
    API
    Configuration conf = application.getDefaultConfiguration();
    conf.setToken("flexlib", "path to the frameworks")
    applicaiton.setConfiguration(conf);
    Then it solved the problem

  • Weird compiling/running issues

    I am having these very odd troubles. In my applet, I sometimes need to alter the code then re-compile it to make changes right? Then I'll open up my .html file with the applet tag in it to bring up my newly compiled class file. Well, although I re-compiled, the html file still loads the old, outdated applet. BUT...get this, if I remove all of the files out of the directory with the html file, except the html file, it still loads the applet. ???WHAT??? Where does it get the source.class file I call for, I moved it to a totally different directory! This even goes one step further. If I copy and paste all of the files after I compiled to a different directory, it loads the new class file. This is good but check this out, if I move all the files back to the original directory, it loads the old applet again! And if I move the files back to the other directory, yup, you guessed it, it loads the right one again.
    This gets very annoying because in order to see how a change in my code affected my applet, I have to compile then move to a new directory to see the changes. Its like each folder has saved its own version of the class file for the html file to direct itself to.
    Can I fix this???
    Thanks!
    Brian

    Did you tried to take the page using a new instance of the explorer??... Close the old one and start a new instance of explorer.. may be the explorer is caching the applet....

  • Compiled media issues

    I have 5 language audio tracks and a single video track. Based on my Menu selection the appropriate language needs to play. When I simulate inside DVD Studio pro it works perfectly. When I compile the first audio track is being played for all language selection from menu.
    Any thoughts!

    I restarted my computer and everything works dandy now. I withdraw my question.

  • Cobol fail to compile

    HI,
    I'm applying the latest MP(cumulative) to FSCM9.0. Cobol files fail to compile, when I try to compile the cobol files which are deployed by the CA. I copied the .cbl files from cbl\base to cbl for compiling.
    Below are the errors, Need your suggestions.
    cob64: error(s) in compilation: CEPCRLUP.cbl
    cp: CEPCRLUP.gnt: No such file or directory
    cp: CEPCRLUP.int: No such file or directory
    Thanks
    Edited by: psft-tami on Feb 15, 2010 12:42 PM

    The anyone get a resolution to this issue. We are having the same problem. See message below:
    cob32: error(s) in compilation: ADPCEVAL.cbl
    cp: cannot stat `ADPCEVAL.gnt': No such file or directory
    cp: cannot stat `ADPCEVAL.int': No such file or directory
    cp: cannot stat `ADPCEVAL.lst': No such file or directory
    ./pscbl.mak : Compiling ADPCPPRC.cbl ...

  • Cobol files fail to compile

    Hi,
    I'm applying the latest MP(cumulative) to FSCM9.0. Cobol files fail to compile with the below error and also some of the cobol files compiled successfully.
    Please find the below error and helps are highly appreciated:
    cob64: error(s) in compilation: CPPIPRDN.cbl
    cp: cannot stat `CPPIPRDN.gnt': No such file or directory
    cp: cannot stat `CPPIPRDN.int': No such file or directory
    ./pscbl_mf.mak : Error : The list of file(s) failed to compile.
    CPPIPRDN fail to compile
    Thank You!
    Best Regards
    Soundappan

    See if CPPIPRDN.lst exists in $PS_HOME/src/cbl/lst and check it for error messages. (might be in a different directory depending on your platform).
    Also, make sure you follow the manual instructions for the MP to copy cobols to the correct directory on UNIX. There is typically a note that says:
    For non Windows-based servers, you must manually copy COBOL files included in this Change Package from %ps_home%\src\cbl\base into %ps_home%\src\cbl before compiling the COBOL programs.
    Regards,
    Bob
    Edited by: BobLilly on May 7, 2012 1:14 PM

Maybe you are looking for