Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Could not connect to remote host : Debugger error code: -1 error message appears when trying to use remote debugging. Full article: https://portal.microfocus.com/s/article/KM000017311#SupportTips/KnowledgeDocs
I have received CJAVA-CLASSNOTFOUND VALUE -3 in a call C$JAVA. Below a piece of my code:CALL "C$JAVA" USING "br.com.univeinfo.util.Log", "grava", "(XX)V", pasta, |folder texto-log |some text RETURNING STATUS-VAL My environment variables: JAVA_LIBRARY_NAME=C:\\Program Files (x86)\\Java\\jre-1.8\\bin\\client\\jvm.dllJAVA_OPTIONS=-Djava.library.path=C:\\SISNFE4\\sisNFe4.jar Can you help me?
Hello, i'm trying to overcome the acu threads limitations (for example starting c$socket server in an acu thread blocks the parent thread) by using the Windows threading API, by doing this: 1 - start a cobol program 2 - from this program call a c++ dll of mine that does an acu_initv() 3 - call again this dll and call a cobol program with acu_cobol() from a new thread created with CreateThread from the Windows API 4 - call again this dll and call another cobol program with acu_cobol from another new thread created Everything is fine up to point 3. But with point 4 I get memory corruption. If in 4 I call the same program of 3, doing a display upon console, then it does the display only once, but the memory doesn't get corrupted. My guess is that there is some kind of shared memory between the runtimes and I can't start more than 1 cobol program at time. Is there a way of achieving my goal or not? Thank you. Luca
START fails with error 23 (record not found) if using a key with alpha field bigger than 4 bytes.If a key has a PIC X(n) item with n > 4, a START, using that key would fail with an error 23 (Record not found). Full article: https://portal.microfocus.com/s/article/KM000017078#SupportTips/KnowledgeDocs
A COBOL program fails with RTS 173 error when calling a function within a C DLL that resides in the same folder. Full article: https://portal.microfocus.com/s/article/KM000017085#SupportTips/KnowledgeDocs
A null terminated XML document gets parsed successfully with NX 5.1 using XMLPARSE(COMPAT), but with VC 8.0 it fails with exception code +000003002 as soon as it attempts to parse the first other element. Full article: https://portal.microfocus.com/s/article/KM000017083#SupportTips/KnowledgeDocs
When CALL SYSTEM fails, it returns a non-zero exit code. Where can the documentation on the exit codes for CALL SYSTEM be found? Full article: https://portal.microfocus.com/s/article/KM000017116#SupportTips/KnowledgeDocs
Users running non-interactive batch/script programs may experience a use count inaccuracy. Interactive programs do not appear to be affected. Full article: https://portal.microfocus.com/s/article/KM000017119#SupportTips/KnowledgeDocs
How to deploy a managed COBOL application over the network or on a standalone machine. Full article: https://portal.microfocus.com/s/article/KM000017203#SupportTips/KnowledgeDocs
Hey guys. This code was converted in https://cs2cobol.microfocuscloud.com/ but it is showing an error on the following line: C# DataTable objDataTable = new DataTable();objDataTable.Columns.Add("Student Id", typeof(int));objDataTable.PrimaryKey = new DataColumn[] { objDataTable.Columns["Student Id"] }; VC What would be the correct syntax? Thanks
Certain characters (e.g. the right quote x"92" character as in <MYTAG>SOMEONE’S CODE</MYTAG>) cause to fail with exception code +000798818 in Visual COBOL. Full article: https://portal.microfocus.com/s/article/KM000017084#SupportTips/KnowledgeDocs
Hello everyone. I would like to let you know that if you would like to use dynamic arrays also in AcuCobol, there exists this open-source library on GitHub lucapiccinelli/array: COBOL implementation of dynamic array data structure (github.com). We have been using it (actually an older closed-source version) since 2011 and we are very happy with it. Please, let me know your thoughts about it.#AcuCobol#dynamicarray#ARRAY#datastructures
RTS 115 encountered in program after field size defined increased to PIC X(9999999) Full article: https://portal.microfocus.com/s/article/KM000016986#SupportTips/KnowledgeDocs
Upgrade Visual COBOL from version 3.0 to 6.0 now see slow compilation with MSbuild. Full article: https://portal.microfocus.com/s/article/KM000016975#SupportTips/KnowledgeDocs
Hi My team have been using a program which allows use to convert INX (indexed or sequential data files) into ASCII, edit rows individually (w/ hex editor), and then convert the modified file back into INX. This process is not the best way of making a change as it requires all users to be off the system, because we need to ensure that the original INX file doesn't change. On my team, I am not the COBOL developer, so I may have some terminology off. We were wondering if RM/Relativity is the best way to make changes to an INX file in-place, or if there is a utility that comes with RM/COBOL that you can run from the linux command-line to edit specific INX files.#RMCOBOL#Linux#COBOL#Relativity#sequential#INX
Hello I'm looking for a solution to write the outer left join on several table of the sql in pro-cobol because the latter does not know how to manage it. Here is the error I had and the code I wrote. I work under oracle mistacke from VIVERS a 244 Pro*COBOL: Release 12.1.0.2.0 - Production on Thu May 6 13:53:12 2021 Copyright (c) 1982, 2014, Oracle and/or its affiliates. All rights reserved. Error at line 245, column 12 in file VIH400.pco 245 LEFT OUTER JOIN VICOMPTE 245 ...........1 245 PCB-S-00400, Encountered the symbol "LEFT" when expecting one of the following: , START END-EXEC CONNECT GROUP HAVING INTERSECT MINUS ORDER WHERE WITH FOR UNION &n
hey, I am trying to create a CWS which have multiple ODO in structure, While executing the service I am getting below error which I believe probably due to the initialization issue, Do I need to initialize the complete array ? 230430 12043252 25200 DINESH CASSP0014S Process termination due to RTS error.Execution error : file 'DFHPITP'error code: 114, pc=0, call=1, seg=0114 Attempt to access item beyond bounds of memory (Signal 11) 12:04:32
This article explains the various reasons an RTS 114 Attempt to access item beyond bounds of memory might be generated. Problem: A process can only address memory which it has allocated. When a process tries to address memory it has not allocated, a SIGSEGV or SIGBUS signal is generated by the operating system. The RTS catches these signals and processes any posted signal handlers for the signal. The default RTS signal handler produces the RTS error message: Execution error : file 'name' error code: 114, pc=p, call=c, seg=s 114 Attempt to access item beyond bounds of memory (Signal n) -- where n is 10 for SIGSEGV and 11 for SIGBUS. Resolution: These signals are usually generated due to either memory corruption or/and invalid pointer usage (in either COBOL or C). Memory corruption involves writing beyond the end of some allocated memory. This memory could be specifically allocated by you us
Hi, Trying to compile a simple Cobol-Db2 program (DB2 ECM - Select) to test the setup as mentioned here: Demonstration Applications (microfocus.com) Getting these error messages during build: Build started... ------ Build started: Project: Select, Configuration: Debug x86 ------C:\\Users\\Public\\Documents\\Micro Focus\\Visual COBOL\\Samples\\SQL\\db2ecm\\Select\\Select.cbl (1,1-2) : error COBDB0006 : Required DB software 'db2agapi' could not be found.SQL processing cannot continue. * Compiling "C:\\Users\\Public\\Documents\\Micro Focus\\Visual COBOL\\Samples\\SQL\\db2ecm\\Select\\Select.cbl"C:\\Users\\Public\\Documents\\Micro Focus\\Visual COBOL\\Samples\\SQL\\db2ecm\\Select\\Select.cbl (74,15-22) : error COBCH0012 : Operand sqlcode is not declaredC:\\Users\\Public\\Documents\\Micro Focus\\Visual COBOL\\Samples\\SQL\\db2ecm\\Select\\Select.cbl (77,25-33) : error COBCH0012 : Operand sqlerrmc is not declared COBOL compile: 0 item(s) succeeded or up-to-d
Using compiler version 10.5.0 HF 923229 and -Z71 to -Z103 compiler option causes runtime version 10.4.1 to fail on calls to W$BITMAP, W$MENU, etc. with error message: Invalid or Missing Parameter to W$(library name). The error does not occur when compiled with unpatched version of the 10.5.0 compiler nor compilers prior to 10.5.0. Full article: https://portal.microfocus.com/s/article/KM000016604#SupportTips/KnowledgeDocs
This article provides help in locating documentation for installing and verifying RM/COBOL runtime software on UNIX systems. Full article: https://portal.microfocus.com/s/article/KM000016605#SupportTips/KnowledgeDocs
When installing an AutoPass license, the following error is produced: [7021] autopassJ instance is null. The installed license does no show in the License Manager and any other AutoPass licenses installed have disappeared too. Full article: https://portal.microfocus.com/s/article/KM000016726#SupportTips/KnowledgeDocs
Is Visual COBOL Dev Hub 6.0 supported on Red Hat 8.4? Full article: https://portal.microfocus.com/s/article/KM000016646#SupportTips/KnowledgeDocs
launching imtkmake on an OPENAPI 3.0 json file generates a message : Cannot find type information for: 'no-name-0037-op02I' References in parameters are not well converted (See part below).There is a no-name instead of the right name referenced. - name: includePendingValidation in: query required: false description: By default.... schema: type: string enum: [ "Yes", "No"] # Pagination - $ref: '#/components/parameters/skipParam' - $ref: '#/components/parameters/takeParam' - $ref: '#/components/parameters/sortByParam' - $ref: '#/components/parameters/sortDirectionParam' - $ref: '#/components/parameters/paginationTokenParam' Full article: https://portal.microfocus.com/s/article/KM000016773#SupportTips/KnowledgeDocs
Hi Team, I am trying to convert the RM COBOL program to visual cobol 8.0 but getting the below error. Please advise. #COBOLVISUALCOBOLMIGRATION
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.