Procedures Previous topic Chapter index Next topic

PM_REALIZADO

 

Input Parameters

Parameter

Type

Description

PROYECTO

INTEGER

 

LABOR

INTEGER

 

 

Output Parameters

Parameter

Type

Description

REALIZADO

INTEGER

 

FECHA

TIMESTAMP

 

 

Description

(There is no description for procedure PM_REALIZADO)

 

Definition

CREATE PROCEDURE PM_REALIZADO(
    PROYECTO INTEGER,
    LABOR INTEGER)
RETURNS (
    REALIZADO INTEGER,
    FECHA TIMESTAMP)
AS
begin
  /* R.5.0.17 */
  suspend;
end

 

     Previous topic Chapter index Next topic