Posts

Showing posts from February, 2018

PS Logo : How to change the Logo inside Peoplesoft Application

Image
How to Change Logo inside PeopleSoft Application Default Oracle Logo is visible in top left corner in the PeopleSoft PIA, but if you want you can change the logo to something else. E.g Logo of your organization etc. You can change the logo by simply saving your customized image with the same name that is being referred online by the current PeopleSoft Stylesheet. There are different StyleSheets for PeopleSoft Application and each style sheet references a different logo image. This is controlled by ‘ BrandingBase ‘Application Class under  ‘PT_BRANDING’  App Package. Below are the details of style sheets with default image being referred? How To Change Logo inside PeopleSoft Application version 9 Open Application Designer and Save your new image as NEW_PS_LOGO Application Version 9.1 Open Application Designer and Save your new image as PT_ORACLELOGO_SWAN Application Version9.2 Open Application Designer and Save you new image as PT_OR

PC:Archive the files to some other folder

Below code is used to archive the files to some other folder. Local string &sarchive; Local string &sFileName, &sMove_File_Cmd, &sFileArchivePath, &sFileRefPath; &sarchive = "Archive"; &sarchive1 = "\\down1135.laccdd.com\PSShare$\GSCInternal\Abhinav\FA0009\Archive"; If FileExists(&sarchive, %FilePath_Absolute) Then   Else    CreateDirectory(&sarchive1, %FilePath_Absolute);   End-If; &sFilePath = LAC_WS_AET.FILE_PATH.Value; &sarchive = "\\down1135.laccdd.com\PSShare$\GSCInternal\Abhinav\FA0009\Archive"; &sMove_File_Cmd = "cmd /c move   " | &sFilePath | " " | &sarchive; &res1 = Exec(&sMove_File_Cmd, %Exec_Asynchronous + %FilePath_Absolute);