DBA Data[Home] [Help]

APPS.GMF_ALLOCATIONDEFINITION_PUB dependencies on GMA_GLOBAL_GRP

Line 59: --| 1. Return value of GMA_GLOBAL_GRP.set_who has changed to -1 from 0 |

55: --| Also, fixed issues found during unit testing. Search for the bug |
56: --| number to find the fixes. |
57: --| 30/Oct/2002 R.Sharath Kumar Bug# 2641405 Added NOCOPY hint |
58: --| 21/NOV/2002 Uday Moogala Bug# 2681243 |
59: --| 1. Return value of GMA_GLOBAL_GRP.set_who has changed to -1 from 0 |
60: --| in case of invalid users. |
61: --| 2. Allocation method is always required. |
62: --| 3. Made g_miss_char to g_miss_num for fixed_percentage validation |
63: --| 4. Removed "when others" section in validate_input_params |

Line 782: GMA_GLOBAL_GRP.Get_who( p_user_name => p_allocation_definition_rec.user_name

778: END IF;
779:
780: IF (p_allocation_definition_rec.user_name <> FND_API.G_MISS_CHAR) AND
781: (p_allocation_definition_rec.user_name IS NOT NULL) THEN
782: GMA_GLOBAL_GRP.Get_who( p_user_name => p_allocation_definition_rec.user_name
783: , x_user_id => l_user_id
784: );
785: IF l_user_id = -1 THEN -- Bug 2681243: GMA changed return status value to -1.
786: add_header_to_error_stack(p_allocation_definition_rec); -- Bug 2659435

Line 1613: GMA_GLOBAL_GRP.Get_who( p_user_name => l_user_name

1609: END IF;
1610:
1611: IF (l_user_name <> FND_API.G_MISS_CHAR) AND
1612: (l_user_name IS NOT NULL) THEN
1613: GMA_GLOBAL_GRP.Get_who( p_user_name => l_user_name
1614: , x_user_id => l_user_id
1615: );
1616:
1617: IF l_user_id = -1 THEN -- Bug 2681243: GMA changed return status value to -1.