DBA Data[Home] [Help]

PACKAGE: APPS.OKE_FORM_DD250_EXT

Source


1 PACKAGE OKE_FORM_DD250_EXT AUTHID CURRENT_USER AS
2 /* $Header: OKEMIRXS.pls 115.0 2003/11/20 20:27:42 alaw noship $ */
3 
4 --
5 -- This function allows you to override the prefix of the shipment
6 -- number.  If no value is returned, the prefix will be defaulted
7 -- using the organization code of the shipping organization, right-
8 -- padded with "X" up to 3 characters.
9 --
10 FUNCTION Override_Shipment_Prefix
11 ( P_K_Header_ID          IN           NUMBER
12 , P_Delivery_ID          IN           NUMBER
13 , P_Inv_Org_ID           IN           NUMBER
14 , P_Ship_From_Loc_ID     IN           NUMBER
15 ) RETURN VARCHAR2;
16 
17 
18 --
19 -- This function allows you to override data in any block of
20 -- DD250.  For address information, please refer to the package
21 -- OKE_FORM_DD250 on how it is stored.
22 --
23 PROCEDURE Override_Form_Data
24 ( P_K_Header_ID          IN           NUMBER
25 , P_Delivery_ID          IN           NUMBER
26 , P_Hdr_Rec              IN           OKE_FORM_DD250.Hdr_Rec_Type
27 , P_Line_Tbl             IN           OKE_FORM_DD250.Line_Tbl_Type
28 , X_Hdr_Rec              OUT NOCOPY   OKE_FORM_DD250.Hdr_Rec_Type
29 , X_Line_Tbl             OUT NOCOPY   OKE_FORM_DD250.Line_Tbl_Type
30 );
31 
32 
33 END OKE_FORM_DD250_EXT;