DBA Data[Home] [Help]

PACKAGE: APPS.PAY_IN_ELE_EXTRA_INFO_LEG_HOOK

Source


1 PACKAGE  pay_in_ele_extra_info_leg_hook AS
2 /* $Header: pyinlhei.pkh 120.0 2005/05/29 05:51 appldev noship $ */
3 --
4 --------------------------------------------------------------------------
5 --                                                                      --
6 -- Name           : CHECK_TDS_FIELDS                                    --
7 -- Type           : PROCEDURE                                           --
8 -- Access         : Public                                              --
9 -- Description    : Checks that if the TDS type is not Fixed Percentage --
10 --                  then TDS Percentage field must be null and if the   --
11 --                  TDS type is Fixed Percentage, then TDS Percentage   --
12 --                  field must be populated                             --
13 --                                                                      --
14 --                                                                      --
15 -- Parameters     :                                                     --
16 --             IN : p_eei_information1          VARCHAR2                --
17 --                  p_eei_information2          VARCHAR2                --
18 --            OUT : N/A                                                 --
19 --         RETURN : N/A                                                 --
20 --                                                                      --
21 -- Change History :                                                     --
22 --------------------------------------------------------------------------
23 -- Rev#  Date       Userid    Description                               --
24 --------------------------------------------------------------------------
25 -- 1.0   10-Sep-04  abhjain	Created this procedure                  --
26 --------------------------------------------------------------------------
27 
28 PROCEDURE check_tds_fields(p_eei_information_category IN VARCHAR2
29          		  ,p_eei_information1         IN VARCHAR2
30 			  ,p_eei_information2         IN VARCHAR2
31         		  ) ;
32 
33 
34 END  pay_in_ele_extra_info_leg_hook;