DBA Data[Home] [Help]

APPS.FND_USER_PKG dependencies on WF_ENGINE

Line 3113: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,

3109:
3110: if (funcmode = 'RUN') then
3111: FND_USER_PKG.UpdateUser(
3112: x_user_name=>
3113: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
3114: 'X_USER_NAME'),
3115: x_owner=>'CUST',
3116: x_unencrypted_password=>
3117: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,

Line 3117: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,

3113: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
3114: 'X_USER_NAME'),
3115: x_owner=>'CUST',
3116: x_unencrypted_password=>
3117: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
3118: 'X_UNENCRYPTED_PASSWORD',
3119: TRUE),
3120: x_password_date=>
3121: WF_ENGINE.GetActivityAttrDate(itemtype, itemkey, actid,

Line 3121: WF_ENGINE.GetActivityAttrDate(itemtype, itemkey, actid,

3117: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
3118: 'X_UNENCRYPTED_PASSWORD',
3119: TRUE),
3120: x_password_date=>
3121: WF_ENGINE.GetActivityAttrDate(itemtype, itemkey, actid,
3122: 'X_PASSWORD_DATE', TRUE),
3123: x_password_accesses_left=>
3124: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3125: 'X_PASSWORD_ACCESSES_LEFT',

Line 3124: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,

3120: x_password_date=>
3121: WF_ENGINE.GetActivityAttrDate(itemtype, itemkey, actid,
3122: 'X_PASSWORD_DATE', TRUE),
3123: x_password_accesses_left=>
3124: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3125: 'X_PASSWORD_ACCESSES_LEFT',
3126: TRUE),
3127: x_password_lifespan_accesses=>
3128: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,

Line 3128: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,

3124: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3125: 'X_PASSWORD_ACCESSES_LEFT',
3126: TRUE),
3127: x_password_lifespan_accesses=>
3128: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3129: 'X_PASSWORD_LIFESPAN_ACCESSES',
3130: TRUE),
3131: x_password_lifespan_days=>
3132: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,

Line 3132: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,

3128: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3129: 'X_PASSWORD_LIFESPAN_ACCESSES',
3130: TRUE),
3131: x_password_lifespan_days=>
3132: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3133: 'X_PASSWORD_LIFESPAN_DAYS',
3134: TRUE));
3135:
3136: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;

Line 3136: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;

3132: WF_ENGINE.GetActivityAttrNumber(itemtype, itemkey, actid,
3133: 'X_PASSWORD_LIFESPAN_DAYS',
3134: TRUE));
3135:
3136: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;
3137:
3138: else
3139: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;
3140:

Line 3139: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;

3135:
3136: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;
3137:
3138: else
3139: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;
3140:
3141: end if;
3142:
3143: exception