DBA Data[Home] [Help]

APPS.IGW_REPORT_PROCESSING dependencies on IGW_REPORT_BUDG_JUSTIFICATION

Line 137: from igw_report_budg_justification

133: /*
134: cursor c_report_justification is
135: select proposal_budget_category
136: , justification
137: from igw_report_budg_justification
138: where proposal_id = p_proposal_id
139: and version_id = l_version_id
140: and proposal_form_number = p_proposal_form_number;
141: */

Line 155: delete from igw_report_budg_justification

151: raise FND_API.G_EXC_ERROR;
152: end if;
153:
154: --deleting previously precessed data
155: delete from igw_report_budg_justification
156: where p_proposal_form_number = p_proposal_form_number
157: and proposal_id = p_proposal_id
158: and version_id = l_version_id;
159:

Line 202: insert into igw_report_budg_justification(

198: end if;
199: end if;
200: if l_category_budget_just /* l_proposal_budget_just */ is not null then
201: --dbms_output.put_line('insrting'||l_category_budget_just);
202: insert into igw_report_budg_justification(
203: proposal_id
204: ,version_id
205: ,proposal_budget_category
206: ,justification

Line 277: from igw_report_budg_justification

273:
274: cursor c_report_justification is
275: select proposal_budget_category
276: , justification
277: from igw_report_budg_justification
278: where proposal_id = p_proposal_id
279: --and version_id = l_version_id
280: and proposal_form_number = p_proposal_form_number;
281: