-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSc15_0410.ppl
More file actions
28 lines (22 loc) · 1.17 KB
/
Copy pathSc15_0410.ppl
File metadata and controls
28 lines (22 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/************************************ EM PSU-8/15/2022 Using PeopleSoft Style Sheets ********************/
/* ------------ PeopleCode and the Style Property ------------ */
Local Field &field; /* Declare the object */
&field = GetField(); /* Instantiating the object */
If &field.Value = 1 Then;
&field.Style = "PSHYPERLINK";
End-If; /* Manipulate the object */
If &field.Value = 2 Then;
&field.Style = "PSIMAGE";
End-If
/************************************ EM PSU-8/17/2022 Using PeopleSoft Style Sheets ********************/
REM ============================================================
Part IV: Set the Page Field Style Property With PeopleCode
REM ============================================================;
local Field &field; /* Declare the object */
&field = GetField(); /* Instantiating the object */
If &field.Value = "Y" Then
&field.Style = 'EM_RED';
End-If; /* Manipulate the object */
If &field.Value = "N" Then
&field.Style ="EM_YELLOW";
End-If;