Questions tagged [microfocus]

A software company that helps you develop, test, deploy, assess and modernize business-critical enterprise applications using COBOL, PL/I, REXX, JCL and CICS

128 questions
1
vote
1 answer

HP ALM (Microfocus): "SMART_REPOSITORY_LOGICALFILE" column "SRLF_PARENT_PATH"

In HP ALM Table SMART_REPOSITORY_LOGICALFILE there is a column SRLF_PARENT_PATH I need to know where the path segments come from since I'm experiencing massive issues after upgrade... Sample: .\hist\REQ\0000\0042\0123\4567\3 I only know where the…
stefan
  • 1,336
  • 3
  • 21
  • 46
1
vote
1 answer

Micro Focus ALM Synchronizer: Fetching endpoint schema error

I am trying to set up a Synchronizer link between ALM and TFS2015. The integrity check indicates that on the TFS side it fails in a "Fetching endpoint schema" step with the error : Micro Focus ALM Synchronizer - Report buildEntitySchema:…
Mohammad
  • 528
  • 4
  • 21
1
vote
2 answers

stat() system function does not work in Linux 7.6

As part of a Cobol program I'm modifying, stat function needs to be called to retrieve the details of a file. This is in Linux 7.6. But when I run the program, I get the error Load error : file 'stat' error code: 173, pc=C6, call=1, seg=0 173 …
1
vote
2 answers

Cobol.Net to C# converter

We have some systems in Micro Focus Cobol.Net which we are considering converting to C#. We have tried opening up the dll's in reflector, but then we just get C code. Anyone have a recommendation of how to do this? When I select C# in reflector I…
Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252
1
vote
1 answer

In LoadRunner what's the difference between ctrx_set_window_ex and ctrx_sync_on_window

I am working on a performance test of Citrix application using Load Runner and Citrix Protocol. I need to wait for a window to appear, and reading the documentation I see I can use one of those: ctrx_sync_on_window : Waits until a window is created…
Yution Lio
  • 224
  • 2
  • 14
1
vote
1 answer

Silk Performer Assignment of Load to agents has failed because at least one of the load agents is locked , unavailable, or has insufficient privileges

I had been running my Silk tests on 8 agents. During my last run, i closed the test in between and since then, whenever i trigger the test, i see that it is not executing on few of the agents. Also, when i created a new workload and assigned them…
abhishek pandey
  • 83
  • 1
  • 3
  • 13
1
vote
1 answer

Java null dereference - micro focus security vulnerability

I am going through a code analysis report of my project and got a lot of issues on null dereference. We always declare a object as null. Let's say String str = null; Perform business logic with conditional operators if (a.equals(b)) { s =…
Dhana
  • 91
  • 9
1
vote
0 answers

Unicode chars in filename

I am using MicroFocus Cobol on Windows OS. Please is there any possibility to have Unicode chars in filename, and use this file in Cobol. Like this: select optional intb-file assign to f-intb-file file status is w-file-status. DATA DIVISION. FILE…
Pavel Matras
  • 329
  • 1
  • 5
  • 13
1
vote
2 answers

COBOL .csv File IO into Table Not Working

I am trying to learn Cobol as I have heard of it and thought it would be fun to take a look at. I came across MicroFocus Cobol, not really sure if that is pertinent to this post though, and since I like to write in visual studio it was enough…
Michael Riley
  • 67
  • 1
  • 10
1
vote
1 answer

Error in cobol program on linux selecting from table in postgresql database

I am new in developing Cobol programs in Linux environment. My problem is that I create a table in PostgreSql and I am trying to connect to that table. The connection was sucessful and the sqlcode = 0. But, when I try to make a selection i receive…
orlando
  • 61
  • 3
1
vote
0 answers

Micro Focus Net Express 5.1 COBOL project - source code search

Please I have project in Micro Focus Net Express 5.1 IDE. As you can see in picture below in browse window I have list of source codes in project. Is there any possibility to sort this list alphabetically or search in it? When I select root (project…
Pavel Matras
  • 329
  • 1
  • 5
  • 13
1
vote
2 answers

Different results using OCCURS with different compilers

I'm attempting to output the following row using DISPLAY and am getting the correct result in Micro Focus COBOL in Visual Studio and the Tutorialspoint COBOL compiler, but something strange when running it on a z/OS Mainframe using IBM's Enterprise…
Jeremy Robson
  • 347
  • 2
  • 9
1
vote
0 answers

MicroFocus Cobol programs return ORA-01438

Anyone using Micro Focus Cobol 5.1 with Oracle 12c having any issues with the executing program returning ORA-01438 (value larger than specified precision allowed for this number column)? Cobol column definition is PIC S9(7)V9(2) and Oracle table…
Steven
  • 11
  • 2
1
vote
2 answers

Redefining an array as a string works in MFCOBOL but warns in GnuCOBOL

01 COUNTER. 03 DIGITS1 OCCURS 40 TIMES PIC 9. 03 STRING1 REDEFINES DIGITS1 pic X(40). That compiles fine in Micro Focus Visual COBOL 2.3 in Visual Studio 2015. It gives an error in GnuCOBOL, viz The original…
bugmagnet
  • 7,631
  • 8
  • 69
  • 131
1
vote
1 answer

Setting Switches in Micro Focus COBOL using C

I have C program that calls COBOL. I want to set the switches before the COBOL program is called. This is normally done using the COBSW environment variable. When I set COBSW in the C program, it is as tho it is ignored. When I set COBSW before…
Be Kind To New Users
  • 9,672
  • 13
  • 78
  • 125
1 2
3
8 9