DBA Data[Home] [Help]

APPS.ARP_PROCESS_LINE dependencies on ARP_DATES

Line 552: | arp_dates.val_gl_periods_for_rules. |

548: | |
549: | MODIFICATION HISTORY |
550: | 24-JUL-95 Charlie Tomberg Created |
551: | 31-JAN-96 Martin Johnson Added call to |
552: | arp_dates.val_gl_periods_for_rules. |
553: | Changed l_line_rec.set_of_books_id to |
554: | arp_global.set_of_books_id. |
555: | 06-FEB-96 Martin Johnson Don't call val_gl_periods_for_rules |
556: | for CM's because CM module will |

Line 580: arp_dates.val_gl_periods_for_rules(

576: +----------------------------------------------------------------------*/
577:
578: IF ( p_line_rec.previous_customer_trx_id IS NULL )
579: THEN
580: arp_dates.val_gl_periods_for_rules(
581: null, -- p_request_id
582: p_line_rec.accounting_rule_id,
583: p_line_rec.accounting_rule_duration,
584: p_line_rec.rule_start_date,

Line 681: arp_dates.val_gl_periods_for_rules(

677: +----------------------------------------------------------------------*/
678:
679: IF ( p_line_rec.previous_customer_trx_id IS NULL )
680: THEN
681: arp_dates.val_gl_periods_for_rules(
682: null, -- p_request_id
683: l_line_rec.accounting_rule_id,
684: l_line_rec.accounting_rule_duration,
685: l_line_rec.rule_start_date,

Line 813: | 08-FEB-96 Martin Johnson Call arp_dates.derive_gl_trx_dates_ |

809: | p_rule_start_date |
810: | and p_accounting_rule_duration |
811: | 06-FEB-96 Martin Johnson Don't call tax engine if trx is a |
812: | debit memo reversal |
813: | 08-FEB-96 Martin Johnson Call arp_dates.derive_gl_trx_dates_ |
814: | from_rules() and added IN OUT NOCOPY |
815: | parameters p_gl_date and p_trx_date. |
816: | 15-MAY-96 Martin Johnson BugNo:356814. Added OUT NOCOPY param |
817: | p_status. Call calculate_tax_f_ctl_ |

Line 971: arp_dates.derive_gl_trx_dates_from_rules(

967: ( p_line_rec.accounting_rule_id IS NOT NULL )
968: )
969: THEN
970:
971: arp_dates.derive_gl_trx_dates_from_rules(
972: p_line_rec.customer_trx_id,
973: p_gl_date,
974: p_trx_date,
975: l_recalculate_tax_flag );

Line 1527: | arp_dates.derive_gl_trx_dates_from_rules() rederives and |

1523:
1524: /*--------------------------------------------------------------------+
1525: | If the rule schedule has changed, the trx_date and gl_date |
1526: | may now be invalid. This may cause the tax to be invalid as well. |
1527: | arp_dates.derive_gl_trx_dates_from_rules() rederives and |
1528: | resets the gl_date and trx date. |
1529: +--------------------------------------------------------------------*/
1530:
1531: IF ( l_derive_gldate_flag = TRUE )

Line 1533: arp_dates.derive_gl_trx_dates_from_rules (

1529: +--------------------------------------------------------------------*/
1530:
1531: IF ( l_derive_gldate_flag = TRUE )
1532: THEN
1533: arp_dates.derive_gl_trx_dates_from_rules (
1534: l_db_line_rec.customer_trx_id,
1535: p_gl_date,
1536: p_trx_date,
1537: l_recalculate_tax_flag );

Line 2002: | arp_dates.derive_gl_trx_dates_from_rules() rederives and resets |

1998: /*--------------------------------------------------------------------+
1999: | If the line had rules, the trx_date and gl_date may have to |
2000: | change if they were originally set to their current values because |
2001: | of the rule schedule of the line that has just been deleted. |
2002: | arp_dates.derive_gl_trx_dates_from_rules() rederives and resets |
2003: | the trx_date and gl_date. |
2004: | |
2005: | If the line that was deleted was the last line on a transaction |
2006: | that has header freight and rules, the transaction is no longer |

Line 2017: arp_dates.derive_gl_trx_dates_from_rules(

2013: THEN
2014:
2015: IF ( p_line_rec.previous_customer_trx_line_id IS NULL )
2016: THEN
2017: arp_dates.derive_gl_trx_dates_from_rules(
2018: p_line_rec.customer_trx_id,
2019: p_gl_date,
2020: p_trx_date,
2021: l_recalculate_tax_flag);