Friday, September 4, 2020

How to change header images using Macro Sets in PeopleSoft Fluid Home Page

 

 

1.      Macro Sets can be used  to apply custom look and feel to the Homepage

The delivered sample macro set is called PT_DEFAULT_MACROSET_855

 

2.      To create a new macro set that you can customize, select and copy a sample macro set— PT_DEFAULT_MACROSET_855.

3.      Click the Copy Macro Set button to create a custom Macro Set.


 


 

4.      Now we can open this Macro Set and make changes.

5.      For an easier way to examine and analyze the macros to determine which ones to modify, you can click the download to excel button on the grid to download the list of macros to an excel spreadsheet.

6.      Before making changes you can upload your custom images.

7.      Navigate to people Tools>Portal >Branding>  Branding Objects

 


 

8.      Now as an example we will modify the header  logo. In the custom macro set change the macro for header logo to the above image name.

 


 

 

9. Now that the changes to macro are done, we need to apply it. Here only one change was made but generally macro set is for changing the complete look and feel like the background, other header images like the Action List, Home etc.

To 10. To apply the changes,  create a custom theme by cloning the DEFAULT_THEME_FLUID and entering the following values in it.

Macro Set: NEW_MACROSET

Classic Components Theme Style Sheet: PT_BRAND_CLASSIC_TEMPLTE_FLUID

Fluid Components – Global Override Style Sheet: PT_BRAND_FLUID_TEMPLATE

 


 

   11. Now apply this new theme to Branding Options.

 



12.  Log out and log back in to see the changes to the logo

 



 

Cut Your Costs Using Scheduled Start-Stop For PeopleSoft Environments Using PeopleSoft Cloud Manager By Arvind Panicker

 https://blogs.oracle.com/peopletools/cut-costs-with-start-stop-on-oci

 

 

Tuesday, March 19, 2019

Open Port Command Linux7

Open firewall ports

Add Firewall rule to allow the port to accept packets:

# firewall-cmd --zone=public --add-port=55555/tcp --permanent
success

# firewall-cmd --reload
success

# iptables-save | grep 55555
-A IN_public_allow -p tcp -m tcp --dport 55555 -m conntrack --ctstate NEW -j ACCEPT

5. Check newly added port status

After adding the port for httpd and reloading httpd services, notice now httpd is also listening to newly added port 55555:

# lsof -i -P |grep http
httpd     6595   root    4u  IPv6  43709      0t0  TCP *:80 (LISTEN)
httpd     6595   root    6u  IPv6  43713      0t0  TCP *:55555 (LISTEN)

# netstat -na |grep 55555

You need to use the following commands:
# firewall-cmd --permanent --zone=public --add-service=samba
# firewall-cmd --reload


OR
# firewall-cmd --permanent --add-port=137/tcp
# firewall-cmd --permanent --add-port=138/tcp
# firewall-cmd --permanent --add-port=139/tcp
# firewall-cmd --permanent --add-port=445/tcp

service smb reload

2. Configure SELinux to allow SAMBA services
In case if you do not want to disable SELinux, you can review the SELinux policy allowing the SAMBA subsystem to run. To check the current SELinux policies, use the below commands.

# getsebool -a | grep samba
# getsebool -a | grep nmb

This should give a list of options and whether these are on or off. They should be on. The settings can be changed using the commands given below.
Syntax :

# setsebool -P [boolean] on

For example:

# setsebool -P bacula_use_samba on

# setenforce 0

Script to Copy PeopleSoft User Profile

This summary is not available. Please click here to view the post.

Tuesday, July 24, 2018

Hold PeopleSoft Scheduled Process

Script to execute post refresh step in PeopleSoft to hold scheduled process

update PSPRCSRQST set runstatus=4 where runstatus=5;
update PSPRCSQUE set runstatus=4 where runstatus=5;


To find the HWM and kill sessions

Action Plan : Example
============

Kill session

select owner,table_name,num_rows,blocks from dba_tables where table_name='PS_CA_BI_PC_TA14';

result 0 and blocks above xxxx then have issue

alter table sysadm.PS_CA_BI_PC_TA14 enable row movement;
alter table sysadm.PS_CA_BI_PC_TA14 shrink space;
alter table sysadm.PS_CA_BI_PC_TA14 DISABLE row movement;

alter index sysadm.PSVIZCA_BI_PC_TA14 rebuild online;
alter index sysadm.PS_CA_BI_PC_TA14 rebuild online;

exec DBMS_STATS.GATHER_TABLE_STATS (ownname=> 'SYSADM', tabname=>'PS_CA_BI_PC_TA14', estimate_percent=>100, method_opt=> 'FOR ALL COLUMNS SIZE 254', DEGREE=> 8, cascade=>TRUE);