DBA Data[Home] [Help]

APPS.IEX_CO_TRANSFER_EA_PVT dependencies on FND_GLOBAL

Line 77: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS2);

73: l_case_rec.party_type := initcap(l_party_rec.party_type);
74:
75: l_address := rtrim(l_party_rec.ADDRESS1);
76: IF(rtrim(l_party_rec.ADDRESS2) IS NOT NULL) THEN
77: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS2);
78: END IF;
79:
80: IF(rtrim(l_party_rec.ADDRESS3) IS NOT NULL) THEN
81: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS3);

Line 81: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS3);

77: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS2);
78: END IF;
79:
80: IF(rtrim(l_party_rec.ADDRESS3) IS NOT NULL) THEN
81: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS3);
82: END IF;
83:
84: IF(rtrim(l_party_rec.ADDRESS4) IS NOT NULL) THEN
85: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS4);

Line 85: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS4);

81: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS3);
82: END IF;
83:
84: IF(rtrim(l_party_rec.ADDRESS4) IS NOT NULL) THEN
85: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS4);
86: END IF;
87:
88: IF(rtrim(l_party_rec.street) IS NOT NULL) THEN
89: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.house_number || ' ' || l_party_rec.street || ' ' || l_party_rec.apartment_number;

Line 89: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.house_number || ' ' || l_party_rec.street || ' ' || l_party_rec.apartment_number;

85: l_address := l_address || fnd_global.local_chr(10) || rtrim(l_party_rec.ADDRESS4);
86: END IF;
87:
88: IF(rtrim(l_party_rec.street) IS NOT NULL) THEN
89: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.house_number || ' ' || l_party_rec.street || ' ' || l_party_rec.apartment_number;
90: END IF;
91: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.city || ' ' || l_party_rec.state || ' ' || l_party_rec.postal_code || ' ' || l_party_rec.country;
92: l_case_rec.party_address := l_address;
93: END LOOP;

Line 91: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.city || ' ' || l_party_rec.state || ' ' || l_party_rec.postal_code || ' ' || l_party_rec.country;

87:
88: IF(rtrim(l_party_rec.street) IS NOT NULL) THEN
89: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.house_number || ' ' || l_party_rec.street || ' ' || l_party_rec.apartment_number;
90: END IF;
91: l_address := l_address || fnd_global.local_chr(10) || l_party_rec.city || ' ' || l_party_rec.state || ' ' || l_party_rec.postal_code || ' ' || l_party_rec.country;
92: l_case_rec.party_address := l_address;
93: END LOOP;
94:
95: BEGIN