DBA Data[Home] [Help]

APPS.WF_WS_GEN dependencies on FND_IREP_FUNCTION_FLAVORS

Line 1906: from fnd_irep_function_flavors

1902: ) is
1903:
1904: cursor c1(c_function_id in number) is
1905: select *
1906: from fnd_irep_function_flavors
1907: where function_id = c_function_id
1908: for update;
1909:
1910: cursor c_function_name(c_function_id in number) is

Line 1924: insert into FND_IREP_FUNCTION_FLAVORS

1920: fetch c1 into c1_rec;
1921:
1922: if c1%NOTFOUND then
1923:
1924: insert into FND_IREP_FUNCTION_FLAVORS
1925: (
1926: FUNCTION_ID,OVERLOAD_SEQ,
1927: SCOPE_TYPE,LIFECYCLE_MODE,DESCRIPTION,COMPATIBILITY_FLAG
1928: )

Line 1938: update fnd_irep_function_FLAVORS

1934:
1935:
1936: elsif c1%FOUND then
1937:
1938: update fnd_irep_function_FLAVORS
1939: set description = p_description,
1940: scope_type = p_scope_type
1941: where current of c1;
1942: end if;