DBA Data[Home] [Help]

APPS.PSB_CREATE_BR_PVT dependencies on FND_MESSAGE

Line 350: Fnd_Message.Set_Name ('PSB', 'PSB_INVALID_ARGUMENT') ;

346: END IF;
347: --
348: ELSE
349: --
350: Fnd_Message.Set_Name ('PSB', 'PSB_INVALID_ARGUMENT') ;
351: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;
352: FND_MSG_PUB.Add;
353: RAISE FND_API.G_EXC_ERROR ;
354: --

Line 351: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;

347: --
348: ELSE
349: --
350: Fnd_Message.Set_Name ('PSB', 'PSB_INVALID_ARGUMENT') ;
351: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;
352: FND_MSG_PUB.Add;
353: RAISE FND_API.G_EXC_ERROR ;
354: --
355: END IF ;

Line 489: Fnd_Message.Set_Name ('PSB','PSB_INVALID_BUDGET_REVISION_ID') ;

485: FETCH l_budget_revisions_csr INTO l_br_row_type;
486:
487: IF ( l_budget_revisions_csr%NOTFOUND ) THEN
488: --
489: Fnd_Message.Set_Name ('PSB','PSB_INVALID_BUDGET_REVISION_ID') ;
490: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;
491: FND_MSG_PUB.Add;
492: RAISE FND_API.G_EXC_ERROR ;
493: END IF ;

Line 490: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;

486:
487: IF ( l_budget_revisions_csr%NOTFOUND ) THEN
488: --
489: Fnd_Message.Set_Name ('PSB','PSB_INVALID_BUDGET_REVISION_ID') ;
490: Fnd_Message.Set_Token('ROUTINE', l_api_name ) ;
491: FND_MSG_PUB.Add;
492: RAISE FND_API.G_EXC_ERROR ;
493: END IF ;
494:

Line 509: Fnd_Message.Set_Name ( 'PSB', 'PSB_BUDGET_REVISION_INFO') ;

505:
506: --
507: -- Get translated messages for the new budget revision.
508: --
509: Fnd_Message.Set_Name ( 'PSB', 'PSB_BUDGET_REVISION_INFO') ;
510: Fnd_Message.Set_Token( 'BUDGET_REVISION_ID', p_budget_revision_id ) ;
511: Fnd_Message.Set_Token( 'BUDGET_GROUP_NAME', l_main_budget_group_name ) ;
512: l_revision_justification := Fnd_Message.Get ;
513:

Line 510: Fnd_Message.Set_Token( 'BUDGET_REVISION_ID', p_budget_revision_id ) ;

506: --
507: -- Get translated messages for the new budget revision.
508: --
509: Fnd_Message.Set_Name ( 'PSB', 'PSB_BUDGET_REVISION_INFO') ;
510: Fnd_Message.Set_Token( 'BUDGET_REVISION_ID', p_budget_revision_id ) ;
511: Fnd_Message.Set_Token( 'BUDGET_GROUP_NAME', l_main_budget_group_name ) ;
512: l_revision_justification := Fnd_Message.Get ;
513:
514: --

Line 511: Fnd_Message.Set_Token( 'BUDGET_GROUP_NAME', l_main_budget_group_name ) ;

507: -- Get translated messages for the new budget revision.
508: --
509: Fnd_Message.Set_Name ( 'PSB', 'PSB_BUDGET_REVISION_INFO') ;
510: Fnd_Message.Set_Token( 'BUDGET_REVISION_ID', p_budget_revision_id ) ;
511: Fnd_Message.Set_Token( 'BUDGET_GROUP_NAME', l_main_budget_group_name ) ;
512: l_revision_justification := Fnd_Message.Get ;
513:
514: --
515: -- Find global budget revision related information,

Line 512: l_revision_justification := Fnd_Message.Get ;

508: --
509: Fnd_Message.Set_Name ( 'PSB', 'PSB_BUDGET_REVISION_INFO') ;
510: Fnd_Message.Set_Token( 'BUDGET_REVISION_ID', p_budget_revision_id ) ;
511: Fnd_Message.Set_Token( 'BUDGET_GROUP_NAME', l_main_budget_group_name ) ;
512: l_revision_justification := Fnd_Message.Get ;
513:
514: --
515: -- Find global budget revision related information,
516: -- use by Create_Budget_Revision API.

Line 876: Fnd_Message.Set_Name('PSB','PSB_CANNOT_UNFREEZE_REVISION') ;

872: WHERE budget_revision_id = l_parent_budget_revision_id;
873:
874: IF l_parent_freeze_flag = 'Y' THEN
875:
876: Fnd_Message.Set_Name('PSB','PSB_CANNOT_UNFREEZE_REVISION') ;
877: FND_MSG_PUB.Add;
878: RAISE FND_API.G_EXC_ERROR ;
879:
880: END IF ;