0
votes
1answer
18 views

After updating the record set the Screen must update

In informix 4gl(genero 4JS) how can I refresh the screen after updating the record set in the database? Right now I can only update the record but the screen is not updating. I think I am missing ...
0
votes
2answers
46 views

Function definition not found in 4gl file

I am working on 4gl language but a new bie. In a file custom.4gl a function cleanup() is called, but I didn't find the function definition. I am trying to find that. I got a file named 'tags' with ...
0
votes
0answers
34 views

Need a simple program to copy file from server

Hi I am trying to write a program to get a file from the server "tmp folder" and put it in my local temp folder my code is as follows could some one help me. Thank you. define fn char(200), ...
1
vote
2answers
102 views

Informix 4GL after field

Hi I want to add an after field logic, I have 4 check boxes (check1, check2, check3 and check4). When I put a check mark on either check2, check3 and check4, I want to put check mark on check1 ...
3
votes
2answers
202 views

Add a new language to Visual Studio 2010 with syntax highlighting and intellisense

I am trying to add support for a different language in Visual Studio 2010. I was hoping to add custom syntax highlighting, and have some sort of basic intellisense work with it. The language I am ...
1
vote
3answers
56 views

How can I order a selection by the results of a function (sum)?

I have a table with a bunch of columns. Three columns are integers, and are labeled consumption, consumption2, and consumption3. I would like to select each full row of the table, but order the ...
1
vote
3answers
444 views

Can't run Informix 4GL Interactive Debugger

I am reading through Informix 4GL By Example. Ex4 is giving a segmentation fault so I am attempting to use the debugger to find out where the program is failing, but the debugger is not working. From ...
2
votes
0answers
74 views

Equivalent of 4gl “RECORD LIKE” statement in Java

In 4gl, the statement DEFINE IO_AFPOPF1 RECORD LIKE AFPOPF1.* means all content of table AFPOPF1 assigned to IO_AFPOPF1 variable. If AFPOPF1 table changes, IO_AFPOPF1 also changes automatically. Can ...
3
votes
2answers
435 views

Convert SQL query “SELECT UNIQUE 1…” in Informix-4GL program to Java code

I want to convert Informix-4GL program to Java, and I have some problems. I have a Java code and connect to Informix with success, but I'm having some problems. How can I use "SELECT UNIQUE 1..." in ...
1
vote
1answer
198 views

temp table creation in informix 4GL SE

How should I create and populate data in a temp table? then how can I print data retrieved on temp table? I saw example like this; but no further help. SO I need some help. SELECT DISTINCT * ...
1
vote
2answers
136 views

FOREACH I4GL SE

I am trying to get the customers last name, first name - dob, I am getting all but everything printing the same place, any idea? declare n_curs cursor for select unique ...
1
vote
0answers
175 views

Internal error and statement error- I4GL

When I run the program (Informix 4GL SE) I am getting the following error. IS there anybody know the solution? FORMS statement error number -6327. Internal error in the run time library file ...
1
vote
1answer
64 views

I4GL Loop query

I am trying to solve this issue for last couple of days, but no idea how to do it. What I am trying is to get 3 records from a column table. If any Informix 4GL gurus are out there I need some help ...
1
vote
2answers
354 views

Informix 4GL, how to print?

I have a column (chgkey) with 17 rows of record. How can I print first 3 records in the same line (like, raw1, raw2, raw3). Now I can print the raw1 without any problem. Any help would be appreciated. ...
1
vote
1answer
127 views

What does this SQL statement do in this Informix 4GL code?

I am missing something. Please can someone tell me how this works? let rpt.chgkey = null select cuschage.chgkey from cuschage where cuschage.cuschnum in (select shtwrd_no from crbookid where ...
1
vote
1answer
126 views

am pm display in Informix 4GL

How can I display am or PM with a time display in informix 4GL. In my database the field called crttime_a_p and stores for am "A" and for pm "P". How can I display this in my application as "AM" or ...
1
vote
2answers
97 views

form-only lookup

How can I create a form-only look up in Informix 4GL? I am using form painter plus the informix SE. Any help would be appreciated. I tried to create the form but the field is empty while selecting the ...
1
vote
1answer
118 views

Enforcing a minimum character length on a form field in I4GL

How can I add character length in a field on Informix 4GL. I have a description column, and I want to enforce a minimum length 10 characters in this field; if the entered string is less than 10 ...
1
vote
1answer
234 views

Informix 4GL and triggers

I want a simple SQL (trigger) for duplicate checking. My table name is test1 with 2 columns, code and sname. Before inserting a new record, check if the record already exists: if it does, generate an ...
2
votes
1answer
252 views

How do I reference a TEXT type in Informix 4gl?

I have the following code in a 4gl module: DEFINE f_drec RECORD LIKE verhistd.* DEFINE f_input RECORD long_desc LIKE verhistd.long_desc END RECORD Let f_input.long_desc = f_drec.long_desc ...
3
votes
4answers
189 views

What is 12345 >> 2 Really Doing arithmetically?

My question is in the following example what does val = val >> 2; do? That is I believe it is division by 4. int val = 12345678; val = val >> 2; Here is the background to this question. ...
1
vote
2answers
145 views

Append results of a query in a single line

I am unloading the results of a query to a file. I need the result records to be displayed in a single line. For example, unload to file.unl select col from table where col = "test"; The resulting ...
2
votes
2answers
108 views

Turning off “Wy-60” in 4GL Informix?

We have an Informix 4GL forms interface to our database, accessed using a terminal emulator running in WY-60 or "Wyse-60" terminal emulation mode. From what I'm reading, where I would previously ...
1
vote
1answer
438 views

String allignment with spaces in 4GL

I need to right align a string in 4gl with specified no.of spaces? Can somebody tell me how to do it?
1
vote
1answer
45 views

file movement from one directory to another

i have a variable that holds the file name and the location of that file, i need to move that file from one location to another.How can it be done using informix 4gl
1
vote
1answer
107 views

list of capability codes for Informix 4GL termcap

Is there a reference document that lists all the capability codes actually used by 4GL (and, ideally, all those appearing in the termcap supplied with 4GL RDS)? for example: gs - start graphics ...
1
vote
1answer
101 views

Informix 4GL ignores window border when UTF8 set

Can anyone explain this? Is there a workaraound? Informix 4GL RDS 7.50.UC3 on RHEL/CentOS $ fglpc test $ fglgo test 1 ++++X+++++++++X+++++++++X+++++++++X+++++++++X 2 ...
1
vote
1answer
377 views

Type Conversion in Informix 4GL

I want to convert a variable of type VARCHAR to INTEGER and vice versa (i.e. from INTEGER type to VARCHAR) in Informix 4GL.
1
vote
1answer
670 views

Formatting not working in 4gl [ USING clause ]

I was trying to format the output variable as follows: Scenario 1: LET msg = "Roopesh Majeti here " Empno Using "&&&&&" Call Logmsg(msg) In this scenario, the empno ...
2
votes
3answers
2k views

Where to go after Informix 4GL? [closed]

We have a large homegrown ERP system written in Informix 4GL. Currently we are running on old Sun hardware, Solaris 8, and a ten year old version of 4GL and Informix. We need to move on, and one ...
1
vote
1answer
426 views

Pretty Print for (Informix-)4gl code

i'm searching for a pretty print program (script, code, whatever) for Informix-4GL sources. Do you know any ? Than you, Peter.