SELECT items.item_number
Saturday, December 28, 2024
Query to get Internal Bank Details in R12
Query to get Vendor Bank Detail in Oracle Fusion
Tuesday, January 25, 2022
Query to get Supplier Site Level Bank Account in Oracle APPS
Friday, October 8, 2021
Query to get Operating Unit wise Internal Bank, Bank Branch and Bank Account Information in Oracle Apps
SELECT cba.bank_account_name ,
cba.bank_account_id,
cba.bank_account_name_alt,
cba.bank_account_num ,
cba.multi_currency_allowed_flag ,
cba.zero_amount_allowed ,
cba.account_classification ,
bb.bank_name ,
cba.bank_id,
bb.bank_number,
bb.bank_branch_type ,
bb.bank_branch_name ,
cba.bank_branch_id ,
bb.bank_branch_number ,
bb.eft_swift_code ,
bb.description BANK_DESCRIPTION,
cba.currency_code ,
bb.address_line1,
bb.city,
bb.county,
bb.state,
bb.zip_code,
bb.country,
ou.name ,
gcf.concatenated_segments,
cba.ap_use_allowed_flag,
cba.ar_use_allowed_flag,
cba.xtr_use_allowed_flag,
cba.pay_use_allowed_flag
FROM apps.ce_bank_accounts cba,
apps.ce_bank_acct_uses_all bau,
apps.cefv_bank_branches bb,
apps.hr_operating_units ou,
apps.gl_code_combinations_kfv gcf
WHERE cba.bank_account_id = bau.bank_account_id
AND cba.bank_branch_id = bb.bank_branch_id
AND ou.organization_id = bau.org_id
AND cba.asset_code_combination_id = gcf.code_combination_id
AND (cba.end_date IS NULL OR cba.end_date > TRUNC(SYSDATE))
Friday, July 16, 2021
API to create Bank and Bank Branch in Oracle Apps
IBY_EXT_BANKACCT_PUB.create_ext_bank:
- It is used to create the External Bank, please note that the Bank name and Home Country Name are mandatory for creating an External Bank.
- Once you create the Bank, Bank Party ID gets created and you can check it from IBY_EXT_BANKS_V view.
IBY_EXT_BANKACCT_PUB.create_ext_bank (
p_api_version => 1.0
,p_init_msg_list => FND_API.G_TRUE
,p_ext_bank_rec => x_bank_rec
,x_bank_id => x_bank_id
,x_return_status => x_return_status
,x_msg_count => x_msg_count
,x_msg_data => x_msg_data
,x_response => x_response_rec
);
IBY_EXT_BANKACCT_PUB.create_ext_bank_branch:
- It is used to create a Bank Branch, so that an account could be created in the same branch.
- Once a Bank Branch is created, a record gets inserted into IBY_EXT_B ANK_BRANCHES_V view.
IBY_EXT_BANKACCT_PUB.create_ext_bank_branch(
p_api_version => 1.0
,p_init_msg_list => FND_API.G_TRUE
,p_ext_bank_branch_rec => x_bank_branch_rec
,x_branch_id => x_branch_id
,x_return_status => x_return_status
,x_msg_count => x_msg_count
,x_msg_data => x_msg_data
,x_response => x_response_rec
);
- After the bank and branches are created, the table iby_temp_ext_bank_accounts can be populated to create the bank accounts and associate to the supplier or supplier site
- Please Note that table must be populated prior to running the supplier interface
- Below API's are used internally by oracle to create payee and associate bank acc ount to supplier or supplier site.
IBY_EXT_BANKACCT_PUB.create_ext_bank_acct (
p_api_version => 1.0
,p_init_msg_list => FND_API.G_TRUE
,p_ext_bank_acct_rec => x_bank_acct_rec
,x_acct_id => x_acct_id
,x_return_status => x_return_status
,x_msg_count => x_msg_count
,x_msg_data => x_msg_data
,x_response => x_response_rec
);
IBY_DISBURSEMENT_SETUP_PUB.Create_External_Payee (
p_api_version => 1.0
,p_init_msg_list => FND_API.G_TRUE
,p_ext_payee_tab => v_external_payee_tab_type
,x_return_status => v_return_status
,x_msg_count => v_msg_count
,x_msg_data => v_msg_data
,x_ext_payee_id_tab => x_ext_payee_id_tab
,x_ext_payee_status_tab => x_ext_payee_status_tab
);
IBY_DISBURSEMENT_SETUP_PUB.Set_Payee_Instr_Assignment (
p_api_version => 1.0
,p_init_msg_list => FND_API.G_TRUE
,p_payee => x_rec
,p_assignment_attribs => x_assign
,x_assign_id => x_assign_id
,x_return_status => x_return_status
,x_msg_count => x_msg_count
,x_msg_data => x_msg_data
,x_response => x_response_rec
);
APEX$TASK_PK
APEX$TASK_PK is a substitution string holding the primary key value of the system of records
-
The XDOLoader utility is a Java-based command line program to load template (RTF, PDF, and XSL-FO), XML, and XSD files to the XML Publis...
-
SELECT aca.check_number ,aia.invoice_id ,aia.invoice_num ,aia.invoice_amount ,distribution_line_number ,aida.accrual_p...
-
Serial_number_control_code column contains values as 1,2,5 &6 in mtl_system_items_b table. Inorder to find meaning for this values r...