DBA Data[Home] [Help]

PACKAGE BODY: APPS.IBY_EC_OP_FILE_NAME_EXT_PUB

Source


1 PACKAGE BODY IBY_EC_OP_FILE_NAME_EXT_PUB  AS
2 /* $Header: ibyecfneb.pls 120.0.12010000.1 2010/02/22 14:51:10 appldev noship $ */
3 
4 
5   --
6   -- This API is called processing payments through ECE gateway for
7   -- generating fileID.
8   -- Note: File name would be calculated by concatenating 'PYO' to
9   -- the file ID
10   -- If this function returns null, then fileId would be generated
11   -- with sequence ece_output_runs_s
12   --
13   Function get_File_Id(p_payment_instruction_id IN number) return PLS_INTEGER
14   IS
15   l_file_id PLS_INTEGER :=null;
16   BEGIN
17    return l_file_id;
18   END  get_File_Id;
19 
20 
21 END IBY_EC_OP_FILE_NAME_EXT_PUB;
22 
23