The following query will give the values of some important parameters to be considered post clone.
SELECT e.profile_option_name Profile, e.profile_option_id,
f.user_profile_option_name User_Profile_Name, c.application_short_name,
decode(a.level_id,10001,'Site',10002,'Application',10003,'Resp',10004,'User') LevelSet_At,
decode(a.level_id,10001,'Site',10002,c.application_short_name,
10003,b.responsibility_name,10004,d.user_name) LValue,
nvl(a.profile_option_value,'Is Null') Value
FROM fnd_profile_option_values a, fnd_responsibility_tl b,
fnd_application c, fnd_user d, fnd_profile_options e, fnd_profile_options_vl f
WHERE f.user_profile_option_name in (
'WF: Workflow Mailer Framework Web Agent',
'IBY: No Proxy Domain',
'IBY: XML Publisher Delivery Manager Configuration File',
'IBY: ECAPP URL',
'ICX: Oracle Payment Server URL',
'BNE Server Log Path',
'BNE UIX Physical Directory',
'BNE Upload Import Directory',
'BNE Upload Staging Directory',
'BNE Upload Text Directory',
'Site Name',
'Application SSO LDAP Synchronization',
'Applications SSO Auto Link User',
'Applications SSO Enable OID Identity Add Event',
'Applications SSO Login Types',
'Applications SSO User Creation and Updation Allowed',
'Local Login Mask')
AND e.profile_option_id = a.profile_option_id
AND e.profile_option_id = f.profile_option_id
AND a.level_value = b.responsibility_id (+)
AND a.level_value = c.application_id (+)
AND a.level_value = d.user_id (+) and a.level_id=10001
ORDER BY 1,2;