DBA Data[Home] [Help]

APPS.PNT_ADDR_PKG dependencies on PN_VAR_RENT_PKG

Line 397: pn_var_rent_pkg.lock_row_exception('address_id',Recinfo.address_id);

393: END IF;
394: CLOSE ADDR;
395:
396: IF NOT (Recinfo.address_id = x_Address_Id) THEN
397: pn_var_rent_pkg.lock_row_exception('address_id',Recinfo.address_id);
398: END IF;
399: IF NOT (Recinfo.country = x_Country) THEN
400: pn_var_rent_pkg.lock_row_exception('country',Recinfo.country);
401: END IF;

Line 400: pn_var_rent_pkg.lock_row_exception('country',Recinfo.country);

396: IF NOT (Recinfo.address_id = x_Address_Id) THEN
397: pn_var_rent_pkg.lock_row_exception('address_id',Recinfo.address_id);
398: END IF;
399: IF NOT (Recinfo.country = x_Country) THEN
400: pn_var_rent_pkg.lock_row_exception('country',Recinfo.country);
401: END IF;
402: IF NOT ((Recinfo.address_line1 = x_address_line1)
403: OR ((Recinfo.address_line1 IS null) AND (x_address_line1 IS null))) THEN
404: pn_var_rent_pkg.lock_row_exception('address_line1',Recinfo.address_line1);

Line 404: pn_var_rent_pkg.lock_row_exception('address_line1',Recinfo.address_line1);

400: pn_var_rent_pkg.lock_row_exception('country',Recinfo.country);
401: END IF;
402: IF NOT ((Recinfo.address_line1 = x_address_line1)
403: OR ((Recinfo.address_line1 IS null) AND (x_address_line1 IS null))) THEN
404: pn_var_rent_pkg.lock_row_exception('address_line1',Recinfo.address_line1);
405: END IF;
406: IF NOT ( (Recinfo.address_line2 = x_address_line2)
407: OR ((Recinfo.address_line2 IS null) AND (x_address_line2 IS null))) THEN
408: pn_var_rent_pkg.lock_row_exception('address_line2',Recinfo.address_line2);

Line 408: pn_var_rent_pkg.lock_row_exception('address_line2',Recinfo.address_line2);

404: pn_var_rent_pkg.lock_row_exception('address_line1',Recinfo.address_line1);
405: END IF;
406: IF NOT ( (Recinfo.address_line2 = x_address_line2)
407: OR ((Recinfo.address_line2 IS null) AND (x_address_line2 IS null))) THEN
408: pn_var_rent_pkg.lock_row_exception('address_line2',Recinfo.address_line2);
409: END IF;
410: IF NOT ( (Recinfo.address_line3 = x_address_line3)
411: OR ((Recinfo.address_line3 IS null) AND (x_address_line3 IS null))) THEN
412: pn_var_rent_pkg.lock_row_exception('address_line3',Recinfo.address_line3);

Line 412: pn_var_rent_pkg.lock_row_exception('address_line3',Recinfo.address_line3);

408: pn_var_rent_pkg.lock_row_exception('address_line2',Recinfo.address_line2);
409: END IF;
410: IF NOT ( (Recinfo.address_line3 = x_address_line3)
411: OR ((Recinfo.address_line3 IS null) AND (x_address_line3 IS null))) THEN
412: pn_var_rent_pkg.lock_row_exception('address_line3',Recinfo.address_line3);
413: END IF;
414: IF NOT ( (Recinfo.address_line4 = x_address_line4)
415: OR ((Recinfo.address_line4 IS null) AND (x_address_line4 IS null))) THEN
416: pn_var_rent_pkg.lock_row_exception('address_line4',Recinfo.address_line4);

Line 416: pn_var_rent_pkg.lock_row_exception('address_line4',Recinfo.address_line4);

412: pn_var_rent_pkg.lock_row_exception('address_line3',Recinfo.address_line3);
413: END IF;
414: IF NOT ( (Recinfo.address_line4 = x_address_line4)
415: OR ((Recinfo.address_line4 IS null) AND (x_address_line4 IS null))) THEN
416: pn_var_rent_pkg.lock_row_exception('address_line4',Recinfo.address_line4);
417: END IF;
418: IF NOT ( (Recinfo.city = x_City)
419: OR ((Recinfo.city IS null) AND (x_City IS null))) THEN
420: pn_var_rent_pkg.lock_row_exception('city',Recinfo.city);

Line 420: pn_var_rent_pkg.lock_row_exception('city',Recinfo.city);

416: pn_var_rent_pkg.lock_row_exception('address_line4',Recinfo.address_line4);
417: END IF;
418: IF NOT ( (Recinfo.city = x_City)
419: OR ((Recinfo.city IS null) AND (x_City IS null))) THEN
420: pn_var_rent_pkg.lock_row_exception('city',Recinfo.city);
421: END IF;
422: IF NOT ( (Recinfo.zip_code = x_zip_code)
423: OR ((Recinfo.zip_code IS null) AND (x_zip_code IS null))) THEN
424: pn_var_rent_pkg.lock_row_exception('zip_code',Recinfo.zip_code);

Line 424: pn_var_rent_pkg.lock_row_exception('zip_code',Recinfo.zip_code);

420: pn_var_rent_pkg.lock_row_exception('city',Recinfo.city);
421: END IF;
422: IF NOT ( (Recinfo.zip_code = x_zip_code)
423: OR ((Recinfo.zip_code IS null) AND (x_zip_code IS null))) THEN
424: pn_var_rent_pkg.lock_row_exception('zip_code',Recinfo.zip_code);
425: END IF;
426: IF NOT ( (Recinfo.state = x_State)
427: OR ((Recinfo.state IS null) AND (x_State IS null))) THEN
428: pn_var_rent_pkg.lock_row_exception('state',Recinfo.state);

Line 428: pn_var_rent_pkg.lock_row_exception('state',Recinfo.state);

424: pn_var_rent_pkg.lock_row_exception('zip_code',Recinfo.zip_code);
425: END IF;
426: IF NOT ( (Recinfo.state = x_State)
427: OR ((Recinfo.state IS null) AND (x_State IS null))) THEN
428: pn_var_rent_pkg.lock_row_exception('state',Recinfo.state);
429: END IF;
430: IF NOT ( (Recinfo.province = x_Province)
431: OR ((Recinfo.province IS null) AND (x_Province IS null))) THEN
432: pn_var_rent_pkg.lock_row_exception('province',Recinfo.province);

Line 432: pn_var_rent_pkg.lock_row_exception('province',Recinfo.province);

428: pn_var_rent_pkg.lock_row_exception('state',Recinfo.state);
429: END IF;
430: IF NOT ( (Recinfo.province = x_Province)
431: OR ((Recinfo.province IS null) AND (x_Province IS null))) THEN
432: pn_var_rent_pkg.lock_row_exception('province',Recinfo.province);
433: END IF;
434: IF NOT ( (Recinfo.county = x_County)
435: OR ((Recinfo.county IS null) AND (x_County IS null))) THEN
436: pn_var_rent_pkg.lock_row_exception('county',Recinfo.county);

Line 436: pn_var_rent_pkg.lock_row_exception('county',Recinfo.county);

432: pn_var_rent_pkg.lock_row_exception('province',Recinfo.province);
433: END IF;
434: IF NOT ( (Recinfo.county = x_County)
435: OR ((Recinfo.county IS null) AND (x_County IS null))) THEN
436: pn_var_rent_pkg.lock_row_exception('county',Recinfo.county);
437: END IF;
438: IF NOT ( (Recinfo.territORy_id = x_TerritORy_Id)
439: OR ((Recinfo.territORy_id IS null) AND (x_TerritORy_Id IS null))) THEN
440: pn_var_rent_pkg.lock_row_exception('territORy_id',Recinfo.territORy_id);

Line 440: pn_var_rent_pkg.lock_row_exception('territORy_id',Recinfo.territORy_id);

436: pn_var_rent_pkg.lock_row_exception('county',Recinfo.county);
437: END IF;
438: IF NOT ( (Recinfo.territORy_id = x_TerritORy_Id)
439: OR ((Recinfo.territORy_id IS null) AND (x_TerritORy_Id IS null))) THEN
440: pn_var_rent_pkg.lock_row_exception('territORy_id',Recinfo.territORy_id);
441: END IF;
442: IF NOT ( (Recinfo.attribute_categORy = x_Attribute_CategORy)
443: OR ((Recinfo.attribute_categORy IS null) AND (x_Attribute_CategORy IS null))) THEN
444: pn_var_rent_pkg.lock_row_exception('attribute_categORy',Recinfo.attribute_categORy);

Line 444: pn_var_rent_pkg.lock_row_exception('attribute_categORy',Recinfo.attribute_categORy);

440: pn_var_rent_pkg.lock_row_exception('territORy_id',Recinfo.territORy_id);
441: END IF;
442: IF NOT ( (Recinfo.attribute_categORy = x_Attribute_CategORy)
443: OR ((Recinfo.attribute_categORy IS null) AND (x_Attribute_CategORy IS null))) THEN
444: pn_var_rent_pkg.lock_row_exception('attribute_categORy',Recinfo.attribute_categORy);
445: END IF;
446: IF NOT ( (Recinfo.attribute1 = x_Attribute1)
447: OR ((Recinfo.attribute1 IS null) AND (x_Attribute1 IS null))) THEN
448: pn_var_rent_pkg.lock_row_exception('attribute1',Recinfo.attribute1);

Line 448: pn_var_rent_pkg.lock_row_exception('attribute1',Recinfo.attribute1);

444: pn_var_rent_pkg.lock_row_exception('attribute_categORy',Recinfo.attribute_categORy);
445: END IF;
446: IF NOT ( (Recinfo.attribute1 = x_Attribute1)
447: OR ((Recinfo.attribute1 IS null) AND (x_Attribute1 IS null))) THEN
448: pn_var_rent_pkg.lock_row_exception('attribute1',Recinfo.attribute1);
449: END IF;
450: IF NOT ( (Recinfo.attribute2 = x_Attribute2)
451: OR ((Recinfo.attribute2 IS null) AND (x_Attribute2 IS null))) THEN
452: pn_var_rent_pkg.lock_row_exception('attribute2',Recinfo.attribute2);

Line 452: pn_var_rent_pkg.lock_row_exception('attribute2',Recinfo.attribute2);

448: pn_var_rent_pkg.lock_row_exception('attribute1',Recinfo.attribute1);
449: END IF;
450: IF NOT ( (Recinfo.attribute2 = x_Attribute2)
451: OR ((Recinfo.attribute2 IS null) AND (x_Attribute2 IS null))) THEN
452: pn_var_rent_pkg.lock_row_exception('attribute2',Recinfo.attribute2);
453: END IF;
454: IF NOT ( (Recinfo.attribute3 = x_Attribute3)
455: OR ((Recinfo.attribute3 IS null) AND (x_Attribute3 IS null))) THEN
456: pn_var_rent_pkg.lock_row_exception('attribute3',Recinfo.attribute3);

Line 456: pn_var_rent_pkg.lock_row_exception('attribute3',Recinfo.attribute3);

452: pn_var_rent_pkg.lock_row_exception('attribute2',Recinfo.attribute2);
453: END IF;
454: IF NOT ( (Recinfo.attribute3 = x_Attribute3)
455: OR ((Recinfo.attribute3 IS null) AND (x_Attribute3 IS null))) THEN
456: pn_var_rent_pkg.lock_row_exception('attribute3',Recinfo.attribute3);
457: END IF;
458: IF NOT ( (Recinfo.attribute4 = x_Attribute4)
459: OR ((Recinfo.attribute4 IS null) AND (x_Attribute4 IS null))) THEN
460: pn_var_rent_pkg.lock_row_exception('attribute4',Recinfo.attribute4);

Line 460: pn_var_rent_pkg.lock_row_exception('attribute4',Recinfo.attribute4);

456: pn_var_rent_pkg.lock_row_exception('attribute3',Recinfo.attribute3);
457: END IF;
458: IF NOT ( (Recinfo.attribute4 = x_Attribute4)
459: OR ((Recinfo.attribute4 IS null) AND (x_Attribute4 IS null))) THEN
460: pn_var_rent_pkg.lock_row_exception('attribute4',Recinfo.attribute4);
461: END IF;
462: IF NOT ( (Recinfo.attribute5 = x_Attribute5)
463: OR ((Recinfo.attribute5 IS null) AND (x_Attribute5 IS null))) THEN
464: pn_var_rent_pkg.lock_row_exception('attribute5',Recinfo.attribute5);

Line 464: pn_var_rent_pkg.lock_row_exception('attribute5',Recinfo.attribute5);

460: pn_var_rent_pkg.lock_row_exception('attribute4',Recinfo.attribute4);
461: END IF;
462: IF NOT ( (Recinfo.attribute5 = x_Attribute5)
463: OR ((Recinfo.attribute5 IS null) AND (x_Attribute5 IS null))) THEN
464: pn_var_rent_pkg.lock_row_exception('attribute5',Recinfo.attribute5);
465: END IF;
466: IF NOT ( (Recinfo.attribute6 = x_Attribute6)
467: OR ((Recinfo.attribute6 IS null) AND (x_Attribute6 IS null))) THEN
468: pn_var_rent_pkg.lock_row_exception('attribute6',Recinfo.attribute6);

Line 468: pn_var_rent_pkg.lock_row_exception('attribute6',Recinfo.attribute6);

464: pn_var_rent_pkg.lock_row_exception('attribute5',Recinfo.attribute5);
465: END IF;
466: IF NOT ( (Recinfo.attribute6 = x_Attribute6)
467: OR ((Recinfo.attribute6 IS null) AND (x_Attribute6 IS null))) THEN
468: pn_var_rent_pkg.lock_row_exception('attribute6',Recinfo.attribute6);
469: END IF;
470: IF NOT ( (Recinfo.attribute7 = x_Attribute7)
471: OR ((Recinfo.attribute7 IS null) AND (x_Attribute7 IS null))) THEN
472: pn_var_rent_pkg.lock_row_exception('attribute7',Recinfo.attribute7);

Line 472: pn_var_rent_pkg.lock_row_exception('attribute7',Recinfo.attribute7);

468: pn_var_rent_pkg.lock_row_exception('attribute6',Recinfo.attribute6);
469: END IF;
470: IF NOT ( (Recinfo.attribute7 = x_Attribute7)
471: OR ((Recinfo.attribute7 IS null) AND (x_Attribute7 IS null))) THEN
472: pn_var_rent_pkg.lock_row_exception('attribute7',Recinfo.attribute7);
473: END IF;
474: IF NOT ( (Recinfo.attribute8 = x_Attribute8)
475: OR ((Recinfo.attribute8 IS null) AND (x_Attribute8 IS null))) THEN
476: pn_var_rent_pkg.lock_row_exception('attribute8',Recinfo.attribute8);

Line 476: pn_var_rent_pkg.lock_row_exception('attribute8',Recinfo.attribute8);

472: pn_var_rent_pkg.lock_row_exception('attribute7',Recinfo.attribute7);
473: END IF;
474: IF NOT ( (Recinfo.attribute8 = x_Attribute8)
475: OR ((Recinfo.attribute8 IS null) AND (x_Attribute8 IS null))) THEN
476: pn_var_rent_pkg.lock_row_exception('attribute8',Recinfo.attribute8);
477: END IF;
478: IF NOT ( (Recinfo.attribute9 = x_Attribute9)
479: OR ((Recinfo.attribute9 IS null) AND (x_Attribute9 IS null))) THEN
480: pn_var_rent_pkg.lock_row_exception('attribute9',Recinfo.attribute9);

Line 480: pn_var_rent_pkg.lock_row_exception('attribute9',Recinfo.attribute9);

476: pn_var_rent_pkg.lock_row_exception('attribute8',Recinfo.attribute8);
477: END IF;
478: IF NOT ( (Recinfo.attribute9 = x_Attribute9)
479: OR ((Recinfo.attribute9 IS null) AND (x_Attribute9 IS null))) THEN
480: pn_var_rent_pkg.lock_row_exception('attribute9',Recinfo.attribute9);
481: END IF;
482: IF NOT ( (Recinfo.attribute10 = x_Attribute10)
483: OR ((Recinfo.attribute10 IS null) AND (x_Attribute10 IS null))) THEN
484: pn_var_rent_pkg.lock_row_exception('attribute10',Recinfo.attribute10);

Line 484: pn_var_rent_pkg.lock_row_exception('attribute10',Recinfo.attribute10);

480: pn_var_rent_pkg.lock_row_exception('attribute9',Recinfo.attribute9);
481: END IF;
482: IF NOT ( (Recinfo.attribute10 = x_Attribute10)
483: OR ((Recinfo.attribute10 IS null) AND (x_Attribute10 IS null))) THEN
484: pn_var_rent_pkg.lock_row_exception('attribute10',Recinfo.attribute10);
485: END IF;
486: IF NOT ( (Recinfo.attribute11 = x_Attribute11)
487: OR ((Recinfo.attribute11 IS null) AND (x_Attribute11 IS null))) THEN
488: pn_var_rent_pkg.lock_row_exception('attribute11',Recinfo.attribute11);

Line 488: pn_var_rent_pkg.lock_row_exception('attribute11',Recinfo.attribute11);

484: pn_var_rent_pkg.lock_row_exception('attribute10',Recinfo.attribute10);
485: END IF;
486: IF NOT ( (Recinfo.attribute11 = x_Attribute11)
487: OR ((Recinfo.attribute11 IS null) AND (x_Attribute11 IS null))) THEN
488: pn_var_rent_pkg.lock_row_exception('attribute11',Recinfo.attribute11);
489: END IF;
490: IF NOT ( (Recinfo.attribute12 = x_Attribute12)
491: OR ((Recinfo.attribute12 IS null) AND (x_Attribute12 IS null))) THEN
492: pn_var_rent_pkg.lock_row_exception('attribute12',Recinfo.attribute12);

Line 492: pn_var_rent_pkg.lock_row_exception('attribute12',Recinfo.attribute12);

488: pn_var_rent_pkg.lock_row_exception('attribute11',Recinfo.attribute11);
489: END IF;
490: IF NOT ( (Recinfo.attribute12 = x_Attribute12)
491: OR ((Recinfo.attribute12 IS null) AND (x_Attribute12 IS null))) THEN
492: pn_var_rent_pkg.lock_row_exception('attribute12',Recinfo.attribute12);
493: END IF;
494: IF NOT ( (Recinfo.attribute13 = x_Attribute13)
495: OR ((Recinfo.attribute13 IS null) AND (x_Attribute13 IS null))) THEN
496: pn_var_rent_pkg.lock_row_exception('attribute13',Recinfo.attribute13);

Line 496: pn_var_rent_pkg.lock_row_exception('attribute13',Recinfo.attribute13);

492: pn_var_rent_pkg.lock_row_exception('attribute12',Recinfo.attribute12);
493: END IF;
494: IF NOT ( (Recinfo.attribute13 = x_Attribute13)
495: OR ((Recinfo.attribute13 IS null) AND (x_Attribute13 IS null))) THEN
496: pn_var_rent_pkg.lock_row_exception('attribute13',Recinfo.attribute13);
497: END IF;
498: IF NOT ( (Recinfo.attribute14 = x_Attribute14)
499: OR ((Recinfo.attribute14 IS null) AND (x_Attribute14 IS null))) THEN
500: pn_var_rent_pkg.lock_row_exception('attribute14',Recinfo.attribute14);

Line 500: pn_var_rent_pkg.lock_row_exception('attribute14',Recinfo.attribute14);

496: pn_var_rent_pkg.lock_row_exception('attribute13',Recinfo.attribute13);
497: END IF;
498: IF NOT ( (Recinfo.attribute14 = x_Attribute14)
499: OR ((Recinfo.attribute14 IS null) AND (x_Attribute14 IS null))) THEN
500: pn_var_rent_pkg.lock_row_exception('attribute14',Recinfo.attribute14);
501: END IF;
502: IF NOT ( (Recinfo.attribute15 = x_Attribute15)
503: OR ((Recinfo.attribute15 IS null) AND (x_Attribute15 IS null))) THEN
504: pn_var_rent_pkg.lock_row_exception('attribute15',Recinfo.attribute15);

Line 504: pn_var_rent_pkg.lock_row_exception('attribute15',Recinfo.attribute15);

500: pn_var_rent_pkg.lock_row_exception('attribute14',Recinfo.attribute14);
501: END IF;
502: IF NOT ( (Recinfo.attribute15 = x_Attribute15)
503: OR ((Recinfo.attribute15 IS null) AND (x_Attribute15 IS null))) THEN
504: pn_var_rent_pkg.lock_row_exception('attribute15',Recinfo.attribute15);
505: END IF;
506: IF NOT ( (Recinfo.addr_attribute_categORy = x_addr_Attribute_CategORy)
507: OR ((Recinfo.addr_attribute_categORy IS null) AND (x_addr_Attribute_CategORy IS null))) THEN
508: pn_var_rent_pkg.lock_row_exception('addr_attribute_categORy',Recinfo.addr_attribute_categORy);

Line 508: pn_var_rent_pkg.lock_row_exception('addr_attribute_categORy',Recinfo.addr_attribute_categORy);

504: pn_var_rent_pkg.lock_row_exception('attribute15',Recinfo.attribute15);
505: END IF;
506: IF NOT ( (Recinfo.addr_attribute_categORy = x_addr_Attribute_CategORy)
507: OR ((Recinfo.addr_attribute_categORy IS null) AND (x_addr_Attribute_CategORy IS null))) THEN
508: pn_var_rent_pkg.lock_row_exception('addr_attribute_categORy',Recinfo.addr_attribute_categORy);
509: END IF;
510: IF NOT ( (Recinfo.addr_attribute1 = x_addr_Attribute1)
511: OR ((Recinfo.addr_attribute1 IS null) AND (x_addr_Attribute1 IS null))) THEN
512: pn_var_rent_pkg.lock_row_exception('addr_attribute1',Recinfo.addr_attribute1);

Line 512: pn_var_rent_pkg.lock_row_exception('addr_attribute1',Recinfo.addr_attribute1);

508: pn_var_rent_pkg.lock_row_exception('addr_attribute_categORy',Recinfo.addr_attribute_categORy);
509: END IF;
510: IF NOT ( (Recinfo.addr_attribute1 = x_addr_Attribute1)
511: OR ((Recinfo.addr_attribute1 IS null) AND (x_addr_Attribute1 IS null))) THEN
512: pn_var_rent_pkg.lock_row_exception('addr_attribute1',Recinfo.addr_attribute1);
513: END IF;
514: IF NOT ( (Recinfo.addr_attribute2 = x_addr_Attribute2)
515: OR ((Recinfo.addr_attribute2 IS null) AND (x_addr_Attribute2 IS null))) THEN
516: pn_var_rent_pkg.lock_row_exception('addr_attribute2',Recinfo.addr_attribute2);

Line 516: pn_var_rent_pkg.lock_row_exception('addr_attribute2',Recinfo.addr_attribute2);

512: pn_var_rent_pkg.lock_row_exception('addr_attribute1',Recinfo.addr_attribute1);
513: END IF;
514: IF NOT ( (Recinfo.addr_attribute2 = x_addr_Attribute2)
515: OR ((Recinfo.addr_attribute2 IS null) AND (x_addr_Attribute2 IS null))) THEN
516: pn_var_rent_pkg.lock_row_exception('addr_attribute2',Recinfo.addr_attribute2);
517: END IF;
518: IF NOT ( (Recinfo.addr_attribute3 = x_addr_Attribute3)
519: OR ((Recinfo.addr_attribute3 IS null) AND (x_addr_Attribute3 IS null))) THEN
520: pn_var_rent_pkg.lock_row_exception('addr_attribute3',Recinfo.addr_attribute3);

Line 520: pn_var_rent_pkg.lock_row_exception('addr_attribute3',Recinfo.addr_attribute3);

516: pn_var_rent_pkg.lock_row_exception('addr_attribute2',Recinfo.addr_attribute2);
517: END IF;
518: IF NOT ( (Recinfo.addr_attribute3 = x_addr_Attribute3)
519: OR ((Recinfo.addr_attribute3 IS null) AND (x_addr_Attribute3 IS null))) THEN
520: pn_var_rent_pkg.lock_row_exception('addr_attribute3',Recinfo.addr_attribute3);
521: END IF;
522: IF NOT ( (Recinfo.addr_attribute4 = x_addr_Attribute4)
523: OR ((Recinfo.addr_attribute4 IS null) AND (x_addr_Attribute4 IS null))) THEN
524: pn_var_rent_pkg.lock_row_exception('addr_attribute4',Recinfo.addr_attribute4);

Line 524: pn_var_rent_pkg.lock_row_exception('addr_attribute4',Recinfo.addr_attribute4);

520: pn_var_rent_pkg.lock_row_exception('addr_attribute3',Recinfo.addr_attribute3);
521: END IF;
522: IF NOT ( (Recinfo.addr_attribute4 = x_addr_Attribute4)
523: OR ((Recinfo.addr_attribute4 IS null) AND (x_addr_Attribute4 IS null))) THEN
524: pn_var_rent_pkg.lock_row_exception('addr_attribute4',Recinfo.addr_attribute4);
525: END IF;
526: IF NOT ( (Recinfo.addr_attribute5 = x_addr_Attribute5)
527: OR ((Recinfo.addr_attribute5 IS null) AND (x_addr_Attribute5 IS null))) THEN
528: pn_var_rent_pkg.lock_row_exception('addr_attribute5',Recinfo.addr_attribute5);

Line 528: pn_var_rent_pkg.lock_row_exception('addr_attribute5',Recinfo.addr_attribute5);

524: pn_var_rent_pkg.lock_row_exception('addr_attribute4',Recinfo.addr_attribute4);
525: END IF;
526: IF NOT ( (Recinfo.addr_attribute5 = x_addr_Attribute5)
527: OR ((Recinfo.addr_attribute5 IS null) AND (x_addr_Attribute5 IS null))) THEN
528: pn_var_rent_pkg.lock_row_exception('addr_attribute5',Recinfo.addr_attribute5);
529: END IF;
530: IF NOT ( (Recinfo.addr_attribute6 = x_addr_Attribute6)
531: OR ((Recinfo.addr_attribute6 IS null) AND (x_addr_Attribute6 IS null))) THEN
532: pn_var_rent_pkg.lock_row_exception('addr_attribute6',Recinfo.addr_attribute6);

Line 532: pn_var_rent_pkg.lock_row_exception('addr_attribute6',Recinfo.addr_attribute6);

528: pn_var_rent_pkg.lock_row_exception('addr_attribute5',Recinfo.addr_attribute5);
529: END IF;
530: IF NOT ( (Recinfo.addr_attribute6 = x_addr_Attribute6)
531: OR ((Recinfo.addr_attribute6 IS null) AND (x_addr_Attribute6 IS null))) THEN
532: pn_var_rent_pkg.lock_row_exception('addr_attribute6',Recinfo.addr_attribute6);
533: END IF;
534: IF NOT ( (Recinfo.addr_attribute7 = x_addr_Attribute7)
535: OR ((Recinfo.addr_attribute7 IS null) AND (x_addr_Attribute7 IS null))) THEN
536: pn_var_rent_pkg.lock_row_exception('addr_attribute7',Recinfo.addr_attribute7);

Line 536: pn_var_rent_pkg.lock_row_exception('addr_attribute7',Recinfo.addr_attribute7);

532: pn_var_rent_pkg.lock_row_exception('addr_attribute6',Recinfo.addr_attribute6);
533: END IF;
534: IF NOT ( (Recinfo.addr_attribute7 = x_addr_Attribute7)
535: OR ((Recinfo.addr_attribute7 IS null) AND (x_addr_Attribute7 IS null))) THEN
536: pn_var_rent_pkg.lock_row_exception('addr_attribute7',Recinfo.addr_attribute7);
537: END IF;
538: IF NOT ( (Recinfo.addr_attribute8 = x_addr_Attribute8)
539: OR ((Recinfo.addr_attribute8 IS null) AND (x_addr_Attribute8 IS null))) THEN
540: pn_var_rent_pkg.lock_row_exception('addr_attribute8',Recinfo.addr_attribute8);

Line 540: pn_var_rent_pkg.lock_row_exception('addr_attribute8',Recinfo.addr_attribute8);

536: pn_var_rent_pkg.lock_row_exception('addr_attribute7',Recinfo.addr_attribute7);
537: END IF;
538: IF NOT ( (Recinfo.addr_attribute8 = x_addr_Attribute8)
539: OR ((Recinfo.addr_attribute8 IS null) AND (x_addr_Attribute8 IS null))) THEN
540: pn_var_rent_pkg.lock_row_exception('addr_attribute8',Recinfo.addr_attribute8);
541: END IF;
542: IF NOT ( (Recinfo.addr_attribute9 = x_addr_Attribute9)
543: OR ((Recinfo.addr_attribute9 IS null) AND (x_addr_Attribute9 IS null))) THEN
544: pn_var_rent_pkg.lock_row_exception('addr_attribute9',Recinfo.addr_attribute9);

Line 544: pn_var_rent_pkg.lock_row_exception('addr_attribute9',Recinfo.addr_attribute9);

540: pn_var_rent_pkg.lock_row_exception('addr_attribute8',Recinfo.addr_attribute8);
541: END IF;
542: IF NOT ( (Recinfo.addr_attribute9 = x_addr_Attribute9)
543: OR ((Recinfo.addr_attribute9 IS null) AND (x_addr_Attribute9 IS null))) THEN
544: pn_var_rent_pkg.lock_row_exception('addr_attribute9',Recinfo.addr_attribute9);
545: END IF;
546: IF NOT ( (Recinfo.addr_attribute10 = x_addr_Attribute10)
547: OR ((Recinfo.addr_attribute10 IS null) AND (x_addr_Attribute10 IS null))) THEN
548: pn_var_rent_pkg.lock_row_exception('addr_attribute10',Recinfo.addr_attribute10);

Line 548: pn_var_rent_pkg.lock_row_exception('addr_attribute10',Recinfo.addr_attribute10);

544: pn_var_rent_pkg.lock_row_exception('addr_attribute9',Recinfo.addr_attribute9);
545: END IF;
546: IF NOT ( (Recinfo.addr_attribute10 = x_addr_Attribute10)
547: OR ((Recinfo.addr_attribute10 IS null) AND (x_addr_Attribute10 IS null))) THEN
548: pn_var_rent_pkg.lock_row_exception('addr_attribute10',Recinfo.addr_attribute10);
549: END IF;
550: IF NOT ( (Recinfo.addr_attribute11 = x_addr_Attribute11)
551: OR ((Recinfo.addr_attribute11 IS null) AND (x_addr_Attribute11 IS null))) THEN
552: pn_var_rent_pkg.lock_row_exception('addr_attribute11',Recinfo.addr_attribute11);

Line 552: pn_var_rent_pkg.lock_row_exception('addr_attribute11',Recinfo.addr_attribute11);

548: pn_var_rent_pkg.lock_row_exception('addr_attribute10',Recinfo.addr_attribute10);
549: END IF;
550: IF NOT ( (Recinfo.addr_attribute11 = x_addr_Attribute11)
551: OR ((Recinfo.addr_attribute11 IS null) AND (x_addr_Attribute11 IS null))) THEN
552: pn_var_rent_pkg.lock_row_exception('addr_attribute11',Recinfo.addr_attribute11);
553: END IF;
554: IF NOT ( (Recinfo.addr_attribute12 = x_addr_Attribute12)
555: OR ((Recinfo.addr_attribute12 IS null) AND (x_addr_Attribute12 IS null))) THEN
556: pn_var_rent_pkg.lock_row_exception('addr_attribute12',Recinfo.addr_attribute12);

Line 556: pn_var_rent_pkg.lock_row_exception('addr_attribute12',Recinfo.addr_attribute12);

552: pn_var_rent_pkg.lock_row_exception('addr_attribute11',Recinfo.addr_attribute11);
553: END IF;
554: IF NOT ( (Recinfo.addr_attribute12 = x_addr_Attribute12)
555: OR ((Recinfo.addr_attribute12 IS null) AND (x_addr_Attribute12 IS null))) THEN
556: pn_var_rent_pkg.lock_row_exception('addr_attribute12',Recinfo.addr_attribute12);
557: END IF;
558: IF NOT ( (Recinfo.addr_attribute13 = x_addr_Attribute13)
559: OR ((Recinfo.addr_attribute13 IS null) AND (x_addr_Attribute13 IS null))) THEN
560: pn_var_rent_pkg.lock_row_exception('addr_attribute13',Recinfo.addr_attribute13);

Line 560: pn_var_rent_pkg.lock_row_exception('addr_attribute13',Recinfo.addr_attribute13);

556: pn_var_rent_pkg.lock_row_exception('addr_attribute12',Recinfo.addr_attribute12);
557: END IF;
558: IF NOT ( (Recinfo.addr_attribute13 = x_addr_Attribute13)
559: OR ((Recinfo.addr_attribute13 IS null) AND (x_addr_Attribute13 IS null))) THEN
560: pn_var_rent_pkg.lock_row_exception('addr_attribute13',Recinfo.addr_attribute13);
561: END IF;
562: IF NOT ( (Recinfo.addr_attribute14 = x_addr_Attribute14)
563: OR ((Recinfo.addr_attribute14 IS null) AND (x_addr_Attribute14 IS null))) THEN
564: pn_var_rent_pkg.lock_row_exception('addr_attribute14',Recinfo.addr_attribute14);

Line 564: pn_var_rent_pkg.lock_row_exception('addr_attribute14',Recinfo.addr_attribute14);

560: pn_var_rent_pkg.lock_row_exception('addr_attribute13',Recinfo.addr_attribute13);
561: END IF;
562: IF NOT ( (Recinfo.addr_attribute14 = x_addr_Attribute14)
563: OR ((Recinfo.addr_attribute14 IS null) AND (x_addr_Attribute14 IS null))) THEN
564: pn_var_rent_pkg.lock_row_exception('addr_attribute14',Recinfo.addr_attribute14);
565: END IF;
566: IF NOT ( (Recinfo.addr_attribute15 = x_addr_Attribute15)
567: OR ((Recinfo.addr_attribute15 IS null) AND (x_addr_Attribute15 IS null))) THEN
568: pn_var_rent_pkg.lock_row_exception('addr_attribute15',Recinfo.addr_attribute15);

Line 568: pn_var_rent_pkg.lock_row_exception('addr_attribute15',Recinfo.addr_attribute15);

564: pn_var_rent_pkg.lock_row_exception('addr_attribute14',Recinfo.addr_attribute14);
565: END IF;
566: IF NOT ( (Recinfo.addr_attribute15 = x_addr_Attribute15)
567: OR ((Recinfo.addr_attribute15 IS null) AND (x_addr_Attribute15 IS null))) THEN
568: pn_var_rent_pkg.lock_row_exception('addr_attribute15',Recinfo.addr_attribute15);
569: END IF;
570:
571: END lock_row;
572: