DBA Data[Home] [Help]

APPS.OE_ORDER_SCH_UTIL dependencies on OE_GRP_SCH_UTIL

Line 1047: OE_GRP_SCH_UTIL.Process_set_of_lines

1043: l_line_tbl(I).schedule_action_code :=
1044: OE_ORDER_SCH_UTIL.OESCH_ACT_UNDEMAND;
1045: END LOOP;
1046:
1047: OE_GRP_SCH_UTIL.Process_set_of_lines
1048: ( p_old_line_tbl => l_old_line_tbl,
1049: p_write_to_db => FND_API.G_FALSE,
1050: x_atp_tbl => l_atp_tbl,
1051: p_x_line_tbl => l_line_tbl,

Line 1068: OE_GRP_SCH_UTIL.Process_set_of_lines

1064: l_line_tbl(I).schedule_action_code :=
1065: OE_ORDER_SCH_UTIL.OESCH_ACT_SCHEDULE;
1066: END LOOP;
1067:
1068: OE_GRP_SCH_UTIL.Process_set_of_lines
1069: ( p_old_line_tbl => l_old_line_tbl,
1070: p_write_to_db => FND_API.G_FALSE,
1071: x_atp_tbl => l_atp_tbl,
1072: p_x_line_tbl => l_line_tbl,

Line 1195: l_group_req_rec OE_GRP_SCH_UTIL.Sch_Group_Rec_Type;

1191: l_old_line_rec OE_ORDER_PUB.line_rec_type;
1192: l_out_line_rec OE_ORDER_PUB.line_rec_type;
1193: l_out_atp_tbl OE_ATP.atp_tbl_type;
1194: l_request_rec request_rec_type;
1195: l_group_req_rec OE_GRP_SCH_UTIL.Sch_Group_Rec_Type;
1196: l_out_request_rec request_rec_type;
1197: l_need_sch BOOLEAN;
1198: l_entity_type VARCHAR2(30);
1199: l_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;

Line 1599: IF oe_grp_sch_util.Compare_Set_Attr

1595: GOTO end_schedule_line;
1596:
1597: ELSE
1598:
1599: IF oe_grp_sch_util.Compare_Set_Attr
1600: (p_set_ship_from_org_id => l_set_rec.ship_from_org_id ,
1601: p_line_ship_from_org_id => l_line_rec.ship_from_org_id,
1602: p_set_ship_to_org_id => l_set_rec.ship_to_org_id ,
1603: p_line_ship_to_org_id => l_line_rec.ship_to_org_id ,

Line 1763: OE_GRP_SCH_UTIL.Group_Schedule

1759: IF l_debug_level > 0 THEN
1760: oe_debug_pub.add( 'CALLING GROUP_SCHEDULE' , 1 ) ;
1761: END IF;
1762:
1763: OE_GRP_SCH_UTIL.Group_Schedule
1764: ( p_group_req_rec => l_group_req_rec
1765: ,x_atp_tbl => l_out_atp_tbl
1766: ,x_return_status => l_return_status);
1767:

Line 7100: , x_group_req_rec OUT NOCOPY /* file.sql.39 change */ OE_GRP_SCH_UTIL.Sch_Group_Rec_Type

7096: -------------------------------------------------------------------------- */
7097: Procedure Create_Group_Request
7098: ( p_line_rec IN OE_ORDER_PUB.line_rec_type
7099: , p_old_line_rec IN OE_ORDER_PUB.line_rec_type
7100: , x_group_req_rec OUT NOCOPY /* file.sql.39 change */ OE_GRP_SCH_UTIL.Sch_Group_Rec_Type
7101: , x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
7102: )
7103: IS
7104: l_group_req_rec OE_GRP_SCH_UTIL.Sch_Group_Rec_Type; -- INVCONV PAL - not sure if need to change this - purpose of this ?

Line 7104: l_group_req_rec OE_GRP_SCH_UTIL.Sch_Group_Rec_Type; -- INVCONV PAL - not sure if need to change this - purpose of this ?

7100: , x_group_req_rec OUT NOCOPY /* file.sql.39 change */ OE_GRP_SCH_UTIL.Sch_Group_Rec_Type
7101: , x_return_status OUT NOCOPY /* file.sql.39 change */ VARCHAR2
7102: )
7103: IS
7104: l_group_req_rec OE_GRP_SCH_UTIL.Sch_Group_Rec_Type; -- INVCONV PAL - not sure if need to change this - purpose of this ?
7105: --
7106: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
7107: --
7108: BEGIN