Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
Using OpenESQL (Embedded SQL) in Visual COBOL, and getting a SQLCODE -19514 error when fetching the next row from a cursor.The cursor is opened, a fetch is done successfully and then the program does an update on a different table. After the table is updated, the program performs a fetch of the next row, and the SQLCODE error -19514 is returned. Full article: https://portal.microfocus.com/s/article/KM000010760#SupportTips/KnowledgeDocs
Micro Focus Virtual Environment Support Statement – for systems such as VMWare, Citrix and Microsoft Virtual Server. Full article: https://portal.microfocus.com/s/article/KM000010632#SupportTips/KnowledgeDocs
Hi All We are getting error rts64 : Error 96 encountered in child process while upgrading system from HP to AIX and from express cobol 5.1 to Visual Cobol 7. Please suggest solution Regards
I want to build a dll and become following error: Creating library DEBUG\\adm-anb.lib and object DEBUG\\adm-anb.expadm0097.OBJ : error LNK2001: unresolved external symbol _ShellExecuteA@24DEBUG\\adm-anb.dll : fatal error LNK1120: 1 unresolved externals The program with shellexecute command will compile correctly as *.int, *.gnt or *.obj. With the same modules i can build a lbr, but not a dll. Who can help? Sorry: have forget to indicate that netexpress5.1 is installed on the new windows 11 22H2
Has anyone ever used the SEND and RECEIVE verbs to communicate to other programs inACU, if so, can you send me the source or snippet of the source and how successful were you using it. TIA Alex#receive#AcuCobol
I am using Embedded SQL in Visual COBOL, and I am getting an 19514 error message when fetching the next record. My cursor is using a temp table, and during some point in the program, the program updates a different table (that uses the same data as the temp table. Once the table is updated, the program performs the fetching of the next record, and we get that error. Any ideas on what would be causing this?
My vendor has written AcuCobol programs with GUI screens. I install the software on the main Windows 2019 server and all is good. I then publish the wrun32.exe program on my Remote Desktop collection and then download the rdp file to my local machine. When I execute the .rdp session from my machine and then log into the software, I have window refresh issues on query screens. For example, I go to customer inquiry, search for a customer, then select customer. The customer data is not displayed on the GUI screen until I take my mouse and literally move the customer inquiry screen just a bit. Basically the data won't populate the screen until I force a refresh. It seems once the refresh is done initially, it then refreshes normally upon subsequent queries until I close the window and reopen. I have talked with the vendor and they don't know why this is happening. They even updated the runtime to version 10.4.1 on the server toda
With the deprecation of Microsoft Internet Explorer, ACUCOBOL-GT 10.5.0 is the first release that removes the dependencies from this browser and its related libraries. One of these dependencies consists in the mechanism used by AcuBench to show a preview of the HTML-based Reports. The library here used is called AcuBenchPrint.dll. Full article: https://portal.microfocus.com/s/article/KM000010529#SupportTips/SupportTips/KnowledgeDocs#SupportTips/KnowledgeDocs
When trying to import a "remote" project in Eclipse on Windows, the following error occurs: 'Project serialization job' has encountered a problem. An internal error occurred during: "Project serialization job". null argument: The stack in the Eclipse .log will look like this: !MESSAGE An internal error occurred during: "Project serialization job". !STACK 0 org.eclipse.core.runtime.AssertionFailedException: null argument: at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:88) at org.eclipse.core.runtime.Assert.isNotNull(Assert.java:76) at com.microfocus.eclipse.remote.resolvers.PureRemoteProjectPathResolver.initialize(PureRemoteProjectPathResolver.java:90) at com.microfocus.eclipse.core.internal.resource.resolvers.PathResolverExtensionFactory.createResolver(PathResolverExtensionFactory.java:56) at com.microfocus.eclipse.project.model.AbstractMicroFocusProject.getPathResolver(AbstractMicroFocusProject.java:522) at com.microfocus.eclipse.project.serialisation.AbstractBuildFi
VS Code - .NET Core attach debug gives error: Error processing ‘variables' request. Unknown Error: 0x8013150 Full article: https://portal.microfocus.com/s/article/KM000010626#SupportTips/KnowledgeDocs
Here is a program using sql cursor against an MSSQL Server database. It runs but does not move any values into the ag-code nor ag-name WORKING STORAGE as specified in the FETCH. $SET SQL sourceformat(variable) $set constant driverClass "com.microsoft.sqlserver.jdbc.SQLServerDriver"$set constant AMPDBdatabaseURL "jdbc:sqlserver://xxxxxxx.gov:1433;database=XXXXXXXX;user=XXXXxxxxXXXXX;password=xxxxxxxxxx;trustServerCertificate=true;" program-id. Program1 as "twelve.Program1". environment division. data division. working-storage section. EXEC SQL INCLUDE SQLCA END-EXEC. EXEC SQL BEGIN DECLARE SECTION END-EXEC 01 ag-code pic x(02). 01 ag-name pic x(60). exec sql at ampdb declare foo cursor for select ag_code, ag_name from agency end-exec 01 connectionstring pic x(300) value spaces. EXEC SQL END DECLARE SECTION END-EXEC 01 MFSQLMESSAGETEXT PIC X(250). 01 IDX2 PIC 9(09). Procedure Division. mainline. move &qu
Hi, I have the application running on production enviorment for more than 3 years without any issue. Now we bought new computers with the same configuration that we areadly heave on our production enviormet and when some especifics programs are called they are returning the following error. Load error : file 'path\\programName.dll' Error Code: 174, PC = 0, Call= 1, Seg = 0 Error 174 - Imported file not found (path\\programName.dll) Detail, I have about 100 machines running the same application on the same path and the error does not happend on it. Just on new ones or if get formatted. For development I'm using Visual Studio 2019 Visual Cobol 5.0 pu 21. Compiling for x86. Regards#VisualStudio#call#VisualCOBOL
We have a grid where we on at numeric column would like to use BLANK ZERO. If we change it manually in the Working Storage and not build the program. And then compile the program. Then it works. But is'nt possible to make it, so we can build the program and the compile it?
Hi,We have the exact same data.bin file including binary data on an HP-UX machine and a RedHat Linux machine. HP-UX(big-endian): smppru@bayyana:/cralm/simep/prue/Arquitectura/testreadbindata> od -x data.bin | head -1 | nl1 0000000 0fcc 0000 00bc 0000 f1f6 f4f4 8030 0198 Linux RedHat(little-endian): int-cob-d-01u:/cralm/simep/prue/apps/testreadbindata>od -x data.bin | head -1 | nl1 0000000 cc0f 0000 bc00 0000 f6f1 f4f4 3080 9801 I have created a Cobol program that retrieves two of these binary data in COMP-5 variables and displays them on the screen, thus being able to verify that the binary data is interpreted differently on the HP-UX(big-endian) and Linux(little-endian) platforms.The code of the executed program is exactly the same on both the HP-UX and Linux platforms: 1 IDENTIFICATION DIVISION. 2 PROGRAM-ID. testreadbin
Due to an equipment update I have to reinstall my RM/COBOL85, I have the installation package and the .lic files. I get the activation code from the web but when loading it in the installation it gives me the following error. Please enter your activation code: fail dead city nailLicVerify: error activating licenses 0xc1000015 (The activation code has expired.)Please enter your activation code: I have not exceeded the 24-hour validity period. Is it possible that .lic files have a validity time?#error#COBOL#Installation#RMCOBOL
When creating a table, DBCONNECT will move key values to the top of the row. For example a file definition of; select MyTable assign to "MyTable" lock mode is manual organization is indexed access is dynamic record key is MyKey with duplicates file status is MyStatus. ****************************************************************** data division. file section. fd MyTable. 01 MyRecord. 03 MyField1 pic 9(5). 03 MyField2 pic x(3). 03 MyField3 pic 9(5). 03 MyField4 pic 9(5). 03 MyField5 pic 9(5). 03 MyKey pic x(3). Will generate a table that looks like this; My question is; Why does DB connect do this and if i create a table outside of DBCONNECT, do i need to ensure keys are at the top of the table? Thanks in advance for any help
When I try to install version 8.0 on windows 10, I get [6E4C:1EB4][2022-09-13T17:38:06]i052: Condition 'ignorechecks="1" or (VersionNT64=v6.1 AND ServicePackLevel>=1) OR VersionNT64=v6.3 OR (VersionNT64=v10.0 AND Windows10Build >= v14393)' evaluates to false.[6E4C:1EB4][2022-09-13T17:38:06]e000: Error 0x81f40001: Bundle condition evaluated to false: ignorechecks="1" or (VersionNT64=v6.1 AND ServicePackLevel>=1) OR VersionNT64=v6.3 OR (VersionNT64=v10.0 AND Windows10Build >= v14393)[6E4C:1EB4][2022-09-13T17:38:06]i199: Detect complete, result: 0x0 my windows 10 version is 10.0.19044.1889 Version 21H2 (November 2021 Update) The version is well above Version10Build v14393. Edition Windows 10 Pro NVersion 21H2Installed on 2022-06-15OS build 19044.1889Experience Windows Feature Experience Pack 120.2212.4180.0 How do I install the required software so that i can continue with VS2022? #V
Visual COBOL 8.0 supports the new OpenESQL SQL Error Mapping feature. This feature enables you to customize how error information is returned to the SQLCODE, SQLSTATE, SQLERR and MFSQLMESSAGETEXT fields in your application. This is done by replacing the values normally returned by both OpenESQL and your database with values you specify. This feature is useful when migrating applications between different databases, and when your application logic depends on receiving specific values for error and warning conditions. Please see the product documentation here:#NewRelease-Feature#VisualCOBOL#OpenESQL#VisualCOBOL#SupportTips/SupportTips/KnowledgeDocs#SupportTips/KnowledgeDocs#sqlcode#SQLerrormapping
Good Morning. I am trying to download Visual COBOL for Eclipse Personal Edition - Windows and I get the following error message\\nError: Server was unable to process request. ---> Error calling a server task.
Hi, I am using Net Express 3.1. Dialog System gives C++ error on my Windows 11 computer. I get this error when I want to create a copybook. The same problem occurred when migrating from Windows 7 to Windows 10. The problem was fixed with later Windows updates. Has anyone encountered this problem? Is there a solution to the problem? Thanks in advance for your help.#error#dialogsystem#netexpress3.10
Problem: Why do I need an Activation Code? Resolution: Many of our products require an activation code when installed more than 6 months after purchase. Normally, this code is retrieved automatically if the system can connect with activate.liant.com. However, all Evaluation versions require an activation code that must be obtained manually. If the system cannot retrieve a valid code automatically, the LSRV: number, serial/registration number, a list of 4 four letter words known as a "machine digest", and a message directing you to obtain the activation code manually will display. To obtain the activation code, bring up your browser and enter "activate.liant.com" (without the quotes). Enter the required information. The activation code will be sent via email. If there is a problem with retrieving the code, which is another list of 4 four letter words, please contact support@liant.com for assistance. Activation codes are good fo
Hi, VS Enterprise 2019 (v.16.11.5) VC 7.0.00248 SN I am compiling one of my .pco files and I get the following Output: ... error COBCH0641 : '.' missing following procedure name declaration, or unrecognized verb ... In the Error List I get loads of errors (strangely, other .pco files appear also) When I doubleclick on the error in the Output window, VS puts me on the last line (2576) of the program. I can see the red ‘wave’ on line 2576 but that is not helping me. I also tried to Show All Copybooks but the red ‘wave’ is still on line 2576 . When I doubleclick on the error in the Error List window, VS puts me on line 1753 for some reason. I never touched the .pco file, I only changed 1 .cpy and 2 .cob files. These .cpy and .cob files are used in other programs and they compile fine. How can I get to the exact line where the compile error occurs ? I really don’t see what is happening here. Can anybody help me ? Thanks! Kr, Stefan
My goal is to access a method in C++ or C# .dll file. I have performed the following in C++,however unable to get the expected output. 1. Created a C++ Sample.dll to display "Hello World" on the console.2. Release Sample.dll and Sample.lib into my COBOL working folder.3. Accessed the .dll and the method from AcuCobol program using CALL.4. Didn't show any exception while accessing the .dll or the method.5. However "Hello world" is not getting displayed.6. Also, how to pass a value into a function in the .dll and return the processed value. Please advise. Thanks, Aji Cherian
Does anyone have a sample COBOL program that can open COM1: serial port#COBOL
>>IMP(ACU-CBLFLAGS=-Sa) * c:\\ken\\testfiles\\axdefgentest.def - OLE object definitions for * This is a 32-bit object * Generated by axdefgen version 10.0.0 * Generated: Tuesday, August 30, 2022 * Typelib..: c:\\ken\\testfiles\\axdefgentest\\axdefgentest.tlb OBJECT @axDefGenTest * IAxDefGenTestUtilities CLASS @IAxDefGenTestUtilities CLSID 8294F9BB-F524-4578-8F60-8F191F075B9E NAME "IAxDefGenTestUtilities" *[Class: @IAxDefGenTestUtilities] SetMsgTitle METHOD, 1610743808, @SetMsgTitle, "BSTR" @val, TYPE 8 RETURNING "long", TYPE 3 *[Class: @IAxDefGenTestUtilities] GetMsgTitle METHOD, 1610743809, @GetMsgTitle, "BSTR*" @val, TYPE 16392 RETURNING "long", TYPE 3 *[Class: @IAxDefGenTestUtilities] SetMsgBody METHOD, 1610743810, @SetMsgBody, "BSTR" @val, TYPE 8 RETURNING "long", TYPE 3 *[Class: @IAxDefGenTestUtilities] GetMsgBody METHOD, 1610743811, @GetMsgBody, "BSTR*" @val, TYPE 16392 RETURNING "long&q
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.