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 2207: IF OE_Validate_Header.Is_Duplicate_PO_Number

2203: -- Duplicate PO Number Validation
2204:
2205: IF p_header_rec.cust_po_number(i) IS NOT NULL THEN
2206:
2207: IF OE_Validate_Header.Is_Duplicate_PO_Number
2208: (p_header_rec.cust_po_number(i)
2209: ,p_header_rec.sold_to_org_id(i)
2210: ,p_header_rec.header_id(i)
2211: )

Line 2226: IF NOT OE_VALIDATE.Header_Desc_Flex

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2300: END IF;
2301:
2302: IF p_header_rec.attribute9(i) IS NULL
2303: OR p_header_rec.attribute9(i) = FND_API.G_MISS_CHAR THEN
2304: p_header_rec.attribute9(i) := oe_validate.g_attribute9;
2305: END IF;
2306:
2307: IF p_header_rec.attribute10(i) IS NULL
2308: OR p_header_rec.attribute10(i) = FND_API.G_MISS_CHAR THEN

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

2305: END IF;
2306:
2307: IF p_header_rec.attribute10(i) IS NULL
2308: OR p_header_rec.attribute10(i) = FND_API.G_MISS_CHAR THEN
2309: p_header_rec.attribute10(i) := Oe_validate.G_attribute10;
2310: End IF;
2311:
2312: IF p_header_rec.attribute11(i) IS NULL
2313: OR p_header_rec.attribute11(i) = FND_API.G_MISS_CHAR THEN

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

2310: End IF;
2311:
2312: IF p_header_rec.attribute11(i) IS NULL
2313: OR p_header_rec.attribute11(i) = FND_API.G_MISS_CHAR THEN
2314: p_header_rec.attribute11(i) := oe_validate.g_attribute11;
2315: END IF;
2316:
2317: IF p_header_rec.attribute12(i) IS NULL
2318: OR p_header_rec.attribute12(i) = FND_API.G_MISS_CHAR THEN

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

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

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

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

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

2325: END IF;
2326:
2327: IF p_header_rec.attribute14(i) IS NULL
2328: OR p_header_rec.attribute14(i) = FND_API.G_MISS_CHAR THEN
2329: p_header_rec.attribute14(i) := oe_validate.g_attribute14;
2330: END IF;
2331:
2332: IF p_header_rec.attribute15(i) IS NULL
2333: OR p_header_rec.attribute15(i) = FND_API.G_MISS_CHAR THEN

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

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

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

2335: END IF;
2336:
2337: IF p_header_rec.attribute16(i) IS NULL -- For bug 2184255
2338: OR p_header_rec.attribute16(i) = FND_API.G_MISS_CHAR THEN
2339: p_header_rec.attribute16(i) := oe_validate.g_attribute16;
2340: END IF;
2341:
2342: IF p_header_rec.attribute17(i) IS NULL
2343: OR p_header_rec.attribute17(i) = FND_API.G_MISS_CHAR THEN

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

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

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

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

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

2350: END IF;
2351:
2352: IF p_header_rec.attribute19(i) IS NULL
2353: OR p_header_rec.attribute19(i) = FND_API.G_MISS_CHAR THEN
2354: p_header_rec.attribute19(i) := oe_validate.g_attribute19;
2355: END IF;
2356:
2357: IF p_header_rec.attribute20(i) IS NULL
2358: OR p_header_rec.attribute20(i) = FND_API.G_MISS_CHAR THEN

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

2355: END IF;
2356:
2357: IF p_header_rec.attribute20(i) IS NULL
2358: OR p_header_rec.attribute20(i) = FND_API.G_MISS_CHAR THEN
2359: p_header_rec.attribute20(i) := oe_validate.g_attribute20;
2360: END IF;
2361:
2362: -- end of assignments, bug 2511313
2363:

Line 2369: IF NOT OE_VALIDATE.G_Header_Desc_Flex

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

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

2398:
2399: ELSE -- for bug 2511313
2400: IF p_header_rec.global_attribute_category(i) IS NULL
2401: OR p_header_rec.global_attribute_category(i) = FND_API.G_MISS_CHAR THEN
2402: p_header_rec.global_attribute_category(i) := oe_validate.g_context;
2403: END IF;
2404:
2405: IF p_header_rec.global_attribute1(i) IS NULL
2406: OR p_header_rec.global_attribute1(i) = FND_API.G_MISS_CHAR THEN

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2493: END IF;
2494:
2495: IF p_header_rec.global_attribute19(i) IS NULL
2496: OR p_header_rec.global_attribute19(i) = FND_API.G_MISS_CHAR THEN
2497: p_header_rec.global_attribute19(i) := oe_validate.g_attribute19;
2498: END IF;
2499:
2500: IF p_header_rec.global_attribute20(i) IS NULL
2501: OR p_header_rec.global_attribute20(i) = FND_API.G_MISS_CHAR THEN

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

2498: END IF;
2499:
2500: IF p_header_rec.global_attribute20(i) IS NULL
2501: OR p_header_rec.global_attribute20(i) = FND_API.G_MISS_CHAR THEN
2502: p_header_rec.global_attribute20(i) := oe_validate.g_attribute20;
2503: END IF;
2504: -- end of bug 2511313
2505:
2506: END IF;

Line 2511: IF NOT OE_VALIDATE.TP_Header_Desc_Flex

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

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

2535: ELSE -- for bug 2511313
2536:
2537: IF p_header_rec.tp_context(i) IS NULL
2538: OR p_header_rec.tp_context(i) = FND_API.G_MISS_CHAR THEN
2539: p_header_rec.tp_context(i) := oe_validate.g_context;
2540: END IF;
2541:
2542: IF p_header_rec.tp_attribute1(i) IS NULL
2543: OR p_header_rec.tp_attribute1(i) = FND_API.G_MISS_CHAR THEN

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

2580: END IF;
2581:
2582: IF p_header_rec.tp_attribute9(i) IS NULL
2583: OR p_header_rec.tp_attribute9(i) = FND_API.G_MISS_CHAR THEN
2584: p_header_rec.tp_attribute9(i) := oe_validate.g_attribute9;
2585: END IF;
2586:
2587: IF p_header_rec.tp_attribute10(i) IS NULL
2588: OR p_header_rec.tp_attribute10(i) = FND_API.G_MISS_CHAR THEN

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

2585: END IF;
2586:
2587: IF p_header_rec.tp_attribute10(i) IS NULL
2588: OR p_header_rec.tp_attribute10(i) = FND_API.G_MISS_CHAR THEN
2589: p_header_rec.tp_attribute10(i) := Oe_validate.G_attribute10;
2590: End IF;
2591:
2592: IF p_header_rec.tp_attribute11(i) IS NULL
2593: OR p_header_rec.tp_attribute11(i) = FND_API.G_MISS_CHAR THEN

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

2590: End IF;
2591:
2592: IF p_header_rec.tp_attribute11(i) IS NULL
2593: OR p_header_rec.tp_attribute11(i) = FND_API.G_MISS_CHAR THEN
2594: p_header_rec.tp_attribute11(i) := oe_validate.g_attribute11;
2595: END IF;
2596:
2597: IF p_header_rec.tp_attribute12(i) IS NULL
2598: OR p_header_rec.tp_attribute12(i) = FND_API.G_MISS_CHAR THEN

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

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

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

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

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

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

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

2610: END IF;
2611:
2612: IF p_header_rec.tp_attribute15(i) IS NULL
2613: OR p_header_rec.tp_attribute15(i) = FND_API.G_MISS_CHAR THEN
2614: p_header_rec.tp_attribute15(i) := oe_validate.g_attribute15;
2615: END IF;
2616:
2617: END IF;
2618: END IF;