DBA Data[Home] [Help]

APPS.OE_DEFAULT_HEADER_PAYMENT dependencies on FND_API

Line 33: IF (p_x_Header_Payment_rec.payment_number = FND_API.G_MISS_NUM

29: END IF;
30:
31: l_operation := p_x_header_payment_rec.operation;
32:
33: IF (p_x_Header_Payment_rec.payment_number = FND_API.G_MISS_NUM
34: OR p_x_Header_Payment_rec.payment_number IS NULL)
35: AND l_operation = OE_GLOBALS.G_OPR_CREATE
36: THEN
37: p_x_Header_Payment_rec.payment_number

Line 79: NOT OE_GLOBALS.Equal(p_x_header_payment_rec.trxn_extension_id,FND_API.G_MISS_NUM)

75: --other products were passing the trxn extension id alone and the
76: --other credit card attributes were set as G_MISS values. When
77: --the call comes from OM, defaulting would need to happen.
78: IF p_x_header_payment_rec.trxn_extension_id IS NOT NULL AND
79: NOT OE_GLOBALS.Equal(p_x_header_payment_rec.trxn_extension_id,FND_API.G_MISS_NUM)
80: AND NOT OE_GLOBALS.G_UI_FLAG AND p_x_header_payment_rec.operation = OE_GLOBALS.G_OPR_CREATE
81: THEN
82: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_Card_number,FND_API.G_MISS_CHAR) THEN --bug 5020737
83: g_header_payment_rec.credit_card_number := null;

Line 82: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_Card_number,FND_API.G_MISS_CHAR) THEN --bug 5020737

78: IF p_x_header_payment_rec.trxn_extension_id IS NOT NULL AND
79: NOT OE_GLOBALS.Equal(p_x_header_payment_rec.trxn_extension_id,FND_API.G_MISS_NUM)
80: AND NOT OE_GLOBALS.G_UI_FLAG AND p_x_header_payment_rec.operation = OE_GLOBALS.G_OPR_CREATE
81: THEN
82: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_Card_number,FND_API.G_MISS_CHAR) THEN --bug 5020737
83: g_header_payment_rec.credit_card_number := null;
84: END IF;
85:
86: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_code,FND_API.G_MISS_CHAR) THEN --bug 5020737

Line 86: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_code,FND_API.G_MISS_CHAR) THEN --bug 5020737

82: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_Card_number,FND_API.G_MISS_CHAR) THEN --bug 5020737
83: g_header_payment_rec.credit_card_number := null;
84: END IF;
85:
86: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_code,FND_API.G_MISS_CHAR) THEN --bug 5020737
87: g_header_payment_rec.credit_card_code := null;
88: END IF;
89:
90: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_holder_name,FND_API.G_MISS_CHAR) THEN --bug 5020737

Line 90: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_holder_name,FND_API.G_MISS_CHAR) THEN --bug 5020737

86: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_code,FND_API.G_MISS_CHAR) THEN --bug 5020737
87: g_header_payment_rec.credit_card_code := null;
88: END IF;
89:
90: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_holder_name,FND_API.G_MISS_CHAR) THEN --bug 5020737
91: g_header_payment_rec.credit_card_holder_name := null;
92: END IF;
93:
94: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_expiration_date,FND_API.G_MISS_DATE) THEN --bug 5020737

Line 94: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_expiration_date,FND_API.G_MISS_DATE) THEN --bug 5020737

90: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_holder_name,FND_API.G_MISS_CHAR) THEN --bug 5020737
91: g_header_payment_rec.credit_card_holder_name := null;
92: END IF;
93:
94: IF OE_GLOBALS.Equal(g_header_payment_rec.credit_card_expiration_date,FND_API.G_MISS_DATE) THEN --bug 5020737
95: g_header_payment_rec.credit_card_expiration_date := null;
96: END IF;
97:
98: END IF;

Line 146: FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR

142: p_old_header_Payment_rec.defer_payment_processing_flag)
143: and p_x_header_Payment_rec.operation = OE_GLOBALS.G_OPR_UPDATE)
144: or
145: (nvl(p_x_header_Payment_rec.defer_payment_processing_flag,
146: FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR
147: and p_x_header_Payment_rec.operation = OE_GLOBALS.G_OPR_CREATE)
148: or
149: (nvl(p_old_header_Payment_rec.defer_payment_processing_flag,
150: FND_API.G_MISS_CHAR) <> FND_API.G_MISS_CHAR

Line 150: FND_API.G_MISS_CHAR) <> FND_API.G_MISS_CHAR

146: FND_API.G_MISS_CHAR) = FND_API.G_MISS_CHAR
147: and p_x_header_Payment_rec.operation = OE_GLOBALS.G_OPR_CREATE)
148: or
149: (nvl(p_old_header_Payment_rec.defer_payment_processing_flag,
150: FND_API.G_MISS_CHAR) <> FND_API.G_MISS_CHAR
151: and p_x_header_Payment_rec.operation = OE_GLOBALS.G_OPR_CREATE)
152: )
153: then
154:

Line 176: IF (p_x_Header_Payment_rec.lock_control = FND_API.G_MISS_NUM) THEN

172: End;
173:
174: /* end of code change for defer payment processing flag */
175:
176: IF (p_x_Header_Payment_rec.lock_control = FND_API.G_MISS_NUM) THEN
177: p_x_Header_Payment_rec.lock_control := NULL;
178: END IF;
179:
180: IF l_debug_level > 0 THEN

Line 186: WHEN FND_API.G_EXC_ERROR THEN

182: END IF;
183:
184: EXCEPTION
185:
186: WHEN FND_API.G_EXC_ERROR THEN
187:
188: RAISE FND_API.G_EXC_ERROR;
189:
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 188: RAISE FND_API.G_EXC_ERROR;

184: EXCEPTION
185:
186: WHEN FND_API.G_EXC_ERROR THEN
187:
188: RAISE FND_API.G_EXC_ERROR;
189:
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
191:
192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

186: WHEN FND_API.G_EXC_ERROR THEN
187:
188: RAISE FND_API.G_EXC_ERROR;
189:
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
191:
192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
193:
194: WHEN OTHERS THEN

Line 192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

188: RAISE FND_API.G_EXC_ERROR;
189:
190: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
191:
192: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
193:
194: WHEN OTHERS THEN
195:
196: IF OE_MSG_PUB.Check_Msg_Level(OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

Line 203: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

199: ( G_PKG_NAME
200: , 'Attributes'
201: );
202: END IF;
203: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
204:
205: END Attributes;
206:
207: FUNCTION Get_Payment_Number

Line 224: AND p_header_id <> FND_API.G_MISS_NUM THEN

220: oe_debug_pub.add( 'header_id is: '||p_header_id ) ;
221: END IF;
222:
223: IF p_header_id IS NOT NULL
224: AND p_header_id <> FND_API.G_MISS_NUM THEN
225: BEGIN
226: SELECT 'Y'
227: INTO l_exists_null_number
228: FROM oe_payments

Line 267: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

263: 'Get_Payment_Number'
264: );
265: END IF;
266:
267: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
268:
269: END Get_Payment_Number;
270:
271: END OE_Default_Header_Payment ;