DBA Data[Home] [Help]

APPS.INVKBCGN dependencies on FND_API

Line 1030: l_return_status varchar2(1) := FND_API.G_RET_STS_SUCCESS;

1026: X_REPORT_ID IN OUT NOCOPY NUMBER ) IS
1027:
1028: l_kanban_card_ids INV_Kanban_PVT.kanban_card_id_tbl_type;
1029: l_pull_seq_rec INV_Kanban_PVT.pull_sequence_rec_type;
1030: l_return_status varchar2(1) := FND_API.G_RET_STS_SUCCESS;
1031: l_report_id number;
1032: l_org_code VARCHAR2(3) := Null;
1033: l_item_name MTL_SYSTEM_ITEMS_KFV.CONCATENATED_SEGMENTS%TYPE := Null;
1034: l_loc_name MTL_ITEM_LOCATIONS_KFV.CONCATENATED_SEGMENTS%TYPE := Null;

Line 1060: if l_return_status = FND_API.G_RET_STS_ERROR then

1056: l_kanban_card_ids,
1057: l_pull_seq_rec,
1058: X_STATUS );
1059:
1060: if l_return_status = FND_API.G_RET_STS_ERROR then
1061: Raise FND_API.G_EXC_ERROR;
1062: end if;
1063:
1064: if l_return_status = FND_API.G_RET_STS_UNEXP_ERROR then

Line 1061: Raise FND_API.G_EXC_ERROR;

1057: l_pull_seq_rec,
1058: X_STATUS );
1059:
1060: if l_return_status = FND_API.G_RET_STS_ERROR then
1061: Raise FND_API.G_EXC_ERROR;
1062: end if;
1063:
1064: if l_return_status = FND_API.G_RET_STS_UNEXP_ERROR then
1065: Raise FND_API.G_EXC_UNEXPECTED_ERROR;

Line 1064: if l_return_status = FND_API.G_RET_STS_UNEXP_ERROR then

1060: if l_return_status = FND_API.G_RET_STS_ERROR then
1061: Raise FND_API.G_EXC_ERROR;
1062: end if;
1063:
1064: if l_return_status = FND_API.G_RET_STS_UNEXP_ERROR then
1065: Raise FND_API.G_EXC_UNEXPECTED_ERROR;
1066: end if;
1067:
1068: if X_PRINT_KANBAN_CARD = 1 then

Line 1065: Raise FND_API.G_EXC_UNEXPECTED_ERROR;

1061: Raise FND_API.G_EXC_ERROR;
1062: end if;
1063:
1064: if l_return_status = FND_API.G_RET_STS_UNEXP_ERROR then
1065: Raise FND_API.G_EXC_UNEXPECTED_ERROR;
1066: end if;
1067:
1068: if X_PRINT_KANBAN_CARD = 1 then
1069: if X_REPORT_ID IS NULL then

Line 1117: when FND_API.G_EXC_ERROR then

1113: else
1114: PUT_LINE( fnd_message.get );
1115: end if;
1116: Exception
1117: when FND_API.G_EXC_ERROR then
1118: print_error;
1119: when FND_API.G_EXC_UNEXPECTED_ERROR then
1120: print_error;
1121: when others then

Line 1119: when FND_API.G_EXC_UNEXPECTED_ERROR then

1115: end if;
1116: Exception
1117: when FND_API.G_EXC_ERROR then
1118: print_error;
1119: when FND_API.G_EXC_UNEXPECTED_ERROR then
1120: print_error;
1121: when others then
1122: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME , 'card_check_and_create');
1123: print_error;