Browse all forums dedicated to the Rocket® COBOL product family.
Recently active
I submitted a request for Visual COBOL for Visual Studio Personal Edition and have not gotten an email to download it while someone I know got it right away.
Hello, I try to use this criterion to find all fields used in SQL statements, but it does not work very well for me. here are the results as you can see the field named "sql-salidaendpoint" and used in a SELECT is in the results but the other filed named "sql-num-dias" which is also used in another SELECT is not in the results Why the fileds "sql-num-dias" does not appears in the results?#CobolAnalyzer#cobolanalyzer
Hello, What is this error about? And how can I fix it?
We were getting 153 ("Subscript out of range") error during runtime with Cobol 6.0.5 we used the below compilation options. -C SSRange=2-C NoCheck-C Bound With Cobol migration to 7.0.6 we with the same set of compilation options we are not getting the 153 ("Subscript out of range") error. But when I remove the -C NoCheck I am getting the error. Is there any changes implemented in NoCHECK , SSRANGE, BOUND directives of Cobol v7.0.6? #nativecobol#MicroFocus#VisualCOBOL#COBOLENVIRONMENT#MicroFocusVisualCobol#debug
Problem: "ESPackage could not load" message shown when starting Visual COBOL for Visual Studio 2017, not all Visual COBOL components are loaded. Resolution: To avoid this message ensure your Windows Operating System region settings are set as follows: - English set as Windows display language - In Windows regional settings > formats set to "match windows display ()"
Hi, In server express we are using "cob32 -C nolist -vz EDMS_Service.o" command for compilation and .so file is getting generated also successfully executed through COBOL. Now in Visual COBOL we tried to generate .so file using below 2 commands with both the command COBOL is not able to load .so getting error code =198. cob64-C nolist -vz EDMS_Service.o --> With this file is getting generated without .so extension. cob -xve "" -o EDMS_Service.so -C xopen EDMS_Service.o --> With .so file is getting generated but while execution getting load error =198. Can please help us with command to get correct .so file ?
I've just downloaded and installed VC 8 in Visual Studio Code. When I open a cbl source file I get lots of errors because VS Code can't find my copybook paths, preprocessors, preprocessor directives etc. In other words, VS Code can't find the things I had in Project Properties and Application.config in my Visual Cobol project. I have tried to find somewhere in VS Code to enter these values, but I've failed so far ... Where can I enter these values?
Hello I am running Visual Cobol for Eclipse V 7 on a windows computer. The database is on Linux. I am trying to call a DB2 (v11.5) stored procedure that returns a result set (returning an open cursor) but I can't use the ASSOCIATE and ALLOCATE commands in my Cobol program. The compile error, SQL4911N, suggests that SQL Directive BEHAVIOR should be used but I can't seem to find this setting in my Visual Cobol for Eclipse. My attempt in Cobol prog calling a DB2 SP called CFS: 01 LOC-CFS SQL TYPE IS RESULT-SET-LOCATOR VARYING. exec sql call cfs(:cfs-in) end-exec exec sql ASSOCIATE result set LOCATOR (:LOC-CFS) WITH PROCEDURE CFS end-exec exec sql ALLOCATE C1 CURSOR FOR RESULT SET :LOC-CFS end-exec Fetch and loop until end of cursor I can call DB2 stored procedures with just input and output parameters but not handling a result set. Any suggestions? regards /Peter
We are using Microfocus Visual Devhub Cobol 6.0 with patch 20 and RHEL 8.3 and database is Microsoft SQL Server 2019. When LANG variable is set as en_US.utf8 by default, then both LOW-VALUES and HIGH-VALUES are being populated as blank, so table browse is getting failed. But when the LANG variable is changed to en_US, then LOW-VALUES and HIGH-VALUES are having the expected values of X"00" and X"FF". Please note that all other environment setting remain unchanged. Need help to understand the LOW-VALUES and HIGH-VALUES behavior change due to this LANG setting. Please let us know if any other inputs are required.#VisualCOBOL#MicroFocus#COBOL
Hi, We are working on Migration of Mainframe to Java and planning to use MicroFocus Cobol Analyzer. Application involves Telon code so wanted to check if MF Cobol Analyzer will also work on Telon code or we need to find an alternate? Thanks in Advance for your response.
Hi, I have a small problem, Visual Cobol for Eclipse 7.0 constantly compiles all sources although no changes have been made!? The compile process takes forever... Under Net Express there was the "Rebuild" and the "Rebuild All". How can I tell Visual Cobol that it should only compile the changes and not everything!?
VC8 on VS2022 in Windows 11. A program that worked in VC6 fails as when trying to debug it falls straight into the Declaratives. The project type is int/gnt.
Getting 163 Illegal character in numeric field error in the numeric field. While debugging, value for the field is initially getting displayed as junk in numeric field. When we recheck the same field, the correct value gets displayed as shown in snapshot below. Value checked for 1st time Value checked for 2nd time Need help to solve the Illegal character issue in numeric field.#COBOL#VisualCOBOL
What is the null-coalescing assignment operator in Visual Cobol? (like ??= in C#) #VisualCOBOL
Good morning.I'm planning to migrate Server Express to Visual Cobol on my AIX boxes.Just a simple question : do I need to convert my Server Express (and Server for Cobol) licenses even if I installa Visual Cobol on the same AIX boxes ? Thank you Davide
In versions prior to 10.5.0, if the AcuToWeb service was already running, changes to the fillCombo.js were immediately seen in the AcuToWeb Connection Setup page. In 10.5.0, when the fillCombo.js is modified, the change is not visible in the AcuToWeb Connection Setup page. Full article: https://portal.microfocus.com/s/article/KM000012262#SupportTips/KnowledgeDocs#SupportTips/SupportTips/KnowledgeDocs
Hi Team, While building my COBOL-DB2 application, i am encountering the error " COBCH0018S Preprocessor error on initialization". Could you please help me with your expert inputs. Thanks. Note: My COBOL-DB2 application is remote project from linux system. Thanks, Basav#connection#CobolEclipse#MicroFocus#Eclipse#COMPILER#COBOL#DB2#COBOLENVIRONMENT
Hi I'm doing migration from Server Express 5.1 to Visual Cobol 7.0 the current Server Expression 5.1 is running on Redhat Linux 6, with some SQLs compiled Oracle 12c and the new Visual Cobol 7.0 is running on Redhat Linux 8, with some SQLs compiled Oracle 19c Now I'm comparing the results between current result and new. Here's the issue. there's a data [39.5] in the Oracle, It's [NUMBER(7,3)] and In the COBOL, It's like EXEC SQL DECLARE CURAD0011 CURSOR FOR SELECT cc1 FROM TT1; --->(this cc1 is [39.5] defined by [NUMBER(7,3)]) OPEN CURAD0011 FETCH CURAD0011 INTO : VAR1 END-EXEC This [VAR1] is defined by [PIC S9(4)V9(3) COMP-3] Here's the problem: as the result of Server Express, VAR1 set from [39.5] to [40] but the result of Visual Cobol, VAR1 set from [39.5] to [39.5] ( not changed ) Could you please help me to solve this ? I don't know whether is a Compatibility Issue or I have to add any compile command while compiling SQL (I'm usin
Hi, When building our project we get: COBCH0803 = - 'procob' is not recognized as an internal or external command. We are on: Windows Server 2016 + Visual Studio 2022 + Visual Cobol 8.0 PU 1 Oracle Client 19.0.0 is installed. The system PATH variable contains: <drive>:\\ORACLE\\product32\\19.0.0\\client_1\\bin procob can be started from a command window. Any idea why this is not working from within Visual Studio? Property screen shots attached. Thanks Stefan #PROCOB#procobol
Below command is normally used to compile the module and it was working fine. command#1 -> cob -u -V -g -t -C "DIR\\"cobol.dir\\"" XSDU0036.cbl Once below command is run, module is not getting compiled in normal compilation (above command). command#2 -> cob -P -C"SETTINGS(COL) COPYLIST" XSDU0036.cbl Before compiling the module XSDU0036.cbl with command#2, module was compiling fine without any errors using command#1. Now, after compiling the module XSDU0036.cbl with command#2, facing issue even when the module is compiled with command#1. Other modules are getting compiled using command#1 without any issues. Please help us know if command#2 change any settings for that module? If yes, how to unset those settings.#COBOL#CompilerComp#VisualCOBOL
Is there a permanent link for the AcuToWeb Desktop download? Full article: https://portal.microfocus.com/s/article/KM000012264#SupportTips/SupportTips/KnowledgeDocs#SupportTips/KnowledgeDocs
Calling REG_OPEN_KEY_EX or DISPLAY_REG_OPEN_KEY_EX with the 64 bit runtime returns an error ‘invalid or missing parameter’. In 10.4.1 and lower, it never returned an error. Full article: https://portal.microfocus.com/s/article/KM000012263#SupportTips/KnowledgeDocs#SupportTips/SupportTips/KnowledgeDocs
Is it possible to enable Two-Factor Authentication (2FA) for AcuCOBOL services like AcuToWeb or AcuConnect? Full article: https://portal.microfocus.com/s/article/KM000012185#SupportTips/SupportTips/KnowledgeDocs#SupportTips/KnowledgeDocs
Background Parser reports errors but compile is successful with Cobsql Integrated Preprocessor Full article: https://portal.microfocus.com/s/article/KM000012171#SupportTips/KnowledgeDocs
I installed Micro Focus Cobol visual 2010 trial for eclipse (windows 32 bit), I added an application that I want to debug COBOL. But after my EXEC SQL .CONNECT END EXEC and after EXEC SQL INSERT END EXEC, eclipse tells me that as an error: "SQL ERROR 19703 in Connect command and SQL error 10702 in Insert Command". I want to link to a database SQL SERVER 2012 for the application to debug COBOL. I put the directives "SQL(DBMan=ODBC). When I try to put others Directives like INIT, DB or PASS I can´t . I need some others thing like install ODBC Drivers for SQL Server ? When I do that out the Eclipse ednvironment I connected withw SQL Server and I can see my Databases and my tables there. Thank you for your help.
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.