DBA Data[Home] [Help]

PACKAGE BODY: APPS.JAI_JOM_ST_TRIGGER_PKG

Source


1 PACKAGE BODY JAI_JOM_ST_TRIGGER_PKG AS
2 /* $Header: jai_jom_st_t.plb 120.0 2005/09/01 12:35:53 rallamse noship $ */
3 
4 /*  REM +======================================================================+
5   REM NAME          BRU_T1
6   REM
7   REM DESCRIPTION   Called from trigger JAI_JOM_ST_BRIUD_T1
8   REM
9   REM NOTES         Refers to old trigger JAI_JOM_ST_BRU_T1
10   REM
11   REM +======================================================================+
12 */
13   PROCEDURE BRU_T1 ( pr_old t_rec%type , pr_new in out t_rec%type , pv_action varchar2 , pv_return_code out nocopy varchar2 , pv_return_message out nocopy varchar2 ) IS
14   BEGIN
15     pv_return_code := jai_constants.successful ;
16     /*--------------------------------------------------------------------------------------------------------------------------
17 CHANGE HISTORY for FILENAME - ja_in_pllt_bu_trg.sql
18 S.No  Date  Author and Details
19 -------------------------------------------------
20 1.  30/12/2002  cbabu for Enhancement Porting from 11.0.3 Bug# 2427465, FileVersion# 615.1
21          Created for the enhancement. When user changes the tax name of the defaulated tax, then defaulted tax should
22         be treated as manual tax. If tax_category_id is NULL then the tax is identified as Manual tax.
23         This trigger makes defaulted tax to be converted into a manual tax if user changed the tax name attached
24         to the tax line.
25 
26 2.  08-Jun-2005   This Object is Modified to refer to New DB Entity names in place of Old
27                   DB Entity as required for CASE COMPLAINCE.  Version 116.1
28 --------------------------------------------------------------------------------------------------------------------------*/
29 
30   pr_new.tax_category_id := null;
31   END BRU_T1 ;
32 
33 END JAI_JOM_ST_TRIGGER_PKG ;