DBA Data[Home] [Help]

PACKAGE: APPS.OKE_DSNO_PKG

Source


1 PACKAGE OKE_DSNO_PKG AUTHID CURRENT_USER AS
2 /* $Header: OKEDSNOS.pls 120.0 2005/05/25 17:30:51 appldev noship $ */
3 
4 TYPE oke_hdr_rec_type IS RECORD(
5    DELIVERY_ID                NUMBER
6    ,SOURCE_HEADER_ID           NUMBER);
7 
8 TYPE oke_pmt_rec_type IS RECORD(
9    PAYMENT_TERM_NAME             VARCHAR2(80));
10 
11 
12 TYPE oke_curr_rec_type IS RECORD(
13    CURRENCY_CODE                 VARCHAR2(80));
14 
15 TYPE oke_billto_rec_type IS RECORD(
16    BILL_TO_SITE_USE_ID          NUMBER);
17 
18 PROCEDURE GET_OKE_K_TERM_VALUE ( p_oke_hdr_rec IN oke_hdr_rec_type,  x_oke_pmt_rec OUT NOCOPY oke_pmt_rec_type );
19 
20 PROCEDURE GET_OKE_K_PARTY ( p_oke_hdr_rec IN oke_hdr_rec_type, x_billto_rec OUT NOCOPY oke_billto_rec_type );
21 
22 PROCEDURE GET_OKE_CURRENCY_CODE ( p_oke_hdr_rec IN oke_hdr_rec_type,  x_oke_curr_rec OUT NOCOPY oke_curr_rec_type );
23 
24 END;
25 
26