Posts

Showing posts from 2023

How to change Apps Password in R12.1

  /* CHANGE APPLICATION USER PASSWORD USING FNDCPASS*/ FNDCPASS apps/APPS_PASSWORD 0 Y system/SYSTEM_PASSWORD USER USER_WHOSE_PASSWORD_WILL_BE_CHANGED NEWPASSWORD Example: FNDCPASS apps/apps 0 Y system/manager USER SYSADMIN sysadmin /* CHANGE "APPS" USER PASSWORD USING FNDCPASS in "R11"*/   FNDCPASS apps/apps 0 Y system/SYSTEM_PASSWORD SYSTEM APPLSYS NEWPASSWORD Note: Changing apps password will also change applsys password. apps and applsys passwords are always the same.. /* CHANGE "APPS" USER PASSWORD USING FNDCPASS in "R12"*/ FNDCPASS apps/APPS_PASSWORD 0 Y system/SYSTEM_PASSWORD SYSTEM APPLSYS NEW_PASSWORD

Form Migration R12

FORM Compilation UAT to PROD à Copy the given FMB file from UAT to PROD. Goto à AU_TOP/forms /d03/UATAPPL/apps/apps_st/appl/au/12.0.0/forms/US à Uat form location. Copy the .fmb file to PROD. Now à goto PROD. Form location à Cd /ProdApp/oracle/PROD/apps/apps_st/appl/au/12.0.0/forms/US From root Change the ownership and permission to .fmb file. Chmod –R 777 .fmb Chown –R applprod:dba Su – applprod Now run the form compilation command from AU_TOP/forms Location only In PROD frmcmp_batch userid=apps/oracledba1 module=XXLTCEL_IOT.fmb output_file=$XXLTK_TOP/forms/US/XXLTCEL_IOT.fmx module_type=form batch=no compile_all=yes IN UAT frmcmp_batch userid=apps/apps module=XXLTK_ORDER_SHIP_BILL_DETAILS.fmb output_file=$XXLTK_TOP/forms/US/XXLTK_ORDER_SHIP_BILL_DETAILS.fmx module_type=form batch=no compile_all=yes .Pll file compilation: à [appldev@ltk1 resource]$ ls -ltr JAINTPTY.pll - rwxr-xr-x. 1 appldev dba 147456 Jun 15 08:06 JAINTPTY.pll [applde...

How to Change WebLogic Password in R12.2

Image
 Changing Weblogic Password in R12.2 Environment.  *Login to primary application Node.  goto cd $FND_TOP/patch/115/bin and run below command. [applmgr@sreeniapps bin]$ perl txkUpdateEBSDomain.pl action=updateAdminPassword Program: txkUpdateEBSDomain.pl started at Thu May  4 21:52:00 2023 AdminServer will be re started after changing WebLogic Admin Password All Mid Tier services should be SHUTDOWN before changing WebLogic Admin Password Confirm if all Mid Tier services are in SHUTDOWN state. Enter "Yes" to proceed or anything else to exit: yes Enter the full path of Applications Context File [DEFAULT - /u01/oracle/VIS/fs2/inst/apps/VIS_valiapps/appl/admin/VIS_valiapps.xml]: Enter the WLS Admin Password: Enter the new WLS Admin Password: Enter the APPS user password: Executing: /u01/oracle/VIS/fs2/FMW_Home/webtier/perl/bin/perl /u01/oracle/VIS/fs2/EBSapps/appl/ad/12.0.0/patch/115/bin/adProvisionEBS.pl  ebs-get-serverstatus -contextfile=/u01/oracle/VIS/fs2/inst/app...