DBA Data[Home] [Help]

APPS.PON_EMD_AR_INTEGRATION_GRP dependencies on AR_RECEIPT_API_PUB

Line 488: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;

484: l_doc_sequence_value NUMBER DEFAULT NULL;
485: l_ussgl_transaction_code ar_cash_receipts.ussgl_transaction_code%TYPE DEFAULT NULL;
486: l_anticipated_clearing_date ar_cash_receipts.ussgl_transaction_code%TYPE DEFAULT NULL;
487: l_called_from VARCHAR2(20) DEFAULT NULL;
488: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
489: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
490: l_comments ar_cash_receipts.comments%TYPE DEFAULT NULL;
491: l_issuer_name ar_cash_receipts.issuer_name%TYPE DEFAULT NULL;
492: l_issue_date ar_cash_receipts.issue_date%TYPE DEFAULT NULL;

Line 489: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;

485: l_ussgl_transaction_code ar_cash_receipts.ussgl_transaction_code%TYPE DEFAULT NULL;
486: l_anticipated_clearing_date ar_cash_receipts.ussgl_transaction_code%TYPE DEFAULT NULL;
487: l_called_from VARCHAR2(20) DEFAULT NULL;
488: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
489: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
490: l_comments ar_cash_receipts.comments%TYPE DEFAULT NULL;
491: l_issuer_name ar_cash_receipts.issuer_name%TYPE DEFAULT NULL;
492: l_issue_date ar_cash_receipts.issue_date%TYPE DEFAULT NULL;
493: l_issuer_bank_branch_id ar_cash_receipts.issuer_bank_branch_id%TYPE DEFAULT NULL;

Line 511: app_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;

507: l_line_number ra_customer_trx_lines.line_number%TYPE DEFAULT NULL;
508: l_show_closed_invoices VARCHAR2(1) DEFAULT 'N';
509: l_move_deferred_tax VARCHAR2(1) DEFAULT 'Y';
510: l_link_to_trx_hist_id ar_receivable_applications.link_to_trx_hist_id%TYPE DEFAULT NULL;
511: app_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
512: app_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
513: app_comments ar_receivable_applications.comments%TYPE DEFAULT NULL;
514: l_call_payment_processor VARCHAR2(1) DEFAULT FND_API.G_FALSE;
515: l_org_id NUMBER DEFAULT NULL;

Line 512: app_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;

508: l_show_closed_invoices VARCHAR2(1) DEFAULT 'N';
509: l_move_deferred_tax VARCHAR2(1) DEFAULT 'Y';
510: l_link_to_trx_hist_id ar_receivable_applications.link_to_trx_hist_id%TYPE DEFAULT NULL;
511: app_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
512: app_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
513: app_comments ar_receivable_applications.comments%TYPE DEFAULT NULL;
514: l_call_payment_processor VARCHAR2(1) DEFAULT FND_API.G_FALSE;
515: l_org_id NUMBER DEFAULT NULL;
516:

Line 535: AR_RECEIPT_API_PUB.Create_and_apply(

531: END IF;
532: x_return_status := FND_API.G_RET_STS_SUCCESS;
533: --Call to AR create_cash API
534: l_progress := 100;
535: AR_RECEIPT_API_PUB.Create_and_apply(
536: 1, -- p_api_version
537: FND_API.G_FALSE, -- p_init_msg_list
538: FND_API.G_FALSE, -- p_commit
539: FND_API.G_VALID_LEVEL_FULL, -- p_validation_level

Line 709: AR_RECEIPT_API_PUB.Unapply(

705:
706: x_return_status := fnd_api.g_ret_sts_success;
707:
708: --Call to AR Unapply API
709: AR_RECEIPT_API_PUB.Unapply(
710: 1, -- p_api_version
711: p_init_msg_list, -- p_init_msg_list
712: p_commit, -- p_commit
713: FND_API.G_VALID_LEVEL_FULL, -- p_validation_level

Line 729: print_log('After executing AR procedure AR_RECEIPT_API_PUB.Unapply');

725: l_called_from,
726: l_cancel_claim_flag,
727: l_org_id);
728:
729: print_log('After executing AR procedure AR_RECEIPT_API_PUB.Unapply');
730: print_log('x_return_status: '||x_return_status);
731:
732: IF (x_return_status = fnd_api.g_ret_sts_error) THEN
733: FND_MESSAGE.SET_NAME('PON','UNAPPLY_EMD_RECEIPT_FAILED');

Line 794: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;

790: l_receivables_trx_id ar_receivable_applications.receivables_trx_id%TYPE; --this has no default
791: l_apply_date ar_receivable_applications.apply_date%TYPE DEFAULT NULL;
792: l_apply_gl_date ar_receivable_applications.gl_date%TYPE DEFAULT NULL;
793: l_ussgl_transaction_code ar_receivable_applications.ussgl_transaction_code%TYPE DEFAULT NULL;
794: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
795: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
796: l_comments ar_receivable_applications.comments%TYPE DEFAULT NULL;
797: l_application_ref_type ar_receivable_applications.application_ref_type%TYPE;
798: l_application_ref_id ar_receivable_applications.application_ref_id%TYPE;

Line 795: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;

791: l_apply_date ar_receivable_applications.apply_date%TYPE DEFAULT NULL;
792: l_apply_gl_date ar_receivable_applications.gl_date%TYPE DEFAULT NULL;
793: l_ussgl_transaction_code ar_receivable_applications.ussgl_transaction_code%TYPE DEFAULT NULL;
794: l_attribute_rec AR_RECEIPT_API_PUB.attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.attribute_rec_const;
795: l_global_attribute_rec AR_RECEIPT_API_PUB.global_attribute_rec_type DEFAULT AR_RECEIPT_API_PUB.global_attribute_rec_const;
796: l_comments ar_receivable_applications.comments%TYPE DEFAULT NULL;
797: l_application_ref_type ar_receivable_applications.application_ref_type%TYPE;
798: l_application_ref_id ar_receivable_applications.application_ref_id%TYPE;
799: l_application_ref_num ar_receivable_applications.application_ref_num%TYPE;

Line 910: AR_RECEIPT_API_PUB.Activity_application(

906: print_log('l_applied_payment_schedule_id: '||l_applied_payment_schedule_id);
907: print_log('l_receivables_trx_id: '||l_receivables_trx_id);
908:
909: --Call to AR Activity_application API
910: AR_RECEIPT_API_PUB.Activity_application(
911: 1, -- p_api_version
912: p_init_msg_list, -- p_init_msg_list
913: p_commit, -- p_commit
914: FND_API.G_VALID_LEVEL_FULL, -- p_validation_level

Line 958: print_log('After executing AR procedure AR_RECEIPT_API_PUB.Activity_application');

954: l_party_id,
955: l_party_site_id,
956: l_bank_account_id);
957:
958: print_log('After executing AR procedure AR_RECEIPT_API_PUB.Activity_application');
959: print_log('l_application_ref_id: '||l_application_ref_id);
960: print_log('x_return_status: '||x_return_status);
961:
962: IF(l_application_ref_id IS null) THEN