DBA Data[Home] [Help]

APPS.OE_BULK_PROCESS_HEADER dependencies on OE_VALIDATE

Line 623: oe_debug_pub.add('Enter OE_VALIDATE_HEADER.CHECK_BOOK_REQD',1);

619: l_set_of_books_rec OE_Order_Cache.Set_Of_Books_Rec_Type;
620: l_c_index NUMBER;
621: BEGIN
622:
623: oe_debug_pub.add('Enter OE_VALIDATE_HEADER.CHECK_BOOK_REQD',1);
624:
625: -- Check for the following required fields on a booked order:
626: -- Order Number, Sold To Org, Invoice To Org,
627: -- Price List, Tax Exempt Flag, Sales Person, Order Date

Line 812: oe_debug_pub.add('Exiting OE_VALIDATE_HEADER.CHECK_BOOK_REQD',1);

808: */
809:
810: END IF; -- END of checks related to payment type
811:
812: oe_debug_pub.add('Exiting OE_VALIDATE_HEADER.CHECK_BOOK_REQD',1);
813: EXCEPTION
814: WHEN OTHERS THEN
815: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
816: IF oe_bulk_msg_pub.check_msg_level (oe_bulk_msg_pub.G_MSG_LVL_UNEXP_ERROR)

Line 2203: IF OE_Validate_Header.Is_Duplicate_PO_Number

2199: -- Duplicate PO Number Validation
2200:
2201: IF p_header_rec.cust_po_number(i) IS NOT NULL THEN
2202:
2203: IF OE_Validate_Header.Is_Duplicate_PO_Number
2204: (p_header_rec.cust_po_number(i)
2205: ,p_header_rec.sold_to_org_id(i)
2206: ,p_header_rec.header_id(i)
2207: )

Line 2222: IF NOT OE_VALIDATE.Header_Desc_Flex

2218: IF p_validate_desc_flex = 'Y' THEN
2219:
2220: IF OE_Bulk_Order_Pvt.G_OE_HEADER_ATTRIBUTES = 'Y' THEN
2221:
2222: IF NOT OE_VALIDATE.Header_Desc_Flex
2223: (p_context => p_header_rec.context(i)
2224: ,p_attribute1 => p_header_rec.attribute1(i)
2225: ,p_attribute2 => p_header_rec.attribute2(i)
2226: ,p_attribute3 => p_header_rec.attribute3(i)

Line 2255: p_header_rec.context(i) := oe_validate.g_context;

2251: ELSE -- if the flex validation is successfull
2252: -- For bug 2511313
2253: IF p_header_rec.context(i) IS NULL
2254: OR p_header_rec.context(i) = FND_API.G_MISS_CHAR THEN
2255: p_header_rec.context(i) := oe_validate.g_context;
2256: END IF;
2257:
2258: IF p_header_rec.attribute1(i) IS NULL
2259: OR p_header_rec.attribute1(i) = FND_API.G_MISS_CHAR THEN

Line 2260: p_header_rec.attribute1(i) := oe_validate.g_attribute1;

2256: END IF;
2257:
2258: IF p_header_rec.attribute1(i) IS NULL
2259: OR p_header_rec.attribute1(i) = FND_API.G_MISS_CHAR THEN
2260: p_header_rec.attribute1(i) := oe_validate.g_attribute1;
2261: END IF;
2262:
2263: IF p_header_rec.attribute2(i) IS NULL
2264: OR p_header_rec.attribute2(i) = FND_API.G_MISS_CHAR THEN

Line 2265: p_header_rec.attribute2(i) := oe_validate.g_attribute2;

2261: END IF;
2262:
2263: IF p_header_rec.attribute2(i) IS NULL
2264: OR p_header_rec.attribute2(i) = FND_API.G_MISS_CHAR THEN
2265: p_header_rec.attribute2(i) := oe_validate.g_attribute2;
2266: END IF;
2267:
2268: IF p_header_rec.attribute3(i) IS NULL
2269: OR p_header_rec.attribute3(i) = FND_API.G_MISS_CHAR THEN

Line 2270: p_header_rec.attribute3(i) := oe_validate.g_attribute3;

2266: END IF;
2267:
2268: IF p_header_rec.attribute3(i) IS NULL
2269: OR p_header_rec.attribute3(i) = FND_API.G_MISS_CHAR THEN
2270: p_header_rec.attribute3(i) := oe_validate.g_attribute3;
2271: END IF;
2272:
2273: IF p_header_rec.attribute4(i) IS NULL
2274: OR p_header_rec.attribute4(i) = FND_API.G_MISS_CHAR THEN

Line 2275: p_header_rec.attribute4(i) := oe_validate.g_attribute4;

2271: END IF;
2272:
2273: IF p_header_rec.attribute4(i) IS NULL
2274: OR p_header_rec.attribute4(i) = FND_API.G_MISS_CHAR THEN
2275: p_header_rec.attribute4(i) := oe_validate.g_attribute4;
2276: END IF;
2277:
2278: IF p_header_rec.attribute5(i) IS NULL
2279: OR p_header_rec.attribute5(i) = FND_API.G_MISS_CHAR THEN

Line 2280: p_header_rec.attribute5(i) := oe_validate.g_attribute5;

2276: END IF;
2277:
2278: IF p_header_rec.attribute5(i) IS NULL
2279: OR p_header_rec.attribute5(i) = FND_API.G_MISS_CHAR THEN
2280: p_header_rec.attribute5(i) := oe_validate.g_attribute5;
2281: END IF;
2282:
2283: IF p_header_rec.attribute6(i) IS NULL
2284: OR p_header_rec.attribute6(i) = FND_API.G_MISS_CHAR THEN

Line 2285: p_header_rec.attribute6(i) := oe_validate.g_attribute6;

2281: END IF;
2282:
2283: IF p_header_rec.attribute6(i) IS NULL
2284: OR p_header_rec.attribute6(i) = FND_API.G_MISS_CHAR THEN
2285: p_header_rec.attribute6(i) := oe_validate.g_attribute6;
2286: END IF;
2287:
2288: IF p_header_rec.attribute7(i) IS NULL
2289: OR p_header_rec.attribute7(i) = FND_API.G_MISS_CHAR THEN

Line 2290: p_header_rec.attribute7(i) := oe_validate.g_attribute7;

2286: END IF;
2287:
2288: IF p_header_rec.attribute7(i) IS NULL
2289: OR p_header_rec.attribute7(i) = FND_API.G_MISS_CHAR THEN
2290: p_header_rec.attribute7(i) := oe_validate.g_attribute7;
2291: END IF;
2292:
2293: IF p_header_rec.attribute8(i) IS NULL
2294: OR p_header_rec.attribute8(i) = FND_API.G_MISS_CHAR THEN

Line 2295: p_header_rec.attribute8(i) := oe_validate.g_attribute8;

2291: END IF;
2292:
2293: IF p_header_rec.attribute8(i) IS NULL
2294: OR p_header_rec.attribute8(i) = FND_API.G_MISS_CHAR THEN
2295: p_header_rec.attribute8(i) := oe_validate.g_attribute8;
2296: END IF;
2297:
2298: IF p_header_rec.attribute9(i) IS NULL
2299: OR p_header_rec.attribute9(i) = FND_API.G_MISS_CHAR THEN

Line 2300: p_header_rec.attribute9(i) := oe_validate.g_attribute9;

2296: END IF;
2297:
2298: IF p_header_rec.attribute9(i) IS NULL
2299: OR p_header_rec.attribute9(i) = FND_API.G_MISS_CHAR THEN
2300: p_header_rec.attribute9(i) := oe_validate.g_attribute9;
2301: END IF;
2302:
2303: IF p_header_rec.attribute10(i) IS NULL
2304: OR p_header_rec.attribute10(i) = FND_API.G_MISS_CHAR THEN

Line 2305: p_header_rec.attribute10(i) := Oe_validate.G_attribute10;

2301: END IF;
2302:
2303: IF p_header_rec.attribute10(i) IS NULL
2304: OR p_header_rec.attribute10(i) = FND_API.G_MISS_CHAR THEN
2305: p_header_rec.attribute10(i) := Oe_validate.G_attribute10;
2306: End IF;
2307:
2308: IF p_header_rec.attribute11(i) IS NULL
2309: OR p_header_rec.attribute11(i) = FND_API.G_MISS_CHAR THEN

Line 2310: p_header_rec.attribute11(i) := oe_validate.g_attribute11;

2306: End IF;
2307:
2308: IF p_header_rec.attribute11(i) IS NULL
2309: OR p_header_rec.attribute11(i) = FND_API.G_MISS_CHAR THEN
2310: p_header_rec.attribute11(i) := oe_validate.g_attribute11;
2311: END IF;
2312:
2313: IF p_header_rec.attribute12(i) IS NULL
2314: OR p_header_rec.attribute12(i) = FND_API.G_MISS_CHAR THEN

Line 2315: p_header_rec.attribute12(i) := oe_validate.g_attribute12;

2311: END IF;
2312:
2313: IF p_header_rec.attribute12(i) IS NULL
2314: OR p_header_rec.attribute12(i) = FND_API.G_MISS_CHAR THEN
2315: p_header_rec.attribute12(i) := oe_validate.g_attribute12;
2316: END IF;
2317:
2318: IF p_header_rec.attribute13(i) IS NULL
2319: OR p_header_rec.attribute13(i) = FND_API.G_MISS_CHAR THEN

Line 2320: p_header_rec.attribute13(i) := oe_validate.g_attribute13;

2316: END IF;
2317:
2318: IF p_header_rec.attribute13(i) IS NULL
2319: OR p_header_rec.attribute13(i) = FND_API.G_MISS_CHAR THEN
2320: p_header_rec.attribute13(i) := oe_validate.g_attribute13;
2321: END IF;
2322:
2323: IF p_header_rec.attribute14(i) IS NULL
2324: OR p_header_rec.attribute14(i) = FND_API.G_MISS_CHAR THEN

Line 2325: p_header_rec.attribute14(i) := oe_validate.g_attribute14;

2321: END IF;
2322:
2323: IF p_header_rec.attribute14(i) IS NULL
2324: OR p_header_rec.attribute14(i) = FND_API.G_MISS_CHAR THEN
2325: p_header_rec.attribute14(i) := oe_validate.g_attribute14;
2326: END IF;
2327:
2328: IF p_header_rec.attribute15(i) IS NULL
2329: OR p_header_rec.attribute15(i) = FND_API.G_MISS_CHAR THEN

Line 2330: p_header_rec.attribute15(i) := oe_validate.g_attribute15;

2326: END IF;
2327:
2328: IF p_header_rec.attribute15(i) IS NULL
2329: OR p_header_rec.attribute15(i) = FND_API.G_MISS_CHAR THEN
2330: p_header_rec.attribute15(i) := oe_validate.g_attribute15;
2331: END IF;
2332:
2333: IF p_header_rec.attribute16(i) IS NULL -- For bug 2184255
2334: OR p_header_rec.attribute16(i) = FND_API.G_MISS_CHAR THEN

Line 2335: p_header_rec.attribute16(i) := oe_validate.g_attribute16;

2331: END IF;
2332:
2333: IF p_header_rec.attribute16(i) IS NULL -- For bug 2184255
2334: OR p_header_rec.attribute16(i) = FND_API.G_MISS_CHAR THEN
2335: p_header_rec.attribute16(i) := oe_validate.g_attribute16;
2336: END IF;
2337:
2338: IF p_header_rec.attribute17(i) IS NULL
2339: OR p_header_rec.attribute17(i) = FND_API.G_MISS_CHAR THEN

Line 2340: p_header_rec.attribute17(i) := oe_validate.g_attribute17;

2336: END IF;
2337:
2338: IF p_header_rec.attribute17(i) IS NULL
2339: OR p_header_rec.attribute17(i) = FND_API.G_MISS_CHAR THEN
2340: p_header_rec.attribute17(i) := oe_validate.g_attribute17;
2341: END IF;
2342:
2343: IF p_header_rec.attribute18(i) IS NULL
2344: OR p_header_rec.attribute18(i) = FND_API.G_MISS_CHAR THEN

Line 2345: p_header_rec.attribute18(i) := oe_validate.g_attribute18;

2341: END IF;
2342:
2343: IF p_header_rec.attribute18(i) IS NULL
2344: OR p_header_rec.attribute18(i) = FND_API.G_MISS_CHAR THEN
2345: p_header_rec.attribute18(i) := oe_validate.g_attribute18;
2346: END IF;
2347:
2348: IF p_header_rec.attribute19(i) IS NULL
2349: OR p_header_rec.attribute19(i) = FND_API.G_MISS_CHAR THEN

Line 2350: p_header_rec.attribute19(i) := oe_validate.g_attribute19;

2346: END IF;
2347:
2348: IF p_header_rec.attribute19(i) IS NULL
2349: OR p_header_rec.attribute19(i) = FND_API.G_MISS_CHAR THEN
2350: p_header_rec.attribute19(i) := oe_validate.g_attribute19;
2351: END IF;
2352:
2353: IF p_header_rec.attribute20(i) IS NULL
2354: OR p_header_rec.attribute20(i) = FND_API.G_MISS_CHAR THEN

Line 2355: p_header_rec.attribute20(i) := oe_validate.g_attribute20;

2351: END IF;
2352:
2353: IF p_header_rec.attribute20(i) IS NULL
2354: OR p_header_rec.attribute20(i) = FND_API.G_MISS_CHAR THEN
2355: p_header_rec.attribute20(i) := oe_validate.g_attribute20;
2356: END IF;
2357:
2358: -- end of assignments, bug 2511313
2359:

Line 2365: IF NOT OE_VALIDATE.G_Header_Desc_Flex

2361: END IF;
2362:
2363: IF OE_Bulk_Order_Pvt.G_OE_HEADER_GLOBAL_ATTRIBUTE = 'Y' THEN
2364:
2365: IF NOT OE_VALIDATE.G_Header_Desc_Flex
2366: (p_context => p_header_rec.global_attribute_category(i)
2367: ,p_attribute1 => p_header_rec.global_attribute1(i)
2368: ,p_attribute2 => p_header_rec.global_attribute2(i)
2369: ,p_attribute3 => p_header_rec.global_attribute3(i)

Line 2398: p_header_rec.global_attribute_category(i) := oe_validate.g_context;

2394:
2395: ELSE -- for bug 2511313
2396: IF p_header_rec.global_attribute_category(i) IS NULL
2397: OR p_header_rec.global_attribute_category(i) = FND_API.G_MISS_CHAR THEN
2398: p_header_rec.global_attribute_category(i) := oe_validate.g_context;
2399: END IF;
2400:
2401: IF p_header_rec.global_attribute1(i) IS NULL
2402: OR p_header_rec.global_attribute1(i) = FND_API.G_MISS_CHAR THEN

Line 2403: p_header_rec.global_attribute1(i) := oe_validate.g_attribute1;

2399: END IF;
2400:
2401: IF p_header_rec.global_attribute1(i) IS NULL
2402: OR p_header_rec.global_attribute1(i) = FND_API.G_MISS_CHAR THEN
2403: p_header_rec.global_attribute1(i) := oe_validate.g_attribute1;
2404: END IF;
2405:
2406: IF p_header_rec.global_attribute2(i) IS NULL
2407: OR p_header_rec.global_attribute2(i) = FND_API.G_MISS_CHAR THEN

Line 2408: p_header_rec.global_attribute2(i) := oe_validate.g_attribute2;

2404: END IF;
2405:
2406: IF p_header_rec.global_attribute2(i) IS NULL
2407: OR p_header_rec.global_attribute2(i) = FND_API.G_MISS_CHAR THEN
2408: p_header_rec.global_attribute2(i) := oe_validate.g_attribute2;
2409: END IF;
2410:
2411: IF p_header_rec.global_attribute3(i) IS NULL
2412: OR p_header_rec.global_attribute3(i) = FND_API.G_MISS_CHAR THEN

Line 2413: p_header_rec.global_attribute3(i) := oe_validate.g_attribute3;

2409: END IF;
2410:
2411: IF p_header_rec.global_attribute3(i) IS NULL
2412: OR p_header_rec.global_attribute3(i) = FND_API.G_MISS_CHAR THEN
2413: p_header_rec.global_attribute3(i) := oe_validate.g_attribute3;
2414: END IF;
2415:
2416: IF p_header_rec.global_attribute4(i) IS NULL
2417: OR p_header_rec.global_attribute4(i) = FND_API.G_MISS_CHAR THEN

Line 2418: p_header_rec.global_attribute4(i) := oe_validate.g_attribute4;

2414: END IF;
2415:
2416: IF p_header_rec.global_attribute4(i) IS NULL
2417: OR p_header_rec.global_attribute4(i) = FND_API.G_MISS_CHAR THEN
2418: p_header_rec.global_attribute4(i) := oe_validate.g_attribute4;
2419: END IF;
2420:
2421: IF p_header_rec.global_attribute5(i) IS NULL
2422: OR p_header_rec.global_attribute5(i) = FND_API.G_MISS_CHAR THEN

Line 2423: p_header_rec.global_attribute5(i) := oe_validate.g_attribute5;

2419: END IF;
2420:
2421: IF p_header_rec.global_attribute5(i) IS NULL
2422: OR p_header_rec.global_attribute5(i) = FND_API.G_MISS_CHAR THEN
2423: p_header_rec.global_attribute5(i) := oe_validate.g_attribute5;
2424: END IF;
2425:
2426: IF p_header_rec.global_attribute6(i) IS NULL
2427: OR p_header_rec.global_attribute6(i) = FND_API.G_MISS_CHAR THEN

Line 2428: p_header_rec.global_attribute6(i) := oe_validate.g_attribute6;

2424: END IF;
2425:
2426: IF p_header_rec.global_attribute6(i) IS NULL
2427: OR p_header_rec.global_attribute6(i) = FND_API.G_MISS_CHAR THEN
2428: p_header_rec.global_attribute6(i) := oe_validate.g_attribute6;
2429: END IF;
2430:
2431: IF p_header_rec.global_attribute7(i) IS NULL
2432: OR p_header_rec.global_attribute7(i) = FND_API.G_MISS_CHAR THEN

Line 2433: p_header_rec.global_attribute7(i) := oe_validate.g_attribute7;

2429: END IF;
2430:
2431: IF p_header_rec.global_attribute7(i) IS NULL
2432: OR p_header_rec.global_attribute7(i) = FND_API.G_MISS_CHAR THEN
2433: p_header_rec.global_attribute7(i) := oe_validate.g_attribute7;
2434: END IF;
2435:
2436: IF p_header_rec.global_attribute8(i) IS NULL
2437: OR p_header_rec.global_attribute8(i) = FND_API.G_MISS_CHAR THEN

Line 2438: p_header_rec.global_attribute8(i) := oe_validate.g_attribute8;

2434: END IF;
2435:
2436: IF p_header_rec.global_attribute8(i) IS NULL
2437: OR p_header_rec.global_attribute8(i) = FND_API.G_MISS_CHAR THEN
2438: p_header_rec.global_attribute8(i) := oe_validate.g_attribute8;
2439: END IF;
2440:
2441: IF p_header_rec.global_attribute9(i) IS NULL
2442: OR p_header_rec.global_attribute9(i) = FND_API.G_MISS_CHAR THEN

Line 2443: p_header_rec.global_attribute9(i) := oe_validate.g_attribute9;

2439: END IF;
2440:
2441: IF p_header_rec.global_attribute9(i) IS NULL
2442: OR p_header_rec.global_attribute9(i) = FND_API.G_MISS_CHAR THEN
2443: p_header_rec.global_attribute9(i) := oe_validate.g_attribute9;
2444: END IF;
2445:
2446: IF p_header_rec.global_attribute10(i) IS NULL
2447: OR p_header_rec.global_attribute10(i) = FND_API.G_MISS_CHAR THEN

Line 2448: p_header_rec.global_attribute10(i) := oe_validate.g_attribute10;

2444: END IF;
2445:
2446: IF p_header_rec.global_attribute10(i) IS NULL
2447: OR p_header_rec.global_attribute10(i) = FND_API.G_MISS_CHAR THEN
2448: p_header_rec.global_attribute10(i) := oe_validate.g_attribute10;
2449: END IF;
2450:
2451: IF p_header_rec.global_attribute11(i) IS NULL
2452: OR p_header_rec.global_attribute11(i) = FND_API.G_MISS_CHAR THEN

Line 2453: p_header_rec.global_attribute11(i) := oe_validate.g_attribute11;

2449: END IF;
2450:
2451: IF p_header_rec.global_attribute11(i) IS NULL
2452: OR p_header_rec.global_attribute11(i) = FND_API.G_MISS_CHAR THEN
2453: p_header_rec.global_attribute11(i) := oe_validate.g_attribute11;
2454: END IF;
2455:
2456: IF p_header_rec.global_attribute12(i) IS NULL
2457: OR p_header_rec.global_attribute12(i) = FND_API.G_MISS_CHAR THEN

Line 2458: p_header_rec.global_attribute12(i) := oe_validate.g_attribute12;

2454: END IF;
2455:
2456: IF p_header_rec.global_attribute12(i) IS NULL
2457: OR p_header_rec.global_attribute12(i) = FND_API.G_MISS_CHAR THEN
2458: p_header_rec.global_attribute12(i) := oe_validate.g_attribute12;
2459: END IF;
2460:
2461: IF p_header_rec.global_attribute13(i) IS NULL
2462: OR p_header_rec.global_attribute13(i) = FND_API.G_MISS_CHAR THEN

Line 2463: p_header_rec.global_attribute13(i) := oe_validate.g_attribute13;

2459: END IF;
2460:
2461: IF p_header_rec.global_attribute13(i) IS NULL
2462: OR p_header_rec.global_attribute13(i) = FND_API.G_MISS_CHAR THEN
2463: p_header_rec.global_attribute13(i) := oe_validate.g_attribute13;
2464: END IF;
2465:
2466: IF p_header_rec.global_attribute14(i) IS NULL
2467: OR p_header_rec.global_attribute14(i) = FND_API.G_MISS_CHAR THEN

Line 2468: p_header_rec.global_attribute14(i) := oe_validate.g_attribute14;

2464: END IF;
2465:
2466: IF p_header_rec.global_attribute14(i) IS NULL
2467: OR p_header_rec.global_attribute14(i) = FND_API.G_MISS_CHAR THEN
2468: p_header_rec.global_attribute14(i) := oe_validate.g_attribute14;
2469: END IF;
2470:
2471: IF p_header_rec.global_attribute15(i) IS NULL
2472: OR p_header_rec.global_attribute15(i) = FND_API.G_MISS_CHAR THEN

Line 2473: p_header_rec.global_attribute15(i) := oe_validate.g_attribute15;

2469: END IF;
2470:
2471: IF p_header_rec.global_attribute15(i) IS NULL
2472: OR p_header_rec.global_attribute15(i) = FND_API.G_MISS_CHAR THEN
2473: p_header_rec.global_attribute15(i) := oe_validate.g_attribute15;
2474: END IF;
2475:
2476: IF p_header_rec.global_attribute16(i) IS NULL
2477: OR p_header_rec.global_attribute16(i) = FND_API.G_MISS_CHAR THEN

Line 2478: p_header_rec.global_attribute16(i) := oe_validate.g_attribute16;

2474: END IF;
2475:
2476: IF p_header_rec.global_attribute16(i) IS NULL
2477: OR p_header_rec.global_attribute16(i) = FND_API.G_MISS_CHAR THEN
2478: p_header_rec.global_attribute16(i) := oe_validate.g_attribute16;
2479: END IF;
2480:
2481: IF p_header_rec.global_attribute17(i) IS NULL
2482: OR p_header_rec.global_attribute17(i) = FND_API.G_MISS_CHAR THEN

Line 2483: p_header_rec.global_attribute17(i) := oe_validate.g_attribute17;

2479: END IF;
2480:
2481: IF p_header_rec.global_attribute17(i) IS NULL
2482: OR p_header_rec.global_attribute17(i) = FND_API.G_MISS_CHAR THEN
2483: p_header_rec.global_attribute17(i) := oe_validate.g_attribute17;
2484: END IF;
2485:
2486: IF p_header_rec.global_attribute18(i) IS NULL
2487: OR p_header_rec.global_attribute18(i) = FND_API.G_MISS_CHAR THEN

Line 2488: p_header_rec.global_attribute18(i) := oe_validate.g_attribute18;

2484: END IF;
2485:
2486: IF p_header_rec.global_attribute18(i) IS NULL
2487: OR p_header_rec.global_attribute18(i) = FND_API.G_MISS_CHAR THEN
2488: p_header_rec.global_attribute18(i) := oe_validate.g_attribute18;
2489: END IF;
2490:
2491: IF p_header_rec.global_attribute19(i) IS NULL
2492: OR p_header_rec.global_attribute19(i) = FND_API.G_MISS_CHAR THEN

Line 2493: p_header_rec.global_attribute19(i) := oe_validate.g_attribute19;

2489: END IF;
2490:
2491: IF p_header_rec.global_attribute19(i) IS NULL
2492: OR p_header_rec.global_attribute19(i) = FND_API.G_MISS_CHAR THEN
2493: p_header_rec.global_attribute19(i) := oe_validate.g_attribute19;
2494: END IF;
2495:
2496: IF p_header_rec.global_attribute20(i) IS NULL
2497: OR p_header_rec.global_attribute20(i) = FND_API.G_MISS_CHAR THEN

Line 2498: p_header_rec.global_attribute20(i) := oe_validate.g_attribute20;

2494: END IF;
2495:
2496: IF p_header_rec.global_attribute20(i) IS NULL
2497: OR p_header_rec.global_attribute20(i) = FND_API.G_MISS_CHAR THEN
2498: p_header_rec.global_attribute20(i) := oe_validate.g_attribute20;
2499: END IF;
2500: -- end of bug 2511313
2501:
2502: END IF;

Line 2507: IF NOT OE_VALIDATE.TP_Header_Desc_Flex

2503: END IF;
2504:
2505: IF OE_Bulk_Order_Pvt.G_OE_HEADER_TP_ATTRIBUTES = 'Y' THEN
2506:
2507: IF NOT OE_VALIDATE.TP_Header_Desc_Flex
2508: (p_context => p_header_rec.tp_context(i)
2509: ,p_attribute1 => p_header_rec.tp_attribute1(i)
2510: ,p_attribute2 => p_header_rec.tp_attribute2(i)
2511: ,p_attribute3 => p_header_rec.tp_attribute3(i)

Line 2535: p_header_rec.tp_context(i) := oe_validate.g_context;

2531: ELSE -- for bug 2511313
2532:
2533: IF p_header_rec.tp_context(i) IS NULL
2534: OR p_header_rec.tp_context(i) = FND_API.G_MISS_CHAR THEN
2535: p_header_rec.tp_context(i) := oe_validate.g_context;
2536: END IF;
2537:
2538: IF p_header_rec.tp_attribute1(i) IS NULL
2539: OR p_header_rec.tp_attribute1(i) = FND_API.G_MISS_CHAR THEN

Line 2540: p_header_rec.tp_attribute1(i) := oe_validate.g_attribute1;

2536: END IF;
2537:
2538: IF p_header_rec.tp_attribute1(i) IS NULL
2539: OR p_header_rec.tp_attribute1(i) = FND_API.G_MISS_CHAR THEN
2540: p_header_rec.tp_attribute1(i) := oe_validate.g_attribute1;
2541: END IF;
2542:
2543: IF p_header_rec.tp_attribute2(i) IS NULL
2544: OR p_header_rec.tp_attribute2(i) = FND_API.G_MISS_CHAR THEN

Line 2545: p_header_rec.tp_attribute2(i) := oe_validate.g_attribute2;

2541: END IF;
2542:
2543: IF p_header_rec.tp_attribute2(i) IS NULL
2544: OR p_header_rec.tp_attribute2(i) = FND_API.G_MISS_CHAR THEN
2545: p_header_rec.tp_attribute2(i) := oe_validate.g_attribute2;
2546: END IF;
2547:
2548: IF p_header_rec.tp_attribute3(i) IS NULL
2549: OR p_header_rec.tp_attribute3(i) = FND_API.G_MISS_CHAR THEN

Line 2550: p_header_rec.tp_attribute3(i) := oe_validate.g_attribute3;

2546: END IF;
2547:
2548: IF p_header_rec.tp_attribute3(i) IS NULL
2549: OR p_header_rec.tp_attribute3(i) = FND_API.G_MISS_CHAR THEN
2550: p_header_rec.tp_attribute3(i) := oe_validate.g_attribute3;
2551: END IF;
2552:
2553: IF p_header_rec.tp_attribute4(i) IS NULL
2554: OR p_header_rec.tp_attribute4(i) = FND_API.G_MISS_CHAR THEN

Line 2555: p_header_rec.tp_attribute4(i) := oe_validate.g_attribute4;

2551: END IF;
2552:
2553: IF p_header_rec.tp_attribute4(i) IS NULL
2554: OR p_header_rec.tp_attribute4(i) = FND_API.G_MISS_CHAR THEN
2555: p_header_rec.tp_attribute4(i) := oe_validate.g_attribute4;
2556: END IF;
2557:
2558: IF p_header_rec.tp_attribute5(i) IS NULL
2559: OR p_header_rec.tp_attribute5(i) = FND_API.G_MISS_CHAR THEN

Line 2560: p_header_rec.tp_attribute5(i) := oe_validate.g_attribute5;

2556: END IF;
2557:
2558: IF p_header_rec.tp_attribute5(i) IS NULL
2559: OR p_header_rec.tp_attribute5(i) = FND_API.G_MISS_CHAR THEN
2560: p_header_rec.tp_attribute5(i) := oe_validate.g_attribute5;
2561: END IF;
2562:
2563: IF p_header_rec.tp_attribute6(i) IS NULL
2564: OR p_header_rec.tp_attribute6(i) = FND_API.G_MISS_CHAR THEN

Line 2565: p_header_rec.tp_attribute6(i) := oe_validate.g_attribute6;

2561: END IF;
2562:
2563: IF p_header_rec.tp_attribute6(i) IS NULL
2564: OR p_header_rec.tp_attribute6(i) = FND_API.G_MISS_CHAR THEN
2565: p_header_rec.tp_attribute6(i) := oe_validate.g_attribute6;
2566: END IF;
2567:
2568: IF p_header_rec.tp_attribute7(i) IS NULL
2569: OR p_header_rec.tp_attribute7(i) = FND_API.G_MISS_CHAR THEN

Line 2570: p_header_rec.tp_attribute7(i) := oe_validate.g_attribute7;

2566: END IF;
2567:
2568: IF p_header_rec.tp_attribute7(i) IS NULL
2569: OR p_header_rec.tp_attribute7(i) = FND_API.G_MISS_CHAR THEN
2570: p_header_rec.tp_attribute7(i) := oe_validate.g_attribute7;
2571: END IF;
2572:
2573: IF p_header_rec.tp_attribute8(i) IS NULL
2574: OR p_header_rec.tp_attribute8(i) = FND_API.G_MISS_CHAR THEN

Line 2575: p_header_rec.tp_attribute8(i) := oe_validate.g_attribute8;

2571: END IF;
2572:
2573: IF p_header_rec.tp_attribute8(i) IS NULL
2574: OR p_header_rec.tp_attribute8(i) = FND_API.G_MISS_CHAR THEN
2575: p_header_rec.tp_attribute8(i) := oe_validate.g_attribute8;
2576: END IF;
2577:
2578: IF p_header_rec.tp_attribute9(i) IS NULL
2579: OR p_header_rec.tp_attribute9(i) = FND_API.G_MISS_CHAR THEN

Line 2580: p_header_rec.tp_attribute9(i) := oe_validate.g_attribute9;

2576: END IF;
2577:
2578: IF p_header_rec.tp_attribute9(i) IS NULL
2579: OR p_header_rec.tp_attribute9(i) = FND_API.G_MISS_CHAR THEN
2580: p_header_rec.tp_attribute9(i) := oe_validate.g_attribute9;
2581: END IF;
2582:
2583: IF p_header_rec.tp_attribute10(i) IS NULL
2584: OR p_header_rec.tp_attribute10(i) = FND_API.G_MISS_CHAR THEN

Line 2585: p_header_rec.tp_attribute10(i) := Oe_validate.G_attribute10;

2581: END IF;
2582:
2583: IF p_header_rec.tp_attribute10(i) IS NULL
2584: OR p_header_rec.tp_attribute10(i) = FND_API.G_MISS_CHAR THEN
2585: p_header_rec.tp_attribute10(i) := Oe_validate.G_attribute10;
2586: End IF;
2587:
2588: IF p_header_rec.tp_attribute11(i) IS NULL
2589: OR p_header_rec.tp_attribute11(i) = FND_API.G_MISS_CHAR THEN

Line 2590: p_header_rec.tp_attribute11(i) := oe_validate.g_attribute11;

2586: End IF;
2587:
2588: IF p_header_rec.tp_attribute11(i) IS NULL
2589: OR p_header_rec.tp_attribute11(i) = FND_API.G_MISS_CHAR THEN
2590: p_header_rec.tp_attribute11(i) := oe_validate.g_attribute11;
2591: END IF;
2592:
2593: IF p_header_rec.tp_attribute12(i) IS NULL
2594: OR p_header_rec.tp_attribute12(i) = FND_API.G_MISS_CHAR THEN

Line 2595: p_header_rec.tp_attribute12(i) := oe_validate.g_attribute12;

2591: END IF;
2592:
2593: IF p_header_rec.tp_attribute12(i) IS NULL
2594: OR p_header_rec.tp_attribute12(i) = FND_API.G_MISS_CHAR THEN
2595: p_header_rec.tp_attribute12(i) := oe_validate.g_attribute12;
2596: END IF;
2597:
2598: IF p_header_rec.tp_attribute13(i) IS NULL
2599: OR p_header_rec.tp_attribute13(i) = FND_API.G_MISS_CHAR THEN

Line 2600: p_header_rec.tp_attribute13(i) := oe_validate.g_attribute13;

2596: END IF;
2597:
2598: IF p_header_rec.tp_attribute13(i) IS NULL
2599: OR p_header_rec.tp_attribute13(i) = FND_API.G_MISS_CHAR THEN
2600: p_header_rec.tp_attribute13(i) := oe_validate.g_attribute13;
2601: END IF;
2602:
2603: IF p_header_rec.tp_attribute14(i) IS NULL
2604: OR p_header_rec.tp_attribute14(i) = FND_API.G_MISS_CHAR THEN

Line 2605: p_header_rec.tp_attribute14(i) := oe_validate.g_attribute14;

2601: END IF;
2602:
2603: IF p_header_rec.tp_attribute14(i) IS NULL
2604: OR p_header_rec.tp_attribute14(i) = FND_API.G_MISS_CHAR THEN
2605: p_header_rec.tp_attribute14(i) := oe_validate.g_attribute14;
2606: END IF;
2607:
2608: IF p_header_rec.tp_attribute15(i) IS NULL
2609: OR p_header_rec.tp_attribute15(i) = FND_API.G_MISS_CHAR THEN

Line 2610: p_header_rec.tp_attribute15(i) := oe_validate.g_attribute15;

2606: END IF;
2607:
2608: IF p_header_rec.tp_attribute15(i) IS NULL
2609: OR p_header_rec.tp_attribute15(i) = FND_API.G_MISS_CHAR THEN
2610: p_header_rec.tp_attribute15(i) := oe_validate.g_attribute15;
2611: END IF;
2612:
2613: END IF;
2614: END IF;