DBA Data[Home] [Help]

APPS.ZX_PARTY_TAX_PROFILE_PKG dependencies on ARP_UTIL_TAX

Line 185: arp_util_tax.debug('Error: "Offset Tax and Set for Self Assessment can not both be "Y" at the same time." for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE);

181: --Perform validations before inserting data
182: --AllowOffsetTax and SetforSelfAssessment flag would be mutually exclusive
183: IF P_SELF_ASSESS_FLAG = 'Y' AND P_ALLOW_OFFSET_TAX_FLAG = 'Y' THEN
184: X_RETURN_STATUS := FND_API.G_RET_STS_ERROR;
185: arp_util_tax.debug('Error: "Offset Tax and Set for Self Assessment can not both be "Y" at the same time." for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE);
186: END IF;
187: --when UseLeAsSubscriberFlag is set to 'Y', then setEffectiveFromUseLe as System date
188: IF P_USE_LE_AS_SUBSCRIBER_FLAG = 'Y' THEN
189: L_EFFECTIVE_FROM_USE_LE := SYSDATE;

Line 306: arp_util_tax.debug('Error: "The Ptp row has not been inserted for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');

302: FETCH ptp_cur INTO L_PARTY_TAX_PROFILE_ID;
303: IF (ptp_cur%notfound) then
304: --Set x_return_status param
305: X_RETURN_STATUS := FND_API.G_RET_STS_UNEXP_ERROR;
306: arp_util_tax.debug('Error: "The Ptp row has not been inserted for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');
307: END IF;
308: CLOSE ptp_cur;
309: END IF;
310: EXCEPTION

Line 315: arp_util_tax.debug('Error: "The Ptp row already exists for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');

311: --Index violation check
312: WHEN DUP_VAL_ON_INDEX THEN
313: --Set x_return_status param
314: X_RETURN_STATUS := FND_API.G_RET_STS_UNEXP_ERROR;
315: arp_util_tax.debug('Error: "The Ptp row already exists for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');
316: end INSERT_ROW;
317:
318:
319: procedure UPDATE_ROW (

Line 476: arp_util_tax.debug('Error: "Offset Tax and Set for Self Assessment can not both be "Y" at the same time." for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE);

472: --Perform validations before inserting data
473: --AllowOffsetTax and SetforSelfAssessment flag would be mutually exclusive
474: IF P_SELF_ASSESS_FLAG = 'Y' AND P_ALLOW_OFFSET_TAX_FLAG = 'Y' THEN
475: X_RETURN_STATUS := FND_API.G_RET_STS_ERROR;
476: arp_util_tax.debug('Error: "Offset Tax and Set for Self Assessment can not both be "Y" at the same time." for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE);
477: END IF;
478: --when UseLeAsSubscriberFlag is set to 'Y', then setEffectiveFromUseLe as System date
479: IF P_USE_LE_AS_SUBSCRIBER_FLAG = 'Y' THEN
480: L_EFFECTIVE_FROM_USE_LE := SYSDATE;

Line 540: arp_util_tax.debug('Error: "The Ptp row has not been updated for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');

536: where PARTY_TAX_PROFILE_ID = P_PARTY_TAX_PROFILE_ID;
537: if (sql%notfound) then
538: --Set x_return_status param
539: X_RETURN_STATUS := FND_API.G_RET_STS_UNEXP_ERROR;
540: arp_util_tax.debug('Error: "The Ptp row has not been updated for Party Id: ' || P_PARTY_ID || ' and Party Type: ' ||P_PARTY_TYPE_CODE || '."');
541: end if;--end sql%notfound
542: end if;--end X_RETURN_STATUS
543: end UPDATE_ROW;
544: