DBA Data[Home] [Help]

APPS.PA_REPORT_WORKFLOW_CLIENT dependencies on FND_API

Line 116: x_return_status := FND_API.G_RET_STS_SUCCESS;

112:
113: -- define local variables you will need
114: begin
115:
116: x_return_status := FND_API.G_RET_STS_SUCCESS;
117:
118: -- set item attributes for the workflow process.
119: -- an example of setting of various item attributes are shown below
120: -- please note that certain item attributes must be set in order for the

Line 157: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

153: WHEN OTHERS THEN
154:
155: x_msg_count := 1;
156: x_msg_data := substr(SQLERRM,1,2000);
157: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
158:
159: end start_workflow;
160:
161: PROCEDURE set_report_approver(

Line 438: x_return_status := FND_API.G_RET_STS_SUCCESS;

434: language VARCHAR2(2000);
435: territory VARCHAR2(2000);
436: BEGIN
437:
438: x_return_status := FND_API.G_RET_STS_SUCCESS;
439:
440:
441: wf_engine.SetItemAttrNumber( p_item_type
442: , p_item_key

Line 822: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

818: WHEN OTHERS THEN
819:
820: x_msg_count := 1;
821: x_msg_data := substr(SQLERRM,1,2000);
822: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
823: RAISE;
824:
825: END start_workflow;
826: