DBA Data[Home] [Help]

APPS.GMS_WF_PKG dependencies on GMS_COMMITMENT_ENCUMBERED_V

Line 74: -- a join with gms_commitment_encumbered_v .

70: -- Bug 3465169 : This function returns the Burden amount calculated
71: -- for input parameters burdenable_raw_cost,expenditure_type
72: -- organization_id and ind_compiled_set_id.
73: -- This is introduced for performance fix inorder to avoid
74: -- a join with gms_commitment_encumbered_v .
75:
76: FUNCTION Get_Burden_amount (p_expenditure_type VARCHAR2,
77: p_organization_id NUMBER,
78: p_ind_compiled_set_id NUMBER,

Line 2844: -- fires gms_commitment_encumbered_v twice i.e once for fetching raw line

2840:
2841: /*
2842: -- Bug 3465169 : Modified the below sql to fix issue 'Sharable memory is greater than 1000000.'
2843: -- Fix : The below cursor was using gms_status_commitments_v which inturn
2844: -- fires gms_commitment_encumbered_v twice i.e once for fetching raw line
2845: -- and once for burden line.
2846: -- Hence modified the sql to directly use gms_status_commitments_v for fetching
2847: -- raw data and calculate burden for each raw line.
2848: -- The option of directly calling base tables was not feasible as there was

Line 2889: FROM gms_commitment_encumbered_v cmt

2885: )
2886: )
2887: )
2888: )
2889: FROM gms_commitment_encumbered_v cmt
2890: WHERE cmt.award_id = p_award_id
2891: AND (cmt.project_id,cmt.task_id) IN (SELECT gmpf.project_id,nvl(gmpf.task_id,cmt.task_id)
2892: FROM gms_summary_project_fundings gmpf
2893: WHERE gmpf.installment_id =p_installment_id )