Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: sql*forms question
As you can see this is generated by forms 3.0.
The file *.inp is like the source code. When generating this file in forms it will generate a *.frm file that you can run with runform.
This inp file will be interpreted by forms when you load it. But sometimes it's easier to edit directly in the inp file.
Regards
/Joachim
>/* Copyright (c) 1988 by the Oracle Corporation */
>
>SQL*FORMS_VERSION = 03.00.16.12.07
>TERSE = ON
>
>DEFINE FORM
>
> NAME = pay_trans
> TITLE = PAYROLL_DETAIL
> DEFAULT_MENU_APPLICATION = DEFAULT
> VALIDATION_UNIT = FIELD
>
> DEFINE PROCEDURE
>
> NAME = sub_hrs_gross
> DEFINITION = <<<
> procedure sub_hrs_gross is
> begin
> select sum(nvl(ptd_reg_hrs,0)),
> sum(nvl(ptd_otm_hrs,0)),
>
>
>Thanks for your assistance,
>Martin Meadows
Received on Tue Mar 10 1998 - 00:00:00 CST
![]() |
![]() |