If you are trying to give the BIP Explorer test,
Below are the questions asked and answers
Explorer Name: Business Intelligence Explorer
Exam Link:
https://mylearn.oracle.com/learning-path/business-intelligence-explorer/80390
The below query provides you the details about asset journal entires of SLA with GL
SELECT GJH.description DESCRIPTION,
GJH.name Journal_NAME,
GJH.je_source,
GJH.period_name,
GCC.segment1,
GCC.segment2,
GCC.segment3,
GCC.segment4,
GCC.segment5,
GCC.segment6,
GCC.segment7,
( xal.entered_cr ) Credit,
( xal.entered_dr ) Debit,
Nvl(xal.accounted_dr, 0) - Nvl(xal.accounted_cr, 0) Net,
To_char(gjl.effective_date, 'mm/dd/yyyy') GL_DATE,
Nvl(fa.asset_number, (SELECT FAV.asset_number
FROM fa_additions_vl FAV
WHERE FAV.asset_id = XTE.source_id_int_1
AND ROWNUM = 1))
INVOICE_RECEIPT_PAYMENT_NUMBER_ref,
gl.name ledger_name,
gjh.je_category
FROM gl_je_headers GJH,
gl_je_lines GJL,
gl_code_combinations GCC,
gl_import_references GIR,
xla_ae_lines XAL,
xla_ae_headers XAH,
xla_events xe,
xla_transaction_entities xte,
gl_ledgers gl,
fa_transaction_headers FTH,
fa_additions_vl fa
WHERE 1 = 1
AND GJH.je_header_id = GJL.je_header_id
AND GJL.code_combination_id = GCC.code_combination_id
AND GJH.je_header_id = GIR.je_header_id
AND GJL.je_line_num = GIR.je_line_num
AND GIR.gl_sl_link_id = XAL.gl_sl_link_id
AND GIR.gl_sl_link_table = XAL.gl_sl_link_table
AND XAL.ae_header_id = XAH.ae_header_id
AND xah.application_id = xe.application_id
AND xah.application_id = xe.application_id
AND xah.event_id = xe.event_id
AND xe.application_id = xte.application_id
AND xe.entity_id = xte.entity_id
-- AND xte.entity_code = 'ADJUSTMENTS'
-- AND xte.source_id_int_1 = aaa.adjustment_id
AND GJL.status = 'P'
AND GJH.je_source = 'Assets'
AND XTE.source_id_int_1 = FTH.transaction_header_id(+)
AND FTH.asset_id = fa.asset_id(+)
AND gl.name = Nvl(:p_le, gl.name)
AND gjh.period_name = Nvl(:P_PERIOD, gjh.period_name)
The below query is used to get the order and line-level eff information
Below is the reference query for the Bill to & Ship to customer and address details
FOB information is stored on DOO_HEADERS_ALL in the attribute - FOB_POINT_CODE.
Any Changes to FOB information must be collected, this is described in the following notes:
The collection process is described in: FA: SCM: GOP: Collecting Fusion Reference Data (Doc ID 2102248.1)
The following note describes how to view collected data: FA: SCM: GOP: How To Review Collected Order Reference Data (Doc ID 1329868.1)
NOTE: FOB information will only be shown on the Order Entry UI where:
1. The FOB is active.
2. A start date has been provided
3. The current date is between Start and End Date.
The following SQL can be used to identify the FOB information that has been created.
Cross reference data can be reviewed by running the following SQL:
We can get the EFF information by using the below SQL
EFF- The Values returned in:
fdcb.CONTEXT_IDENTIFIER,
fdsb.SEGMENT_IDENTIFIER
are used when working with extensions and service mappings in pricing.
SELECT fdcb.context_code ,
fdcb.context_identifier ,
fdcb.enabled_flag ,
fdsb.segment_code ,
fdsb.segment_identifier ,
fdsb.column_name
FROM fusion.fnd_df_contexts_tl fdct,
fusion.fnd_df_contexts_b fdcb ,
fusion.fnd_df_segments_tl fdst,
fusion.fnd_df_segments_b fdsb
WHERE fdct.context_code = fdcb.context_code
AND fdcb.context_code = fdsb.context_code
AND fdst.context_code = fdsb.context_code
AND fdst.segment_code = fdsb.segment_code
AND fdct.application_id = fdcb.application_id
AND fdct.language = Userenv('Lang')
AND fdst.language = Userenv('Lang')
AND fdct.descriptive_flexfield_code = 'DOO_FULFILL_LINES_ADD_INFO'
ORDER BY fdcb.context_identifier,
fdsb.segment_identifier
---------------------------------------------------------------
/*Select ALL Segments (Fields defined in a Contexts)*/SELECT fdst.descriptive_flexfield_code ,
fdst.context_code ,
fdst.segment_code ,
fdst.NAME ,
fdsb.application_id ,
fdsb.descriptive_flexfield_code ,
fdsb.context_code ,
fdsb.segment_code ,
fdsb.segment_identifier ,
fdsb.column_name ,
fdsb.sequence_number ,
fdsb.enabled_flag ,
fdsb.required_flag ,
fdsb.value_set_id ,
fdsb.default_type ,
fdsb.default_value ,
fdsb.derivation_value ,
fdsb.range_type ,
fdsb.read_only_flag ,
fdsb.display_type ,
fdsb.display_width ,
fdsb.display_height ,
fdsb.checkbox_checked_value ,
fdsb.checkbox_unchecked_value
FROM fusion.fnd_df_segments_tl fdst,
fusion.fnd_df_segments_b fdsb
WHERE fdst.application_id = fdsb.application_id
AND fdst.enterprise_id = fdsb.enterprise_id
AND fdst.descriptive_flexfield_code = fdsb.descriptive_flexfield_code
AND fdst.context_code = fdsb.context_code
AND fdst.segment_code = fdsb.segment_code
AND fdst.language = 'US'
AND fdst.descriptive_flexfield_code = 'DOO_FULFILL_LINES_ADD_INFO'
ORDER BY fdst.context_code,
fdsb.sequence_number
--------------------------------------------------------------------------------
/*Select All Categories*/SELECT application_id ,
descriptive_flexfield_code ,
context_code ,
category_code
FROM fusion.fnd_ef_category_contexts
WHERE descriptive_flexfield_code = 'DOO_FULFILL_LINES_ADD_INFO'
--------------------------------------------------------------------------------
/*EFF Miscellaneous - 1*/SELECT feupb.application_id ,
feupb.descriptive_flexfield_code ,
feupb.flexfield_usage_code ,
feupb.category_code ,
feupb.page_code ,
feupt.NAME ,
feupb.sequence_number ,
feupb.mds_document_name
FROM fusion.fnd_ef_ui_pages_b feupb,
fusion.fnd_ef_ui_pages_tl feupt
WHERE feupt.descriptive_flexfield_code = 'DOO_FULFILL_LINES_ADD_INFO'
AND feupt.application_id = feupb.application_id
AND feupt.descriptive_flexfield_code = feupb.descriptive_flexfield_code
AND feupt.flexfield_usage_code = feupb.flexfield_usage_code
AND feupt.category_code = feupb.category_code
AND feupt.page_code = feupb.page_code
AND feupt.language = 'US'
ORDER BY feupb.descriptive_flexfield_code ,
feupb.flexfield_usage_code ,
feupb.category_code ,
feupb.page_code ,
feupb.sequence_number
----------------------------------------------------------------
/*EFF Miscellaneous – 2*/SELECT application_id ,
descriptive_flexfield_code ,
flexfield_usage_code ,
category_code ,
page_code ,
context_code ,
context_category_code ,
sequence_number ,
mds_document_name
FROM fusion.fnd_ef_ui_page_task_flows
WHERE descriptive_flexfield_code = 'DOO_FULFILL_LINES_ADD_INFO'
------------------------------------------------------------------