Procedures Previous topic Chapter index Next topic

FX_GET_DATOS_TERCERO

 

Input Parameters

Parameter

Type

Description

TIPO

CHAR(5)

 

TERCERO

CHAR(15)

 

 

Output Parameters

Parameter

Type

Description

LISTA

CHAR(5)

 

VENDEDOR

CHAR(15)

 

 

Description

(There is no description for procedure FX_GET_DATOS_TERCERO)

 

Definition

CREATE PROCEDURE FX_GET_DATOS_TERCERO(
    TIPO CHAR(5),
    TERCERO CHAR(15))
RETURNS (
    LISTA CHAR(5),
    VENDEDOR CHAR(15))
AS
begin
  /* R.5.0.17 */
  suspend;
end

 

     Previous topic Chapter index Next topic