DBA Data[Home] [Help]

APPS.PA_CALC_OVERTIME dependencies on PA_TRANSACTIONS

Line 264: Pa_Transactions.Loadei(

260: */
261: /*
262: IC Changes: Get IC attribute from parent and pass to reversed ei.
263: */
264: Pa_Transactions.Loadei(
265: X_expenditure_item_id => c.X_expenditure_item_id
266: , X_expenditure_id => c.X_expenditure_id
267: , X_expenditure_item_date => c.X_expenditure_item_date
268: , X_project_id => c.X_project_id -- Bugfix : 2201207 NULL

Line 361: Pa_Transactions.InsItems(

357: , p_tp_amt_type_code => c.x_tp_amt_type_code );
358:
359: END LOOP;
360:
361: Pa_Transactions.InsItems(
362: R_P_User_ID
363: ,0 -- last_update_login
364: ,NULL -- module
365: ,NULL -- calling_process

Line 371: Pa_Transactions.FlushEiTabs;

367: ,X_status
368: ,NULL -- gl_flag
369: );
370:
371: Pa_Transactions.FlushEiTabs;
372: END Reverse_Old_Overtime_Item;
373:
374: --
375: -- Insert Expenditure Group and Expenditure only if

Line 405: Pa_Transactions.InsertExpGroup(

401: select 'PREMIUM - ' || to_char(R_P_Request_ID)
402: into overtime_expenditure_group
403: from sys.dual;
404: -- Insert_Expenditure_Group()
405: Pa_Transactions.InsertExpGroup(
406: Overtime_Expenditure_Group
407: ,'RELEASED'
408: ,trunc(sysdate) - to_number(to_char(sysdate-Cycle_Start_Day+1,'D')) + 7
409: ,'ST'

Line 421: Pa_Transactions.InsertExp(

417: IF Exp_Created_Flag <> 'Y' THEN
418: -- Sel_Expenditure_ID()
419: select PA_EXPENDITURES_S.NEXTVAL INTO Expenditure_ID FROM sys.dual;
420:
421: Pa_Transactions.InsertExp(
422: X_expenditure_id => Expenditure_ID,
423: X_expend_status => 'APPROVED',
424: X_expend_ending => R_Expenditure_End_Date,
425: X_expend_class => 'PT',

Line 602: Pa_Transactions.Loadei(

598: /*
599: * IC related change:
600: * Recvr_Org_Id is populated for the Overtime Item
601: */
602: Pa_Transactions.Loadei(
603: X_expenditure_item_id => X_expenditure_item_id
604: , X_expenditure_id => Expenditure_ID
605: , X_expenditure_item_date => R_Expenditure_End_Date
606: , X_project_id => x_project_id --Bugfix: 2201207 NULL

Line 680: Pa_Transactions.InsItems(

676: , p_project_burdened_cost => NULL
677: , p_tp_amt_type_code => NULL /* Changed for labor costing enhancements */
678: );
679: /** end of EPP and project currency changes **/
680: Pa_Transactions.InsItems(
681: R_P_User_ID
682: ,0 -- last_update_login
683: ,NULL -- module
684: ,NULL -- calling_process

Line 689: Pa_Transactions.FlushEiTabs;

685: ,1 -- rows
686: ,X_status
687: ,NULL -- gl_flag
688: );
689: Pa_Transactions.FlushEiTabs;
690: END IF;
691: END IF;
692: END Insert_Overtime_Items;
693: