DBA Data[Home] [Help]

APPS.FA_METHODS_PKG dependencies on FND_LANGUAGES

Line 951: from FND_LANGUAGES

947: where method_code = X_Method_Code
948: and life_in_months = X_Life_In_Months
949: and userenv('LANG') =
950: (select language_code
951: from FND_LANGUAGES
952: where installed_flag = 'B');
953: else
954: update FA_METHODS set
955: NAME = nvl(X_Name, Name),

Line 964: from FND_LANGUAGES

960: where method_code = X_Method_Code
961: and life_in_months is null
962: and userenv('LANG') =
963: (select language_code
964: from FND_LANGUAGES
965: where installed_flag = 'B');
966: end if;
967:
968: exception

Line 1020: from FND_LANGUAGES

1016: where method_code = X_Method_Code
1017: and life_in_months = X_Life_In_Months
1018: and userenv('LANG') =
1019: (select language_code
1020: from FND_LANGUAGES
1021: where installed_flag = 'B');
1022: else
1023:
1024: update FA_METHODS set

Line 1034: from FND_LANGUAGES

1030: where method_code = X_Method_Code
1031: and life_in_months is null
1032: and userenv('LANG') =
1033: (select language_code
1034: from FND_LANGUAGES
1035: where installed_flag = 'B');
1036: end if;
1037:
1038: end if;