DBA Data[Home] [Help]

APPS.INV_TRANSACTION_FLOW_PVT dependencies on FND_DFLEX

Line 1538: l_context_r fnd_dflex.context_r;

1534: ,P_CONTEXT IN VARCHAR2
1535: ,P_FLEX_NAME IN VARCHAR2
1536: )
1537: IS
1538: l_context_r fnd_dflex.context_r;
1539: l_contexts_dr fnd_dflex.contexts_dr;
1540: l_dflex_r fnd_dflex.dflex_r;
1541: l_segments_dr fnd_dflex.segments_dr;
1542: l_global_context BINARY_INTEGER;

Line 1539: l_contexts_dr fnd_dflex.contexts_dr;

1535: ,P_FLEX_NAME IN VARCHAR2
1536: )
1537: IS
1538: l_context_r fnd_dflex.context_r;
1539: l_contexts_dr fnd_dflex.contexts_dr;
1540: l_dflex_r fnd_dflex.dflex_r;
1541: l_segments_dr fnd_dflex.segments_dr;
1542: l_global_context BINARY_INTEGER;
1543: l_nsegments BINARY_INTEGER;

Line 1540: l_dflex_r fnd_dflex.dflex_r;

1536: )
1537: IS
1538: l_context_r fnd_dflex.context_r;
1539: l_contexts_dr fnd_dflex.contexts_dr;
1540: l_dflex_r fnd_dflex.dflex_r;
1541: l_segments_dr fnd_dflex.segments_dr;
1542: l_global_context BINARY_INTEGER;
1543: l_nsegments BINARY_INTEGER;
1544: l_tbl_index NUMBER :=0;

Line 1541: l_segments_dr fnd_dflex.segments_dr;

1537: IS
1538: l_context_r fnd_dflex.context_r;
1539: l_contexts_dr fnd_dflex.contexts_dr;
1540: l_dflex_r fnd_dflex.dflex_r;
1541: l_segments_dr fnd_dflex.segments_dr;
1542: l_global_context BINARY_INTEGER;
1543: l_nsegments BINARY_INTEGER;
1544: l_tbl_index NUMBER :=0;
1545: BEGIN

Line 1562: fnd_dflex.get_segments( CONTEXT => l_context_r

1558: l_context_r.context_code := P_CONTEXT;
1559:
1560: /* For a passed context, get all the enabled segments */
1561:
1562: fnd_dflex.get_segments( CONTEXT => l_context_r
1563: , segments => l_segments_dr
1564: , enabled_only => TRUE
1565: );
1566:

Line 1626: l_contexts_dr fnd_dflex.contexts_dr;

1622: l_return_status varchar2(1);
1623: l_msg_data varchar2(2000);
1624: l_msg_count number;
1625: l_ENABLED_SEGS inv_lot_sel_attr.lot_sel_attributes_tbl_type;
1626: l_contexts_dr fnd_dflex.contexts_dr;
1627: l_context VARCHAR2(1000);
1628: l_dflex_r fnd_dflex.dflex_r;
1629: l_global_context BINARY_INTEGER;
1630: l_tbl_index number :=0;

Line 1628: l_dflex_r fnd_dflex.dflex_r;

1624: l_msg_count number;
1625: l_ENABLED_SEGS inv_lot_sel_attr.lot_sel_attributes_tbl_type;
1626: l_contexts_dr fnd_dflex.contexts_dr;
1627: l_context VARCHAR2(1000);
1628: l_dflex_r fnd_dflex.dflex_r;
1629: l_global_context BINARY_INTEGER;
1630: l_tbl_index number :=0;
1631: l_loop_index NUMBER := 0;
1632: TYPE txn_hdr_dff is TABLE of VARCHAR2(1000) INDEX BY BINARY_INTEGER;

Line 1676: fnd_dflex.get_contexts(flexfield => l_dflex_r, contexts => l_contexts_dr);

1672: l_dflex_r.flexfield_name := P_FLEX_NAME;
1673:
1674: /* Get all contexts */
1675:
1676: fnd_dflex.get_contexts(flexfield => l_dflex_r, contexts => l_contexts_dr);
1677:
1678: /* From the l_contexts_dr, get the position of the global context */
1679: l_global_context := l_contexts_dr.global_context;
1680: