DBA Data[Home] [Help]

APPS.XNB_CMN_PVT dependencies on FND_API

Line 68: resultout := FND_API.G_TRUE;

64:
65: XNB_DEBUG.log('check_acct_update_publish',l_num);
66:
67: IF l_num = 1 THEN
68: resultout := FND_API.G_TRUE;
69: END IF;
70:
71: IF l_num = 2 THEN
72: resultout := FND_API.G_FALSE;

Line 72: resultout := FND_API.G_FALSE;

68: resultout := FND_API.G_TRUE;
69: END IF;
70:
71: IF l_num = 2 THEN
72: resultout := FND_API.G_FALSE;
73: END IF;
74:
75:
76: END IF;

Line 213: resultout := FND_API.G_FALSE;

209:
210: l_num := xnb_util_pvt.check_collaboration_doc_status (l_doc_no, l_transaction_type, l_transaction_subtype);
211:
212: IF l_num = 2 THEN
213: resultout := FND_API.G_FALSE;
214: RETURN ;
215: ELSE
216:
217: ---------------------------------------------------------------------------------------

Line 235: resultout := FND_API.G_TRUE;

231: itemtype,
232: itemkey,
233: 'LAST_UPDATE_DATE',
234: sysdate);
235: resultout := FND_API.G_TRUE;
236: RETURN ;
237: END IF; */
238:
239:

Line 621: resultout := FND_API.G_FALSE;

617:
618: l_num := xnb_util_pvt.check_collaboration_doc_status (l_doc_no, 'XNB_ACCOUNT');
619:
620: IF l_num = 2 THEN
621: resultout := FND_API.G_FALSE;
622: RETURN ;
623: ELSE
624: ---------------------------------------------------------------------------------------
625: --Update the MESSAGE_TEXT to reflect the Update of Collaboration

Line 642: resultout := FND_API.G_TRUE;

638: itemtype,
639: itemkey,
640: 'LAST_UPDATE_DATE',
641: SYSDATE);
642: resultout := FND_API.G_TRUE;
643: RETURN ;
644: END IF;
645:
646: EXCEPTION

Line 822: resultout := FND_API.G_FALSE;

818:
819: /* l_num := xnb_util_pvt.check_collaboration_doc_status (l_doc_no, l_transaction_type, l_transaction_subtype);
820:
821: IF l_num = 2 THEN
822: resultout := FND_API.G_FALSE;
823: RETURN ;
824: ELSE
825: ---------------------------------------------------------------------------------------
826: --Collaboration Already Exists..

Line 829: resultout := FND_API.G_TRUE;

825: ---------------------------------------------------------------------------------------
826: --Collaboration Already Exists..
827: --
828: ---------------------------------------------------------------------------------------
829: resultout := FND_API.G_TRUE;
830: RETURN;
831: END IF;*/
832:
833: EXCEPTION

Line 938: resultout := FND_API.G_TRUE;

934: 'ECX_SEND_MODE',
935: 'SYNCH');
936:
937: --return Workflow lookup value TRUE to indicate success
938: resultout := FND_API.G_TRUE;
939:
940: EXCEPTION
941: WHEN OTHERS THEN
942: --return Workflow lookup value FALSE to indicate failure

Line 943: resultout := FND_API.G_FALSE;

939:
940: EXCEPTION
941: WHEN OTHERS THEN
942: --return Workflow lookup value FALSE to indicate failure
943: resultout := FND_API.G_FALSE;
944: --End of Procedure
945: END set_owner_attributes;
946:
947: -----------------------------------------------------------------------------------------------------------

Line 985: resultout := FND_API.G_TRUE;

981: AND msib.inventory_item_id = cii.inventory_item_id
982: AND msib.organization_id = cii.inv_master_organization_id;
983:
984: IF (l_invoiceable_flag = 'N' ) THEN --Item is non-invoicable(provisionable)
985: resultout := FND_API.G_TRUE;
986: ELSE /* N */ --Item is not Provisionable
987: resultout := FND_API.G_FALSE;
988: END IF;
989: --End of Procedure

Line 987: resultout := FND_API.G_FALSE;

983:
984: IF (l_invoiceable_flag = 'N' ) THEN --Item is non-invoicable(provisionable)
985: resultout := FND_API.G_TRUE;
986: ELSE /* N */ --Item is not Provisionable
987: resultout := FND_API.G_FALSE;
988: END IF;
989: --End of Procedure
990: END check_item_provisionable;
991:

Line 1111: resultout := FND_API.G_FALSE;

1107: itemkey,
1108: 'REFERENCE_ID',
1109: l_app_ref_id);
1110:
1111: resultout := FND_API.G_FALSE;
1112: ELSE /* 0 or 1 */ --Published success.
1113: resultout := FND_API.G_TRUE;
1114: END IF;
1115: --End of Function

Line 1113: resultout := FND_API.G_TRUE;

1109: l_app_ref_id);
1110:
1111: resultout := FND_API.G_FALSE;
1112: ELSE /* 0 or 1 */ --Published success.
1113: resultout := FND_API.G_TRUE;
1114: END IF;
1115: --End of Function
1116: END check_account_published;
1117:

Line 1123: --Returns status through result_out: FND_API.G_TRUE if exists, FND_API.G_FALSE if it does not exist.

1119: ---------------------------------------------------------------------------------------------------
1120: --This procedure checks to see if a collaboration exists for this instance for OWNER CHANGE
1121: --Calls the util procedure 'validate_document'
1122: --Arguments: Standard workflow function args.
1123: --Returns status through result_out: FND_API.G_TRUE if exists, FND_API.G_FALSE if it does not exist.
1124: ---------------------------------------------------------------------------------------------------
1125: PROCEDURE check_owner_change_cln(
1126: itemtype IN VARCHAR2,
1127: itemkey IN VARCHAR2,

Line 1157: resultout := FND_API.G_FALSE;

1153: 'XNB_OWNER');
1154:
1155:
1156: IF (l_ret = 2 OR l_ret = -1) THEN --If it was not found / or there was an error
1157: resultout := FND_API.G_FALSE;
1158: ELSE /* 0 or 1 */ --Published success / Published failure
1159: resultout := FND_API.G_TRUE;
1160: END IF;
1161: --Exceptions left unhandled

Line 1159: resultout := FND_API.G_TRUE;

1155:
1156: IF (l_ret = 2 OR l_ret = -1) THEN --If it was not found / or there was an error
1157: resultout := FND_API.G_FALSE;
1158: ELSE /* 0 or 1 */ --Published success / Published failure
1159: resultout := FND_API.G_TRUE;
1160: END IF;
1161: --Exceptions left unhandled
1162: --End of Procedure
1163: END check_owner_change_cln;