-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
1062 lines (856 loc) · 299 KB
/
index3.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0044)https://ricmars.github.io/democs/index4.html -->
<html lang="en-US" class="wk chrome yui-skin-sam"><script type="text/javascript" src="chrome-extension://mdnleldcmiljblolnjhpnblkcekpdkpa/libs/customElements.js" class="__REQUESTLY__SCRIPT"></script><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="initial-scale=1, width=device-width"> <!--Added 'user-scalable=no' to disable zoom in/out in HC/PIMC app mobile browser --> <title>Test Name</title> <link rel="icon" type="image/png" sizes="32x32" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/images/pzpegaicon32_13852824416.png!!.png"> <link rel="icon" type="image/png" sizes="16x16" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/images/pzpegaicon16_12739199918.png!!.png"> <link rel="shortcut icon" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/images/pzPegaIcon.ico"> <link rel="stylesheet" type="text/css" href="./index3_files/pzjquery-ui_12524318908.css!pega_yui_styles_min_12855405641!!.css"> <link rel="stylesheet" type="text/css" href="./index3_files/pzpega-ui-components-panels_1858653813.css!pzpega-ui-components-highlight_14118974835.css!pzjstree_14050285348.css!pzpega-ui-components-tree_11927022269.css!pzpega-ui-live-data_13859778947..css"> <link rel="stylesheet" type="text/css" href="./index3_files/pzpega-ui-inspector-style-bundle_13634959346!pzedit_config_style_12078366619.css!!.css"> <link rel="stylesheet" type="text/css" href="./index3_files/pzpega-ui-automation-style-bundle_11909851830!!.css"> <link rel="stylesheet" type="text/css" href="./index3_files/pz_pega_survey_styles_11580864853.css!!.css"> <link rel="stylesheet" type="text/css" href="./index3_files/pzharnessv2_cpminteractionportal1cac12e3763654c8e7693d2ac8803dd6_full_1830924375.css!!.css"> <link rel="stylesheet" type="text/css" href="./index3_files/pz_pega_survey_styles_11580864853.css!!.css"> <script> /* US-250729 : Removing the skeleton in failure cases, later can be moved to desktop exception handling */ window.onerror = function() { var harnessSkeletonWrapper = document.getElementById("#harness_skeleton_wrapper"); if (harnessSkeletonWrapper) { harnessSkeletonWrapper.remove(); console.info("Removing harness skeleton wrapper"); } }; </script><script type="text/javascript" class="__REQUESTLY__SCRIPT">((namespace) => {
const RuleSourceKey = {
URL: "Url",
HOST: "host",
PATH: "path",
};
const RuleSourceOperator = {
EQUALS: "Equals",
CONTAINS: "Contains",
MATCHES: "Matches",
WILDCARD_MATCHES: "Wildcard_Matches",
};
const toRegex = (regexStr) => {
const matchRegExp = regexStr.match(new RegExp("^/(.+)/(|i|g|ig|gi)$"));
if (!matchRegExp) {
return null;
}
try {
return new RegExp(matchRegExp[1], matchRegExp[2]);
} catch {
return null;
}
};
const checkRegexMatch = (regexString, inputString) => {
if (!regexString.startsWith("/")) {
regexString = `/${regexString}/`; // Keeping enclosing slashes for regex as optional
}
const regex = toRegex(regexString);
return regex?.test(inputString);
};
const checkWildCardMatch = (wildCardString, inputString) => {
const regexString = "/^" + wildCardString.replaceAll("*", ".*") + "$/";
return checkRegexMatch(regexString, inputString);
};
const extractUrlComponent = (url, key) => {
const urlObj = new URL(url);
switch (key) {
case RuleSourceKey.URL:
return url;
case RuleSourceKey.HOST:
return urlObj.host;
case RuleSourceKey.PATH:
return urlObj.pathname;
}
};
window[namespace] = window[namespace] || {};
window[namespace].matchSourceUrl = (sourceObject, url) => {
const urlComponent = extractUrlComponent(url, sourceObject.key);
const value = sourceObject.value;
if (!urlComponent) {
return false;
}
switch (sourceObject.operator) {
case RuleSourceOperator.EQUALS:
if (value === urlComponent) {
return true;
}
break;
case RuleSourceOperator.CONTAINS:
if (urlComponent.indexOf(value) !== -1) {
return true;
}
break;
case RuleSourceOperator.MATCHES: {
return checkRegexMatch(value, urlComponent);
}
case RuleSourceOperator.WILDCARD_MATCHES: {
return checkWildCardMatch(value, urlComponent);
}
}
return false;
};
})('__REQUESTLY__')</script><script type="text/javascript" class="__REQUESTLY__SCRIPT">(function (namespace) {
window[namespace] = window[namespace] || {};
window[namespace].requestRules = [];
window[namespace].responseRules = [];
let isDebugMode = false;
// Some frames are sandboxes and throw DOMException when accessing localStorage
try {
isDebugMode = window && window.localStorage && localStorage.isDebugMode;
} catch (e) {}
const isExtensionEnabled = () => {
return window[namespace].isExtensionEnabled ?? true;
};
const getAbsoluteUrl = (url) => {
const dummyLink = document.createElement("a");
dummyLink.href = url;
return dummyLink.href;
};
const isNonJsonObject = (obj) => {
return [
Blob,
ArrayBuffer,
Object.getPrototypeOf(Uint8Array), // TypedArray instance type
DataView,
FormData,
URLSearchParams,
].some((nonJsonType) => obj instanceof nonJsonType);
};
/**
* @param {Object} json
* @param {String} path -> "a", "a.b", "a.0.b (If a is an array containing list of objects"
* Also copied in shared/utils.js for the sake of testing
*/
const traverseJsonByPath = (jsonObject, path) => {
if (!path) return;
const pathParts = path.split(".");
try {
// Reach the last node but not the leaf node.
for (i = 0; i < pathParts.length - 1; i++) {
jsonObject = jsonObject[pathParts[i]];
}
return jsonObject[pathParts[pathParts.length - 1]];
} catch (e) {
/* Do nothing */
}
};
const matchesSourceFilters = ({ requestData, method }, sourceFilters) => {
const sourceFiltersArray = Array.isArray(sourceFilters) ? sourceFilters : [sourceFilters];
return (
!sourceFiltersArray.length ||
sourceFiltersArray.some((sourceFilter) => {
if (sourceFilter?.requestMethod?.length && !sourceFilter.requestMethod.includes(method)) {
return false;
}
let requestPayloadFilter = sourceFilter?.requestPayload;
if (!requestPayloadFilter) return true;
if (typeof requestPayloadFilter === "object" && Object.keys(requestPayloadFilter).length === 0) return true;
// We only allow request payload targeting when requestData is JSON
if (!requestData || typeof requestData !== "object") return false;
if (Object.keys(requestData).length === 0) return false;
requestPayloadFilter = requestPayloadFilter || {};
const targetedKey = requestPayloadFilter?.key;
const targetedValue = requestPayloadFilter?.value;
// tagetedKey is the json path e.g. a.b.0.c
if (targetedKey && typeof targetedValue !== undefined) {
const valueInRequestData = traverseJsonByPath(requestData, targetedKey);
const operator = requestPayloadFilter?.operator;
if (!operator || operator === "Equals") {
return valueInRequestData === targetedValue;
}
if (operator === "Contains") {
return valueInRequestData.includes(targetedValue);
}
}
return false;
})
);
};
const matchRuleSource = ({ url, requestData, method }, rule) => {
const modification = rule.pairs[0];
const ruleSource = modification.source;
return (
window[namespace].matchSourceUrl(ruleSource, url) &&
matchesSourceFilters({ requestData, method }, ruleSource?.filters)
);
};
const getRequestRule = (url) => {
if (!isExtensionEnabled()) {
return null;
}
return window[namespace].requestRules.findLast((rule) =>
window[namespace].matchSourceUrl(rule.pairs[0].source, url)
);
};
const getResponseRule = ({ url, requestData, method }) => {
if (!isExtensionEnabled()) {
return null;
}
return window[namespace].responseRules.findLast((rule) => {
return matchRuleSource({ url, requestData, method }, rule);
});
};
const shouldServeResponseWithoutRequest = (responseRule) => {
const responseModification = responseRule.pairs[0].response;
return responseModification.type === "static" && responseModification.serveWithoutRequest;
};
const getFunctionFromCode = (code) => {
return new Function("args", `return (${code})(args);`);
};
const getCustomRequestBody = (requestRule, args) => {
const modification = requestRule.pairs[0].request;
if (modification.type === "static") {
requestBody = modification.value;
} else {
requestBody = getFunctionFromCode(modification.value)(args);
}
if (typeof requestBody !== "object" || isNonJsonObject(requestBody)) {
return requestBody;
}
return JSON.stringify(requestBody);
};
/**
* @param mightBeJSONString string which might be JSON String or normal String
* @param doStrictCheck should return empty JSON if invalid JSON string
*/
const jsonifyValidJSONString = (mightBeJSONString, doStrictCheck) => {
const defaultValue = doStrictCheck ? {} : mightBeJSONString;
if (typeof mightBeJSONString !== "string") {
return defaultValue;
}
try {
return JSON.parse(mightBeJSONString);
} catch (e) {
/* Do Nothing. Unable to parse the param value */
}
return defaultValue;
};
const isJSON = (data) => {
const parsedJson = jsonifyValidJSONString(data);
return parsedJson !== data; // if data is not a JSON, jsonifyValidJSONString() returns same value
};
const notifyRequestRuleApplied = (message) => {
window.postMessage(
{
from: "requestly",
type: "request_rule_applied",
id: message.ruleDetails.id,
requestDetails: message["requestDetails"],
},
window.location.href
);
};
const notifyResponseRuleApplied = (message) => {
window.postMessage(
{
from: "requestly",
type: "response_rule_applied",
id: message.rule.id,
requestDetails: message["requestDetails"],
},
window.location.href
);
};
const isPromise = (obj) =>
!!obj && (typeof obj === "object" || typeof obj === "function") && typeof obj.then === "function";
const isContentTypeJSON = (contentType) => !!contentType?.includes("application/json");
// Intercept XMLHttpRequest
const onReadyStateChange = async function () {
if (this.readyState === this.HEADERS_RECEIVED || this.readyState === this.DONE) {
if (!this.responseRule) {
return;
}
const responseModification = this.responseRule.pairs[0].response;
const responseType = this.responseType;
const contentType = this.getResponseHeader("content-type");
isDebugMode &&
console.log("RQ", "Inside the XHR onReadyStateChange block for url", {
url: this.requestURL,
xhr: this,
});
if (this.readyState === this.HEADERS_RECEIVED) {
// For network failures, responseStatus=0 but we still return customResponse with status=200
const responseStatus = parseInt(responseModification.statusCode || this.status) || 200;
const responseStatusText = responseModification.statusText || this.statusText;
Object.defineProperty(this, "status", {
get: () => responseStatus,
});
Object.defineProperty(this, "statusText", {
get: () => responseStatusText,
});
}
if (this.readyState === this.DONE) {
let customResponse =
responseModification.type === "code"
? getFunctionFromCode(responseModification.value)({
method: this.method,
url: this.requestURL,
requestHeaders: this.requestHeaders,
requestData: jsonifyValidJSONString(this.requestData),
responseType: contentType,
response: this.response,
responseJSON: jsonifyValidJSONString(this.response, true),
})
: responseModification.value;
// Convert customResponse back to rawText
// response.value is String and evaluator method might return string/object
if (isPromise(customResponse)) {
customResponse = await customResponse;
}
const isUnsupportedResponseType = responseType && !["json", "text"].includes(responseType);
// We do not support statically modifying responses of type - blob, arraybuffer, document etc.
if (responseModification.type === "static" && isUnsupportedResponseType) {
customResponse = this.response;
}
if (
!isUnsupportedResponseType &&
typeof customResponse === "object" &&
!(customResponse instanceof Blob) &&
(responseType === "json" || isContentTypeJSON(contentType))
) {
customResponse = JSON.stringify(customResponse);
}
Object.defineProperty(this, "response", {
get: function () {
if (responseModification.type === "static" && responseType === "json") {
if (typeof customResponse === "object") {
return customResponse;
}
return jsonifyValidJSONString(customResponse);
}
return customResponse;
},
});
if (responseType === "" || responseType === "text") {
Object.defineProperty(this, "responseText", {
get: function () {
return customResponse;
},
});
}
const requestDetails = {
url: this.requestURL,
method: this.method,
type: "xmlhttprequest",
timeStamp: Date.now(),
};
notifyResponseRuleApplied({
rule: this.responseRule,
requestDetails,
});
}
}
};
const resolveXHR = (xhr, responseData) => {
Object.defineProperty(xhr, "readyState", { writable: true });
const updateReadyState = (readyState) => {
xhr.readyState = readyState;
xhr.dispatchEvent(new CustomEvent("readystatechange"));
};
const dispatchProgressEvent = (type) => {
xhr.dispatchEvent(new ProgressEvent(type));
};
dispatchProgressEvent("loadstart");
// update response headers
const contentType = isJSON(responseData) ? "application/json" : "text/plain";
xhr.getResponseHeader = (key) => {
if (key.toLowerCase() === "content-type") {
return contentType;
}
return null;
};
updateReadyState(xhr.HEADERS_RECEIVED);
// mark resolved
updateReadyState(xhr.DONE);
dispatchProgressEvent("load");
dispatchProgressEvent("loadend");
};
const XHR = XMLHttpRequest;
XMLHttpRequest = function () {
const xhr = new XHR();
xhr.addEventListener("readystatechange", onReadyStateChange.bind(xhr), false);
return xhr;
};
XMLHttpRequest.prototype = XHR.prototype;
Object.entries(XHR).map(([key, val]) => {
XMLHttpRequest[key] = val;
});
const open = XMLHttpRequest.prototype.open;
XMLHttpRequest.prototype.open = function (method, url) {
this.method = method;
this.requestURL = getAbsoluteUrl(url);
open.apply(this, arguments);
};
const send = XMLHttpRequest.prototype.send;
XMLHttpRequest.prototype.send = function (data) {
this.requestData = data;
const requestRule = getRequestRule(this.requestURL);
if (requestRule) {
this.requestData = getCustomRequestBody(requestRule, {
method: this.method,
url: this.requestURL,
body: data,
bodyAsJson: jsonifyValidJSONString(data, true),
});
notifyRequestRuleApplied({
ruleDetails: requestRule,
requestDetails: {
url: this.requestURL,
method: this.method,
type: "xmlhttprequest",
timeStamp: Date.now(),
},
});
}
this.responseRule = getResponseRule({
url: this.requestURL,
requestData: jsonifyValidJSONString(this.requestData),
method: this.method,
});
if (this.responseRule && shouldServeResponseWithoutRequest(this.responseRule)) {
resolveXHR(this, this.responseRule.pairs[0].response.value);
} else {
send.call(this, this.requestData);
}
};
let setRequestHeader = XMLHttpRequest.prototype.setRequestHeader;
XMLHttpRequest.prototype.setRequestHeader = function (header, value) {
this.requestHeaders = this.requestHeaders || {};
this.requestHeaders[header] = value;
setRequestHeader.apply(this, arguments);
};
// Intercept fetch API
const _fetch = fetch;
fetch = async (...args) => {
const [resource, initOptions = {}] = args;
const getOriginalResponse = () => _fetch(...args);
let request;
if (resource instanceof Request) {
request = resource.clone();
} else {
request = new Request(resource.toString(), initOptions);
}
const url = getAbsoluteUrl(request.url);
const method = request.method;
// Request body can be sent only for request methods other than GET and HEAD.
const canRequestBodyBeSent = !["GET", "HEAD"].includes(method);
const requestRule = canRequestBodyBeSent && getRequestRule(url);
if (requestRule) {
const originalRequestBody = await request.text();
const requestBody =
getCustomRequestBody(requestRule, {
method: request.method,
url,
body: originalRequestBody,
bodyAsJson: jsonifyValidJSONString(originalRequestBody, true),
}) || {};
request = new Request(request.url, {
method,
body: requestBody,
headers: request.headers,
referrer: request.referrer,
referrerPolicy: request.referrerPolicy,
mode: request.mode,
credentials: request.credentials,
cache: request.cache,
redirect: request.redirect,
integrity: request.integrity,
});
notifyRequestRuleApplied({
ruleDetails: requestRule,
requestDetails: {
url,
method: request.method,
type: "fetch",
timeStamp: Date.now(),
},
});
}
let requestData;
if (canRequestBodyBeSent) {
requestData = jsonifyValidJSONString(await request.clone().text()); // cloning because the request will be used to make API call
}
const responseRule = getResponseRule({ url, requestData, method });
let responseHeaders;
let fetchedResponse;
if (responseRule && shouldServeResponseWithoutRequest(responseRule)) {
const contentType = isJSON(responseRule.pairs[0].response.value) ? "application/json" : "text/plain";
responseHeaders = new Headers({ "content-type": contentType });
} else {
try {
if (requestRule) {
// use modified request to fetch response
fetchedResponse = await _fetch(request);
} else {
fetchedResponse = await getOriginalResponse();
}
if (!responseRule) {
return fetchedResponse;
}
responseHeaders = fetchedResponse?.headers;
} catch (error) {
if (!responseRule) {
return Promise.reject(error);
}
}
}
isDebugMode &&
console.log("RQ", "Inside the fetch block for url", {
url,
resource,
initOptions,
fetchedResponse,
});
let customResponse;
const responseModification = responseRule.pairs[0].response;
if (responseModification.type === "code") {
const requestHeaders =
request.headers &&
Array.from(request.headers).reduce((obj, [key, val]) => {
obj[key] = val;
return obj;
}, {});
let evaluatorArgs = {
method,
url,
requestHeaders,
requestData,
};
if (fetchedResponse) {
const fetchedResponseData = await fetchedResponse.text();
const responseType = fetchedResponse.headers.get("content-type");
const fetchedResponseDataAsJson = jsonifyValidJSONString(fetchedResponseData, true);
evaluatorArgs = {
...evaluatorArgs,
responseType,
response: fetchedResponseData,
responseJSON: fetchedResponseDataAsJson,
};
}
customResponse = getFunctionFromCode(responseModification.value)(evaluatorArgs);
// evaluator might return us Object but response.value is string
// So make the response consistent by converting to JSON String and then create the Response object
if (isPromise(customResponse)) {
customResponse = await customResponse;
}
if (typeof customResponse === "object" && isContentTypeJSON(evaluatorArgs?.responseType)) {
customResponse = JSON.stringify(customResponse);
}
} else {
customResponse = responseModification.value;
}
const requestDetails = {
url,
method,
type: "fetch",
timeStamp: Date.now(),
};
notifyResponseRuleApplied({
rule: responseRule,
requestDetails,
});
// For network failures, fetchedResponse is undefined but we still return customResponse with status=200
const finalStatusCode = parseInt(responseModification.statusCode || fetchedResponse?.status) || 200;
const requiresNullResponseBody = [204, 205, 304].includes(finalStatusCode);
return new Response(requiresNullResponseBody ? null : new Blob([customResponse]), {
status: finalStatusCode,
statusText: responseModification.statusText || fetchedResponse?.statusText,
headers: responseHeaders,
});
};
})('__REQUESTLY__')</script> <script type="text/javascript" src="./index3_files/gen_beb62862d2b014dfdc6cb5bbe3252d8e_portaldata_0.js.download"></script>
<script type="text/javascript" src="./index3_files/gen_f84f42c4dfda3925e750762a397432c7_applicationdata_0.js.download"></script>
<script type="text/javascript" id="securedFeaturesMap"> window.pega = window.pega || {}; window.pega.isSecuredFeature = function(activityName){ if(!activityName){ return false; } var strOne = "1"; var securedFeaturesMap = { "pzRunActionWrapper": strOne, "pzGetACData": strOne, "ReloadSection": strOne, "pzUnsubscribeFromPush": strOne, "pzGetMultiSelectData": strOne, "pzGetDropdownOptions": strOne, "doUIAction":strOne, "@baseclass.WBOpenLaunch": strOne, "DoSave": strOne, "@baseclass.pzProcessURLInWindow": strOne, "ReloadHarness": strOne, "SaveAndContinue": strOne, "NewFromFlow": strOne, "Open": strOne, "GetNextWork": strOne, "GetWorkByID": strOne, "ProcessAssignment": strOne, "pzTransformAndRun": strOne, "WBOpenLaunch": strOne, "DoClose": strOne, "pzDoCloseWrapper": strOne, "pzUpdateClipboardModels": strOne, "removeThead": strOne, "pzPerformFlow": strOne, "pzSubmitAssignment": strOne, "pzShowSection": strOne, "pzUpdateElementModel": strOne, "@baseclass.pzUpdateCapturedDCModel": strOne, "pzPooledDoClose": strOne, "pzRecentsPooledDoClose": strOne, "Reopen": strOne, "FinishAssignment": strOne, "DoUpdate": strOne, "HistoryAndAttachments": strOne, "pzdoGridAction": strOne, "ProcessAction": strOne, "SubmitModalFlowAction": strOne, "@baseclass.pzDoListAction": strOne, "@baseclass.pzDoListPreAddItem": strOne, "@baseclass.pzAddToRepeatSource": strOne, "@baseclass.pzRemoveFromRepeatSource": strOne, "pzdoRDLAction": strOne, "@baseclass.pzRepeatingListsDropHandler": strOne, "Data-SpellChecker.SuspectWords_V2": strOne, "Data-SpellChecker.pzGetSuggestions": strOne, "Data-SpellChecker.AddWord": strOne, "pzGetPropertyLabels": strOne, "Data-Content-Image.pzUploadRTEImage": strOne, "pzGetMenu": "pzGetMenu", "Rule-File-Binary.ImageBrowserCleanup": strOne, "Rule-File-Binary.UpdateImageBrowser": strOne, "Rule-File-Binary.ShowImageBrowser": strOne, "LookupList": strOne, "@baseclass.pzGetDeclarePageListClassName": strOne, "@baseclass.getClassOfPageReference": strOne, "Add": strOne, "pzGetTrackerChanges": strOne, "pyDeleteDocumentPg": strOne, "SetProcessWindowName": strOne, "pyOnbeforeWindowClose": strOne, "PRGatewayPing":strOne, "LogOff":strOne, "Code-Security.EndSession":strOne, "pzGetURLHashes":strOne, "pzLoadMashupPage":strOne, "pzIncludeMashupScripts":strOne, "pzNewCovered":strOne, "pzStartNewFlowWrapper":strOne }; var tokens = activityName.split("."); if(tokens && tokens.length > 0){ if(tokens && tokens.length > 0){ var strActivityNameWithoutClass = tokens[tokens.length -1]; if(securedFeaturesMap && (securedFeaturesMap[strActivityNameWithoutClass] || securedFeaturesMap[activityName])){ return true; } } } return false; } </script> <script type="text/javascript" id="harnessvars"> try { /* BUG-595353 : workaround to fix IE bug */ function isIE () { if (navigator.appName === 'Microsoft Internet Explorer') { return true; } else if (navigator.appName === 'Netscape' && /Trident/.test(navigator.userAgent)) { /* IE 11 */ return true; } return false; } if (isIE()) { window.onstorage = function(e) { /* Leave this empty */ }; } } catch(e) {} var initialVars = { "dynamic_context" : { "pzHarnessID": "HIDD406F95FCD9384AFA8E4A1EA60CEBF54", "assign_RDL":"eval('if(!pega.ctx.RDL)pega.ctx.RDL={};')", "DesktopUserSessionInfo_gStrStartPage": "Work", "DesktopUserSessionInfo_gStrDesktopType": "User", "DesktopUserSessionInfo_gStrOperatorId": "624706", "bEnableUniqueId":"true", "AppDynamicsAppKey": "", "gStrWindowName": "Composite_H4MXOKA5H5EC8VYWNK73CD26JA06BPFY7A", "gStrWinNameDefault": "Composite_H4MXOKA5H5EC8VYWNK73CD26JA06BPFY7A", "strHarnessMode": "", "inDeveloperDesktop": "false", "pyPerformThreadWindowCheck": "true", "gIsMashupContent": "", "bIsPreGeneratedMashup": "", "topHarness": "yes", "isDesignViewIframe": "", "bFlowAction": "", "strPyID": "", "strPyLabel": "TED Dev R10", "desktopAvailableSpacesList" : "Work,", "bClientValidation": "true", "bExpressionCalculation": "", "isUITemplatized": true, "bReadOnly": "0", "confirm_harness_loaded": false, "strPrimaryPage": "pyDisplayHarness" }, "pega.d" : { "pyUID": "624706", "activeCSRFToken": "5e56c092283b34099337b31cf6336395", "obfuscateKey": "354dd538ab3c262b210427096cac6ea3", "globalobfuscateKey": "dad83fe2fb5d7672f958b22fcc7d704a", "pxReqURI": "/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal", "pxHelpURI": "https://community.pega.com/help_v87", "desktopType": "User", "desktopSubType": "Composite", "portalName": "CPMInteractionPortal", "portalCategory": "", "pzUnitTestPKey": "CPMInteractionPortal", "KeepPageMessages" : "false" } }; var deferredVars = { "pega.desktop" : { "pyRequestorToken": "6", "pxClientSession": "H4MXOKA5H5EC8VYWNK73CD26JA06BPFY7A", "pzProcessApplicationSwitch" :'pzuiactionzzz=CXtycX1mZTNmNDY5YjMwMWM3MTE2OWRkODRiMTNiNGMxNzg2MzYwOGJlM2M3YmExMWZjZDUzMWY3NTZiYWIwMTQzZDJlOGZiZTgwMjEwYWYxNDE4YjY0ODA5MDkyMzYyOGVkNWQ2OGQzZDUwY2Q0MTg2OWM3NDc5MTZhYjdkMjFmMDAxMw%3D%3D*', "showDesktop" :'pzuiactionzzz=CXtycX03NzQzYTEzNWUwODVjYTc3YzY1MGUxMDNlZTM4NGI1ZTRhYjMwOWUyZTc3ZGYwZGQ2NjFhMmViMjViOGIxMzM3ODNjMjcyZDg0MGY2NmJlZGI4YTI2MjIxNmU2NzgzMGI%3D*', "pzProcessPortalSwitch" :'pzuiactionzzz=CXtycX03NzQzYTEzNWUwODVjYTc3YzY1MGUxMDNlZTM4NGI1ZTY5NzI2ZDA4ZjcxMzQ4ZDNlYzUwNThiMDE5YjQ4OTZiMDBhOTE0ZDEyZjhiZDA2YWJjZTNiZDNiYTBkNWI1MmU%3D*', "pzLoadHelpFromFlowAction" :'pzuiactionzzz=CXtycX04YzIzOGQwN2RlZDAzNzliY2NiMjY4YWY4NTdmZjE0YTZmNTJlYWMwNTc0NjdmOGNkZWNiODBkMzNjNTNlMzNmY2E0YjdlODc5NGZiYTU2OGEwNTk1Y2Q2OWZjYzgxNDI%3D*', "pzLoadHelpInstruction" :'pzuiactionzzz=CXtycX1lMjJlMGY2ODVjZWJlYmYzY2VhZWJhNmJiMTQwMzhkNDM4MTdiMjUxNDhlYzg2ODAzODBmMDVhYmQ0NmNiODhl*' }, "pega.u.d" : { "pyPreventXSSInLabel": false, "documentTitle": "", "url": "/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?&pzTransactionId=&pzFromFrame=&pzPrimaryPageName=pyDisplayHarness", "gClearExpressionData":false, "pushservice_transport" : "websocket", "pushservice_fallback" : "long-polling", "pushservice_requestorID" : "CXtwZH1BQUFBRURCWDNvQUpKQllmT2lXejByeHM4WjdNTlJkaEFxM1craHMwRURpMTJMeFVESGs2bnZ4aU5oOE5mREdwMklWRDR3PT0%3D", "pushservice_requestorContextPath" : "/prweb", "pushservice_pushServletPath" : "/PRPushServlet/app/TEDDevR8/!@07fc03be6fde591756278169f0f18fd1!", "pushservice_portalName" : "CPMInteractionPortal", "skipEmptyCaption": null, "displayFieldNameInValidationMsg": null, "primaryPageName": "pyDisplayHarness", "last" : "value" } }; </script> <script type="text/javascript" src="./index3_files/en_us_f858e197cff3c538af61dc0ee527f53e_locale_0.js.download"></script>
<script type="text/javascript">
pega.d.RDAURLWithTokenActivityEncrypted = "pzuiactionzzz=CXtycX1iZTg5YWQzMDQ2MjU3ZGU2MDQ0MDQwNzM4NDJkZTQwNDg2NjJjZmMxODI1MDg4NjI0ZjY5NzgwYWUwN2M3MTkxNGM0MDYyNWU0ZTNmMWFmNWQyNDE3MDhkYTg0MzBiMTM%3D*";
pega.d.FetchUpdatedRRFromClipboardActivityEncrypted = "pzuiactionzzz=CXtycX03Y2M4MWVhN2MxMzIwZWUwZGY3NjYyODFlOTAzNDdlMjM2ZGY1MzM4MDFmZjQyOWE1Njk5MjA5MGY1YTU3ZDkzMzRjMjcxMGJlNzkyZjNmOWE1NzlmNjk4ZWQ5YzY3MzM%3D*";
pega.d.UpdateClipboardWithAutomationValuesActivityEncrypted = "pzuiactionzzz=CXtycX00OWU1MmI4YTBmMzE4ZWJjYTkyNjVjMDA1OWM2M2FkYTc3ZDE4ZGJlMjc0NzViN2M2NTk0OTVmY2FkOGEyZWE4ODY1M2MwN2UzNTY3N2U0YmEyZThiMTVmZmU4Y2U3MWM0NTNiZDY3NDk5NmI0MGUyYWMzZGY3ODMwNmVlMDlhNQ%3D%3D*";
pega.d.agclassurl = "pzuiactionzzz=CXtycX03NzQzYTEzNWUwODVjYTc3YzY1MGUxMDNlZTM4NGI1ZTMzYmQ0MDUyNjVlM2NiZjk2MzExNDUxYzJjZDY0NmNjY2I3ZGQxNGMxNjg2NzlkNjI0ODZlMGM1MTM5OWEyZDliM2FhZGZkNDQ2MDY3OGFjZmFhNjEzMWRlZGU3Yjk4NThiMTY3ZTgxY2IxMTI5ZjYyNWY3MmZlOTc2N2MxNmI3*";
pega.d.RDARuntimeSubscriptionStatusActivityEncrypted = "pzuiactionzzz=CXtycX1iZTg5YWQzMDQ2MjU3ZGU2MDQ0MDQwNzM4NDJkZTQwNDQ1MTljMDBjZmQ2NjM4OTQ3ZTdmMmZmNTM5ZjQ0NzgyNjNmY2Q4MTdiNTIwNmUyMjg1MDVmOTA4ZDQ1MGU3Y2Q%3D*";
pega.d.C11NRDAMsgSvcSubscriptionInfoActivityEncrypted = "pzuiactionzzz=CXtycX1iZTg5YWQzMDQ2MjU3ZGU2MDQ0MDQwNzM4NDJkZTQwNDViYzgzNDNmZDk1ZGM2MzI1MzNjMzg5MjY3MTYxMDk3ZTU2ZGQxNmE0ODQxYjYyMmI4OTg4YmEyN2RiYjYzM2E%3D*";
pega.d.C11NPublishRDAMessageActivityEncrypted = "pzuiactionzzz=CXtycX1hOWYxNDU2NTkxYzc1MDQ5YTcwN2E2NWY4ZjZlNGFjMzc1OWIyMzRjODYxYTRmNDI2NmUxNTdkOTNkZDNkYjEyYmU4YzY1NzI4MGQyMGI0ZDViMDc5MzAwNzFkMTM1MzE%3D*";
pega.d.AddLogMessagesAndAlertsActivityEncrypted = "pzuiactionzzz=CXtycX0wNzE2MzhkYjQxNThmYjgzOGJlNDUwNTllYzE0NWUzMDhlNGUwOTk2NzU2NmJmOTc4ODYzYTVlYTQ0MDFjM2FmYTAzZDlmNDQyYzNjMjkwOTZlMzQ5NmNmYjE4ODg2MmU%3D*";
pega.d.C11NPostExecutionCallBackActivityEncrypted = "pzuiactionzzz=CXtycX04NTFiNmQxN2I0Njk1NTA3NDAyNjE0NzE5NmY3MDI2ZTE5YWUwOWFiZjdmMjg4NWE3YTE4ZTZlMzAxOTgyOTc1MzBjNGUxZGY3NjEyZTE5YzU3YTQzY2JjMTc5YmIxZjE%3D*";
</script>
<script type="text/javascript" src="./index3_files/pzpega_mobile_11946246982.js!!.js.download"></script>
<script type="text/javascript" src="./index3_files/pzpega_ui_harnesscontext_1992938815!pzevalharnessjson_12386624562.js!pzpega_ui_lib_provider_1192545302!pega_yui_12383156651!desktopwrapper_11712462728!pzautomationscripts_1856753267!pz.download"></script> <script type="text/javascript" src="./index3_files/pzpega_ui_templates_default_11880497095!!.js.download"></script> <script type="text/javascript" src="./index3_files/templates_default_constant_valuesd57e520eaa1712611f6b611230bba93e02f75e31.js.download"></script> <!-- Script bundle for automation framework. --> <script type="text/javascript" src="./index3_files/pzpega_ui_automation_scripts_12205568001!!.js.download"></script> <script type="text/javascript" src="./index3_files/pzsurvey_ui_userscript_13079088246.js!!.js.download"></script> <script type="text/javascript" src="./index3_files/pzpega_fingerprint_1225378887!!.js.download"></script> <script type="text/javascript" src="./index3_files/pzpega_ui_jittemplate_14200183794.js!!.js.download"></script> <script>pega.ctx.configure_rule_obj_validate = function(){};</script> <script>
/* Rule-Edit-Validate: crmValidatePhoneNumber */
var ruleEditValidate_crmValidatePhoneNumber = new validation_ValidationType("crmvalidatephonenumber", ruleEditValidate_crmValidatePhoneNumberJSImpl);
ruleEditValidate_crmValidatePhoneNumber.addEventFunction("onchange", ruleEditValidate_crmValidatePhoneNumberJSImpl);
//=====================CRMVALIDATEPHONENUMBER=============================
/*
@public- Validation function for crmValidatePhoneNumber Rule-Edit-Validate
This function returns the validation error object if the field is not a valid phone number.
@param $object$object- The object which represents the input field
@return $object$validation_Error - Validation Error object
*/
function ruleEditValidate_crmValidatePhoneNumberJSImpl(object) {
var x = pega.control.PlaceHolder.getValue(object);
if (null == x || "" == x) {
return;
}
// Regular expression for phone number
var nonPhoneNumbersMatch = /[^0-9-x,X().]/g;
var illegalChars = x.match(nonPhoneNumbersMatch);
if (null != illegalChars) {
return display_getValidationError(object, ruleEditValidate_isValidPhoneNumberMsgStr, "", true);
}
}
</script> <style> .layout-group-tab > .error-table{ display:none !important; } .layout-group-dashboard > .error-table { display:none !important; } a[accesskey]:after, button[accesskey]:after, input[accesskey]:after, label[accesskey]:after, legend[accesskey]:after, textarea[accesskey]:after { margin-left:0; content: ""; } .dc-header .headerTabsList { visibility: visible !important; } </style> <style> .content-inner > .field-item > span > span:empty:after { content: '\00a0\00a0' !important; } .gridTable .dataValueRead span > span:empty:after { content: '\00a0\00a0' !important; } .gridTable .dataValueRead span:empty:after { content: '\00a0\00a0' !important; } </style> <style> div#_popOversContainer > div.pz-po-c-display-vertical-scrollbar-height625{ height: 625px; overflow-y : auto; } </style>
<script> </script> <link rel="stylesheet" type="text/css" href="./index3_files/pzskinv2_pzruntime-tools25d8b3f3000ac65f7eafe4b6f7c0e0a661204fb275d2e385436c792c2e50e1c9_full_12074096494.css!!.css"> <style type="text/css">.csr-notification .csr-notification-content:after { right: NaNpx; }</style><style type="text/css"></style><script type="text/javascript" src="./index3_files/pzpega_ui_grid_13915322108.js!pzpega_ui_grid_dragdrop_12229585338.js!pega_yui_resize_1781687144.js!!.js.download"></script><script type="text/javascript" id="inline_yui-gen0"> function selectActivityTab(){ $(".runtime-control-panel").find("#Tab2").trigger("click"); } try {var gHeaderButtonHTML=document.getElementById("HEADER_BUTTON_HTML");if(!pega.u.d.bModalDialogOpen){document.getElementById('HeaderButtonIconsTDId').innerHTML = gHeaderButtonHTML.innerHTML;}} catch(e) {}
$(document).ready(function () {
pega.ui.inspector.panel.pendingTabRefresh();
});
</script><style type="text/css">.csr-notification .csr-notification-content:after { right: NaNpx; }</style><style type="text/css"></style><style type="text/css">.csr-notification .csr-notification-content:after { right: NaNpx; }</style><style type="text/css"></style></head> <body class="screen-layout-body with-fixed-header HIDD406F95FCD9384AFA8E4A1EA60CEBF54" onload="screenLayoutResize" data-harness-id="HIDD406F95FCD9384AFA8E4A1EA60CEBF54"> <noscript><style>.screen-layout{display:none;} body{background:none;background-color:white}</style><div> <div id='jsDisabledHeader' style='color:blue;text-align:center;margin: 70px;'>JavaScript Required.</div> <div id='jsDisabledMessage' style='color:blue;text-align:center;margin: 70px;'>We're sorry, but Pega7 doesn't work without JavaScript enabled. Please enable and refresh.</div> </div></noscript>
<div data-ui-meta="{'type':'Section','ruleName':'pySkipLinksToTarget','insKey':'RULE-HTML-SECTION @BASECLASS PYSKIPLINKSTOTARGET #20231011T110946.243 GMT','sectionType':'standard'}" data-template="" node_name="pySkipLinksToTarget" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="pySkipLinksToTarget" version="1" objclass="Rule-HTML-Section" pyclassname="@baseclass" readonly="true" expandrl="" index="" uniqueid="SID1698333986228">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-simple_list content-simple_list skip-links-wrapper skip-links-hide" data-test-id="201808100852440591157" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-expr-id="2fd9314397916edcb5aa8a9eb49890b68e910168_3" data-context="pyDisplayHarness" data-refresh="true" data-methodname="simpleLayout_1" sec_baseref="pyDisplayHarness" uniqueid="yui-gen1"><div class="content-item content-field item-1 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxLink','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span data-template="">
<a data-test-id="2015070108430309263280" data-ctl="" data-click="[["runScript", ["skipToBanner()"]]]" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!STANDARD?pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_CPMInteractionPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DCPMInteractionPortal%26Name%3D%20CPMInteractionPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_CPMInteractionPortal%26launchPortal%3Dtrue&bPurgeTargetThread=true&target=popup&portalThreadName=STANDARD&portalName=Developer&pzHarnessID=HID12EB3E4E63674570E6497CADCC617EE0#" href_original="#" fromicon="" onclick="pd(event);" name="pySkipLinksToTarget_pyDisplayHarness_1" class="Strong">Go to banner</a>
</span></div><div class="content-item content-field item-2 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxLink','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""><span data-template="">
<a data-test-id="2015070108430309263280" data-ctl="" data-click="[["runScript", ["cpm_skipToContentCustom(\"main\")"]]]" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!STANDARD?pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_CPMInteractionPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DCPMInteractionPortal%26Name%3D%20CPMInteractionPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_CPMInteractionPortal%26launchPortal%3Dtrue&bPurgeTargetThread=true&target=popup&portalThreadName=STANDARD&portalName=Developer&pzHarnessID=HID12EB3E4E63674570E6497CADCC617EE0#" href_original="#" fromicon="" onclick="pd(event);" name="pySkipLinksToTarget_pyDisplayHarness_2" class="Strong">Go to main content</a>
</span></div><div class="content-item content-field item-3 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxLink','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template=""><span data-template="">
<a data-test-id="2015070108475601785160" data-ctl="" data-click="[["runScript", ["cpm_skipToContentCustom(\"search\")"]]]" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!STANDARD?pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_CPMInteractionPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DCPMInteractionPortal%26Name%3D%20CPMInteractionPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_CPMInteractionPortal%26launchPortal%3Dtrue&bPurgeTargetThread=true&target=popup&portalThreadName=STANDARD&portalName=Developer&pzHarnessID=HID12EB3E4E63674570E6497CADCC617EE0#" href_original="#" fromicon="" onclick="pd(event);" name="pySkipLinksToTarget_pyDisplayHarness_3" class="Strong">Go to search bar</a>
</span></div><div class="content-item content-field item-4 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxLink','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)'}" data-template=""><span data-template="">
<a data-test-id="2015070108491004597324" data-ctl="" data-click="[["runScript", ["cpm_skipToContentCustom(\"navigation\")"]]]" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!STANDARD?pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_CPMInteractionPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DCPMInteractionPortal%26Name%3D%20CPMInteractionPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_CPMInteractionPortal%26launchPortal%3Dtrue&bPurgeTargetThread=true&target=popup&portalThreadName=STANDARD&portalName=Developer&pzHarnessID=HID12EB3E4E63674570E6497CADCC617EE0#" href_original="#" fromicon="" onclick="pd(event);" name="pySkipLinksToTarget_pyDisplayHarness_4" class="Strong">Go to navigation</a>
</span></div></div>
</div>
<div class="modal-overlay" id="modalOverlay"><div class="modal-align-table"><div class="modal-align-cell"><div class="modal-wrapper" id="modalWrapper" role="dialog" aria-labelledby="modalDialog_Title" aria-modal="true"><div class="modal-content" id="modalContent"></div></div></div></div></div>
<div data-ui-meta="{'type':'Section','ruleName':'pzRuntimeToolsTopBar','insKey':'RULE-HTML-SECTION DATA-PORTAL PZRUNTIMETOOLSTOPBAR #20200827T211116.800 GMT','sectionType':'standard'}" data-template="" node_name="pzRuntimeToolsTopBar" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="pyPortal" data-node-id="pzRuntimeToolsTopBar" version="1" objclass="Rule-HTML-Section" pyclassname="Data-Portal" readonly="true" expandrl="" index="" uniqueid="SID1698333986260" isinspectorelement="true">
<div data-template="" class="layout layout-noheader layout-noheader-pz-runtime-top-bar" data-test-id="20180102092320003098" data-layout-id=""> <div section_index="1" class="layout-body clearfix "><div bsimplelayout="true" data-template="" class=" flex content layout-content-pz-inline-middle content-pz-inline-middle " data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-top-spacing remove-bottom-spacing remove-right-spacing remove-left-spacing flex flex-row pzruntime-toolbar-gear dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span data-template="">
<button data-test-id="20171209102012093057724" data-ctl="" data-click="[["runScript", ["pega.ui.runtimeToolbar.toggle(event)"]]]" name="pzRuntimeToolsTopBar_pyPortal_1" class="pz-icon pzhc pzbutton" type="button" title="Toggle runtime toolbar"><i aria-hidden="true" class="pz-pi pi-gear" data-click="."></i></button>
</span></div><div class="content-item content-field item-2 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""><span data-template="">
<button data-test-id="rt-tool-issues" data-ctl="" data-click="[["openUrlInWindow", ["/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity=@baseclass.pzProcessURLInWindow&pyPreActivity=showStream&pyTargetStream=MyAlerts&pyTargetFrame=&pyBasePage=&pyApplyTo=", "My Alerts", "height=600,width=800,location=0,menubar=0,toolbar=0,status=0,resizable=1,location=0,scrollbars=1", "false",":event","false", "false"]]]" name="pzRuntimeToolsTopBar_pyPortal_2" class="pz-icon pzhc pzbutton" type="button" title="Issues" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-warn" data-click="."></i></button>
</span></div><div class="content-item content-field item-3 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template=""><span data-template="">
<button data-test-id="rt-tool-clipboard" data-ctl="" data-click="[["openUrlInWindow", ["/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity=@baseclass.pzProcessURLInWindow&pyPreActivity=pzGetClipboardPages&showingAdvance=true&fromChange=true&selectedThread=&selectedThreadLabel=&nodeId=&requestorId=&launchClipboardViewer=true", "Clipboard Viewer", "height=768,width=1200,location=0,menubar=0,toolbar=0,status=0,resizable=0,location=0,scrollbars=0", "false",":event","false", "false"]]]" name="pzRuntimeToolsTopBar_pyPortal_3" class="pz-icon pzhc pzbutton" type="button" title="Clipboard" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-clipboard" data-click="."></i></button>
</span></div><div class="content-item content-field item-4 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)'}" data-template=""><span data-template="">
<button data-test-id="rt-tool-tracer" data-ctl="" data-click="[["runDataTransform", ["pzPrepareTracerURL", "=", "pyPortal",":event"]],["openUrlInWindow", ["/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity=@baseclass.pzProcessURLInWindow&pyPreActivity=RedirectAndRun&ThreadName=Tracer&AccessGroupName=&Location=#~pyPortal.pyTracerURL~#&PagesToCopy=&bPurgeTargetThread=true&bEncodeLocation=&PreserveAccessGroup=&bAllowAccess=", "Tracer", "height=650,width=1200,top=5,left=5,location=0,menubar=0,toolbar=0,status=0,resizable=1,location=0,scrollbars=1", "false",":event","false", "false"]]]" name="pzRuntimeToolsTopBar_pyPortal_4" class="pz-icon pzhc pzbutton" type="button" title="Tracer" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-tracer" data-click="."></i></button>
</span></div><div class="content-item content-field item-5 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row ui-tree ui-inspector dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5)'}" data-template="" isinspectorelement="true"><span data-template="">
<button data-test-id="UIInspectorButton" data-ctl="" data-click="[["runScript", ["pega.ui.dataSourceInspector.stopLiveData()"]],["runScript", ["pega.ui.inspector.toggle()"]]]" name="pzRuntimeToolsTopBar_pyPortal_5" class="pz-icon pzhc pzbutton" type="button" title="Toggle Live UI" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-inspect" data-click="."></i></button>
</span></div><div class="content-item content-field item-6 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row accessibility-toggle dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(6)'}" data-template=""><span data-template="">
<button data-test-id="DataInspectorButton" data-ctl="" data-click="[["runScript", ["pega.ui.dataSourceInspector.toggleHighligting()"]]]" name="pzRuntimeToolsTopBar_pyPortal_6" class="pz-icon pzhc pzbutton" type="button" title="Toggle Live Data" disabled="true" tabindex="-1"><i aria-hidden="true" class="pi pi-glasses" data-click="."></i></button>
</span></div><div class="content-item content-field item-7 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row accessibility-toggle dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(7)'}" data-template=""><span data-template="">
<button data-test-id="AccessibilityInspectorButton" data-ctl="" data-click="[["runScript", ["pega.ui.dataSourceInspector.stopLiveData()"]],["runScript", ["pega.ui.inspector.accessibility.toggle()"]]]" name="pzRuntimeToolsTopBar_pyPortal_7" class="pz-icon pzhc pzbutton" type="button" title="Toggle Accessibility Inspector" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-a11y" data-click="."></i></button>
</span></div><div class="content-item content-sub_section item-8 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'pzToggleAutomationRecorder','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(9)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'pzToggleAutomationRecorder','insKey':'RULE-HTML-SECTION DATA-PORTAL PZTOGGLEAUTOMATIONRECORDER #20200518T131925.885 GMT','sectionType':'standard'}" data-template="" node_name="pzToggleAutomationRecorder" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="pzToggleAutomationRecorder" version="1" objclass="Rule-HTML-Section" pyclassname="Data-Portal" readonly="true" expandrl="" index="" uniqueid="SID1698333986287">
<div data-template="" class="layout layout-noheader layout-noheader-pz-runtime-top-bar margin-b-1x" data-test-id="201808120943310957798" data-layout-id=""> <div section_index="1" class="layout-body clearfix "><div bsimplelayout="true" data-template="" class=" flex content layout-content-pz-inline-middle content-pz-inline-middle content-items-maxwidth" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-left-spacing remove-right-spacing flex flex-row automation-recorder dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span data-template="">
<button data-test-id="2017121801430303316151" data-ctl="" data-click="[["runScript", ["pega.ui.dataSourceInspector.stopLiveData()"]],["runActivity", ["", "", "pyPortal", ":event", "", "", "", "pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH05YmZjNTVlNDA2ZDQ2ODAyOTYyNjlkNzQ2NDMwOGVjMWRkYjlkNmJiN2JlMTM3NWY4Nzk5ZDg3NTMzOTE4ZWE4NDVjYjVkZDAxNzYyOTA1ODBlYTMzYTUwYjBlNmE3NTA5ZDNkMzc0YTQwNzZhZWRlZDQ2YWQwODNjNDc3ZmFkMDVlNDA1NTk4MzVlMWE2ZThkMTk3Yjk5N2JlYTkwMTE5MTE4NzQ5ODgzZmVjZDNiMWYyYjBlMTI4YjUxOTEzOTZjZDMwZjI4MDdhMWJiOTliNzFhMDk2NWUwNzAxNGRlNWM4NmY4MjNlYWMzNmFlNjRkZDI3ZWEyNzU4ZjhhMjYwNmY4NDA2NzA3YTliY2JiMjA4NjA5MzkwN2U0ZWIyNDI5Y2ZlMTU4NWJkNjM3ZGE5NTg2OGM4ZWM2MzNhODE2ODYzMTc1OTQxMDgwMDNiYmQzNDE2ZDFkMGJhYjYzNDk5YmM5NGUzYWEyOTczNTVmZGQwYmJiMjRhMmIzYjE4OTYwOTRjMDcxYmE1YTAxMDVmYTM5YTNmM2QzZDA1YzYxYWMzYjE5NzMzMTdlNGFjZTY0NzdkNmUwMGRhMjk3MzAy*"]],["runScript", ["pega.ui.automation.recorder.toggle()"]]]" name="pzToggleAutomationRecorder_pyPortal_1" class="pz-icon pzhc pzbutton" type="button" title="Toggle Automation Recorder" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-potion" data-click="."></i></button>
</span></div></div>
</div></div>
</div>
</div><div class="content-item content-field item-9 remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row gapid_icon dataValueRead" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(10)'}" data-template=""><span data-template="">
<button data-test-id="2017031402493806846307" data-ctl="" data-click="[["runScript", ["pega.ui.dataSourceInspector.stopLiveData()"]],["runScript", ["pega.ui.gapidentifier.toggle()"]],["runScript", ["cleanUpMarkers_GI()"]]]" name="pzRuntimeToolsTopBar_pyPortal_10" class="pz-icon pzhc pzbutton" type="button" title="Toggle Agile Workbench" disabled="true" tabindex="-1"><i aria-hidden="true" class="pz-pi pi-bolt" data-click="."></i></button>
</span></div></div>
</div></div>
</div>
<div id="FormErrorMarker_Div" style="display:none"></div><input type="hidden" id="pzHarnessID" value="HIDD406F95FCD9384AFA8E4A1EA60CEBF54"><div class="document-statetracker" data-state-busy-status="none" data-dst-busy-duration="-1698334275369" data-dst-http-durations="52,277,277,276,271,38"></div> <div data-ui-meta="{'type':'Harness','ruleName':'CPMInteractionPortal','insKey':'RULE-HTML-HARNESS CPM-PORTAL CPMINTERACTIONPORTAL #20230207T005137.420 GMT'}" data-portalharnessinsname="CPM-Portal!CPMInteractionPortal" class="screen-layout screen-layout-modern screen-layout-header " style=""> <div id="screen-layout-mask"></div><header data-ui-meta="{'type':'Panel','subType':'TOP'}" id="l1" class="screen-layout-region screen-layout-region-header not-nav" aria-label="Top Panel" role="banner"><div class="screen-layout-region-content">
<div data-ui-meta="{'type':'Section','ruleName':'CSPortalHeaderWrapper','insKey':'RULE-HTML-SECTION CPM-PORTAL CSPORTALHEADERWRAPPER #20231011T110955.117 GMT','sectionType':'standard'}" data-template="" node_name="CSPortalHeaderWrapper" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CSPortalHeaderWrapper" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333986337" full_base_ref="">
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(1)','clipboardPath':'CPMInteractionPortalHeader'}">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInteractionPortalHeader','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADER #20230724T225424.551 GMT','sectionType':'standard'}" data-template="" node_name="CPMInteractionPortalHeader" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInteractionPortalHeader" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333986510" full_base_ref="">
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(1)','clipboardPath':'JSONInclude'}">
</span>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(2)','clipboardPath':'LocalizationInclude'}">
</span>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(3)','clipboardPath':'CPMBusyIndicator'}">
</span>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(4)','clipboardPath':'CSSetAudioConfiguration'}">
</span>
<div bsimplelayout="true" data-template="" class=" flex content layout-content-header_inline_no_tb_margins content-header_inline_no_tb_margins flex-grow-1-item-2" data-test-id="201802211228180282784" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(5)'}" data-expr-id="9e829740e7172d0015f28e72a900586e25b504a7_7" data-context="pyDisplayHarness" data-refresh="true" data-methodname="simpleLayout_4" sec_baseref="pyDisplayHarness"><div class="content-item content-layout item-1 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-portal_header_group_primary content-portal_header_group_primary " data-test-id="201802211228180282331" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)'}" data-methodname=""><div class="content-item content-sub_section item-1 remove-top-spacing remove-left-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInteractionPortalHeaderTop','className':'CPM-Portal','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInteractionPortalHeaderTop','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADERTOP #20230724T225425.237 GMT','sectionType':'standard'}" data-template="" node_name="CPMInteractionPortalHeaderTop" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInteractionPortalHeaderTop" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333987068">
<div data-template="" class="layout layout-noheader layout-noheader-portal_header" data-test-id="201801220150000758486" data-layout-id=""> <div section_index="1" class="layout-body clearfix "><div bsimplelayout="true" data-template="" class=" flex content layout-content-portal_header_group_primary content-portal_header_group_primary flat-primary-header dl_vt_center" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-sub_section item-1 remove-top-spacing remove-bottom-spacing remove-left-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'SetImgAlt','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""> </div><div class="content-item content-layout item-2 remove-top-spacing remove-bottom-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline_middle content-inline_middle " data-test-id="202004171152130888774" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-top-spacing remove-left-spacing flex flex-row logo dataValueWrite" string_type="field" reserve_space="false" data-expr-id="93e9f86af976b7ebd706cfa53ba34ac7e3b37902_12" data-context="pyDisplayHarness" data-ui-meta="{'type':'Cell','subType':'pxIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span><i class="icons" style="width:75px;height:33px;"><img style="width:75px;height:33px;" data-template="" data-click="[["runScript", ["pega.cpm.IP.HideHeader()"]],["runScript", ["pega.desktop.activateDocument(\"0\")"]],["runDataTransform", ["CPMSetHomeContext", "=", "pyDisplayHarness",":event"]],["runScript", ["pega_cpm_IP_skipToMainContent(\"PS1__TABTHREAD0\")"]],["runScript", ["resizeHomeTab()"]]]" data-test-id="201410060949160415164" data-ctl="Icon" src="./index3_files/ssalogo_13656888051.svg!!.svg" title="SSA logo" aria-label="SSA logo" name="CPMInteractionPortalHeaderTop_pyDisplayHarness_4" alt="SSA logo">
</i>
</span></div><div class="content-item content-label item-2 remove-bottom-spacing remove-right-spacing flex flex-row application_name_dataLabelWrite dataLabelWrite application_name_dataLabelWrite" string_type="label" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'Label','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-test-id="20200417114912061344896" data-template=""><h1> TECHNICIAN DASHBOARD </h1></div></div></div><div data-tour-id="HomeTab-4" class="content-item content-field item-3 remove-top-spacing remove-bottom-spacing flex flex-row create-icon dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxLink','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template=""><span data-template="">
<a data-test-id="2014100609491604293426" data-ctl="" data-click="[["showMenu",[{"dataSource":"CPMInteractionPortalMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-standard" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698252932920"},":event"]]]" data-keydown="[["showMenu",[{"dataSource":"CPMInteractionPortalMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-standard" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698252932923"},":event"],,"enter"]]" role="link" aria-haspopup="true" href="https://bpmsteddev.aci.is.cl.ssa.gov/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!STANDARD?pyActivity=%40baseclass.pzProcessURLInWindow&pyPreActivity=Embed-PortalLayout.RedirectAndRun&ThreadName=OpenPortal_CPMInteractionPortal&Location=pyActivity%3DData-Portal.ShowSelectedPortal%26portal%3DCPMInteractionPortal%26Name%3D%20CPMInteractionPortal%26pzSkinName%3D%26developer%3Dfalse%26ThreadName%3DOpenPortal_CPMInteractionPortal%26launchPortal%3Dtrue&bPurgeTargetThread=true&target=popup&portalThreadName=STANDARD&portalName=Developer&pzHarnessID=HID12EB3E4E63674570E6497CADCC617EE0#" href_original="#" fromicon="" onclick="pd(event);" name="CPMInteractionPortalHeaderTop_pyDisplayHarness_6" class="Header_nav" title="New"><i aria-hidden="true" class="pi pi-plus" data-ctl="" data-click="[["showMenu",[{"dataSource":"CPMInteractionPortalMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-standard" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698252932920"},":event"]]]" data-keydown="[["showMenu",[{"dataSource":"CPMInteractionPortalMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-standard" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698252932923"},":event"],,"enter"]]"></i>New</a>
</span></div></div>
</div></div>
<div data-template="" class="layout layout-noheader layout-noheader-do_not_display" data-test-id="201801220150000759612" data-layout-id=""> <div section_index="2" class="layout-body "><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-subscription-id="58c0e0b5-a981-4936-895a-c418687bf7a7" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(2)'}" data-message="[["runScript", ["forwardSocialEvent(event)"]]]" data-methodname=""></div>
</div></div>
<div data-template="" class="layout layout-noheader layout-noheader-do_not_display float-left set-width-auto" data-test-id="201801220150000759714" data-layout-id=""> <div section_index="3" class="layout-body clearfix "><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default set-width-auto min-height-0-item-1" data-subscription-id="0cb5f906-61e9-47f2-b113-7629ba148563" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(3)'}" data-message="[["runScript", ["FBMEventsCallback(event)"]]]" data-methodname=""><div class="content-item content-field item-1 remove-top-spacing remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row dataValueWrite custom-control" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'FBMScreenPopControl','className':'CPM-Portal','pgRef':'.pySections(3).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
</div></div>
</div></div>
<div data-template="" class="layout layout-noheader layout-noheader-do_not_display" data-test-id="201801220150000759714" data-layout-id=""> <div section_index="4" class="layout-body "><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-subscription-id="f8d8659e-a058-43ac-9bec-fa9fad4c74df" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(4)'}" data-message="[["runScript", ["onNewEmailNotification(event)"]]]" data-methodname=""></div>
</div></div>
<div data-template="" class="layout layout-noheader layout-noheader-do_not_display" data-test-id="201801220150000759714" data-layout-id=""> <div section_index="5" class="layout-body "><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-subscription-id="48184c32-895e-4a96-a0ac-c554f2e48c0a" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(5)'}" data-message="[["runScript", ["oPegaChatEventHandler.showChatToasterPop(event)"]]]" data-methodname=""></div>
</div></div>
</div>
</div><div class="content-item content-sub_section item-2 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMPositionScreenLayouts','className':'CPM-Portal','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""> </div></div></div><div class="content-item content-layout item-2 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-portal_header_group_primary content-portal_header_group_primary dl_hz_center" data-test-id="201802211228180283865" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)'}" data-methodname=""><div class="content-item content-sub_section item-1 remove-top-spacing remove-left-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMSearchInHeader','className':'CPM-Portal','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMSearchInHeader','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMSEARCHINHEADER #20230724T225425.890 GMT','sectionType':'standard'}" data-template="" node_name="CPMSearchInHeader" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMSearchInHeader" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" data-postvalue-url="pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxZGM0MmJiZmM4ZjQ2OWQ3ZDg3NGVmNzYzZTkxOGRiODAxMjk2YTU5YzE1ODRiODI3ZGIyYjhjMjFlOWQ5MWQ4Nw%3D%3D*" readonly="false" expandrl="" index="" uniqueid="SID1698334027440" full_base_ref="">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-split_button content-split_button portal_header_search" data-test-id="202003121703540142733" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" role="search" tabindex="-1" data-skip-target="search" data-methodname=""><div data-tour-id="HomeTab-2" class="content-item content-field item-1 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxDropdown','clipboardPath':'D_SearchMetaData.SearchOptions','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><select data-template="" data-test-id="201610190747440120129777" data-ctl="["Dropdown"]" aria-invalid="false" id="1389ff7f" class="standard" style="width:auto" title="Search and Interaction Options" name="$PD_SearchMetaData$pSearchOptions" aria-describedby="$PD_SearchMetaData$pSearchOptionsError ">
<option value="SSN Search" title="SSN Search">SSN Search</option><option value="Inbound Call" title="Inbound Call" selected="">Inbound Call</option><option value="Outbound Call" title="Outbound Call">Outbound Call</option><option value="In Person" title="In Person">In Person</option><option value="Mail/Deskwork" title="Mail/Deskwork">Mail/Deskwork</option></select></div><div data-tour-id="HomeTab-3" class="content-item content-field item-2 flex flex-row ssn-search-input dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxTextInput','clipboardPath':'D_SearchMetaData.pySearchText','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""><span data-control-mode="input" class="search" nowrap=""><input style="" data-template="" data-change="[["postValue",[":event"],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["runDataTransform", ["SetInteractionMetaData", "SearchText=#~D_SearchMetaData.pySearchText~#&SearchOption=#~D_SearchMetaData.SearchOptions~#&GroupID=#~D_SearchMetaData.GroupID~#", "pyDisplayHarness",":event"],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]]]" data-keydown="[["postValue",[":event"],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]],"enter"],["runDataTransform", ["SetInteractionMetaData", "SearchText=#~D_SearchMetaData.pySearchText~#&SearchOption=#~D_SearchMetaData.SearchOptions~#&GroupID=#~D_SearchMetaData.GroupID~#", "pyDisplayHarness",":event"],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]],"enter"],["setMobileTransition",["pega.mobile.transitions.MOVE_FORWARD"],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["createNewWork",["#~D_SearchMetaData.ClassName~#","","#~D_SearchMetaData.FlowName~#","&=","","","",{"target":"primary"},""],["&",["AP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]],"enter"],["refresh", ["thisSection","", "", "=", "", "ClearSSNSearchText,",":event","",["pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjlhOGExZDc1YTlmNTBiNzVlMmZkNGMwNDJhYTUzNGRhY2M0MGE4ZWI3YTc2ZTBiMGQ3ODM4YzY2MzAzNDIwZjExMDNkOGJhZDAzNDA2ODc0N2M4ZTIxNDBmOGU1MWE0YjcyMzQyZDJhZjkxZGViYzAxNmE1Y2RiMDNjM2FkMmI2MjNkMTM0YjdlZTc0ZDZmZTAyYTEyZjdkNWU4ZDM1MTQy*",{},{}],"pyDisplayHarness"],,"enter"],["setValue", [[".pySearchText", "D_SearchMetaData", "", "", ""]],,"enter"],["runScript", ["delayCheckForBusyIndicatorAndSetFocusToTab()"],,"enter"]]" data-test-id="2015052504543705231680" data-ctl="["TextInput"]" type="text" id="75558db1" value="" class="leftJustifyStyle" title="Search for a Social Security Number" name="$PD_SearchMetaData$ppySearchText" placeholder="Search..." maxlength="11" aria-describedby="$PD_SearchMetaData$ppySearchTextError " aria-invalid="false">
</span></div><div class="content-item content-field item-3 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template=""><span><i data-template="" data-click="[["postValue",[":event"],["&",["OP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["runDataTransform", ["SetInteractionMetaData", "SearchText=#~D_SearchMetaData.pySearchText~#&SearchOption=#~D_SearchMetaData.SearchOptions~#&GroupID=#~D_SearchMetaData.GroupID~#", "pyDisplayHarness",":event"],["&",["OP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["setMobileTransition",["pega.mobile.transitions.NONE"],["&",["OP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["createNewWork",["#~D_SearchMetaData.ClassName~#","","#~D_SearchMetaData.FlowName~#","&=","","","",{"target":"primary"},""],["&",["OP",["$PD_SearchMetaData$ppySearchText","!=","","false"]]]],["refresh", ["thisSection","", "", "=", "", "ClearSSNSearchText,",":event","",["pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjlhOGExZDc1YTlmNTBiNzVlMmZkNGMwNDJhYTUzNGRhY2M0MGE4ZWI3YTc2ZTBiMGQ3ODM4YzY2MzAzNDIwZjExMDNkOGJhZDAzNDA2ODc0N2M4ZTIxNDBmOGU1MWE0YjcyMzQyZDJhZjkxZGViYzAxNmE1Y2RiMDNjM2FkMmI2MjNkMTM0YjdlZTc0ZDZmZTAyYTEyZjdkNWU4ZDM1MTQy*",{},{}],"pyDisplayHarness"]],["runScript", ["delayCheckForBusyIndicatorAndSetFocusToTab()"]]]" data-test-id="2015052504543705282660" data-ctl="Icon" class="icons pi pi-search-2 pi-regular" title="Search for a Social Security Number" aria-label="Search for a Social Security Number" name="CPMSearchInHeader_pyDisplayHarness_3" onclick="pd(event);" tabindex="0" role="button">
</i>
</span></div><input data-template="" data-test-id="2017072607533209168302" type="hidden" id="eaab92a5" value="" name="$PpyDisplayHarness$pSearchPortal">
</div>
</div>
</div><div class="content-item content-sub_section item-2 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMSearchInHeaderExt','className':'CPM-Portal','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMSearchInHeaderExt','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMSEARCHINHEADEREXT #20231021T003308.106 GMT','sectionType':'standard'}" data-template="" node_name="CPMSearchInHeaderExt" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMSearchInHeaderExt" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" data-postvalue-url="pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxZGM0MmJiZmM4ZjQ2OWQ3ZDg3NGVmNzYzZTkxOGRiODBlNjU0OWQwZWQ2ZjE5MDQ4YWNkZGM3NDlkM2Q0ZGYzOQ%3D%3D*" readonly="false" expandrl="" index="" uniqueid="SID1698333987821">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-stacked_no_margins content-stacked_no_margins set-width-auto margin-0 min-height-0 dl_min_height_0 margin-b-0" data-test-id="202004220927150782898" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-layout item-1 remove-top-spacing remove-left-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline_middle content-inline_middle padding-t-1x margin-b-0" data-test-id="202305191108410189451" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)'}" data-methodname=""><div class="content-item content-layout item-1 remove-top-spacing remove-left-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline_labels_left_2 content-inline_labels_left_2 " data-test-id="202305191500080690700" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-top-spacing remove-left-spacing remove-bottom-spacing remove-right-spacing flex" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxTextInput','clipboardPath':'D_SearchMetaData.GroupID','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><label data-test-id="20200422092219023411289-Label" class="field-caption dataLabelForWrite application_name_dataLabelForWrite icon-required " for="fca59b08" data-required="*">Group</label><div class="field-item dataValueWrite"><span data-control-mode="input" class="header_input" nowrap=""><input style="width:30px;" data-template="" data-change="[["postValue",[":event"]]]" data-test-id="20200422092219023411289" data-ctl="["TextInput"]" type="number" id="fca59b08" value="2" step="any" class="centerJustifyStyle" name="$PD_SearchMetaData$pGroupID" validationtype="integer,minchars" placeholder="" minchars="1" maxlength="1" aria-describedby="$PD_SearchMetaData$pGroupIDError " aria-invalid="false">
</span></div></div></div></div><div class="content-item content-layout item-2 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline_middle content-inline_middle " data-test-id="202305191546410775343" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-top-spacing remove-left-spacing flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span data-template="">
<button data-test-id="202305191533200001766" data-ctl="" data-click="[["openUrlInWindow", ["/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity=@baseclass.pzProcessURLInWindow&pyPreActivity=pzGetClipboardPages&showingAdvance=false&fromChange=false&selectedThread=&selectedThreadLabel=&nodeId=&requestorId=&launchClipboardViewer=true", "Clipboard Viewer", "height=768,width=1200,location=0,menubar=0,toolbar=0,status=0,resizable=1,location=0,scrollbars=1", "false",":event","false", "false"]]]" name="CPMSearchInHeaderExt_pyDisplayHarness_8" class="Header_Mobile_Icon pzhc pzbutton" type="button" title="Clipboard"><i aria-hidden="true" class="pi pi-clipboard pi-white" data-click="."></i></button>
</span></div><div class="content-item content-field item-2 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxCheckbox','clipboardPath':'D_SearchMetaData.cannedDataEnabled','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""><span class="checkbox" data-ctl="Checkbox" data-template="">
<input type="hidden" value="false" name="$PD_SearchMetaData$pcannedDataEnabled"><input type="checkbox" data-test-id="20211118121911067348715" class="checkbox chkBxCtl cb_cpm_search_header" value="true" name="$PD_SearchMetaData$pcannedDataEnabled" aria-describedby="$PD_SearchMetaData$pcannedDataEnabledError " id="596ec11f" validationtype="true-false" aria-invalid="false"><label data-test-id="20211118121911067348715-Label" for="596ec11f" class="cb_cpm_search_header cb_standard">Canned Data</label></span></div><div class="content-item content-field item-3 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxCheckbox','clipboardPath':'D_SearchMetaData.serviceFailuresEnabled','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template=""><span class="checkbox" data-ctl="Checkbox" data-change="[["postValue",[":event"]]]" title="Enable Service Failures" data-template="">
<input type="hidden" value="false" name="$PD_SearchMetaData$pserviceFailuresEnabled"><input type="checkbox" data-test-id="20211118121911067348715" class="checkbox chkBxCtl cb_cpm_search_header" value="true" name="$PD_SearchMetaData$pserviceFailuresEnabled" aria-describedby="$PD_SearchMetaData$pserviceFailuresEnabledError " id="324b7acf" title="Enable Service Failures" validationtype="true-false" data-change="." aria-invalid="false"><label data-test-id="20211118121911067348715-Label" for="324b7acf" data-change="." class="cb_cpm_search_header cb_standard">Service Failures</label></span></div><div class="content-item content-field item-4 flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxCheckbox','clipboardPath':'D_SearchMetaData.simulationEnabled','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)'}" data-template=""><span class="checkbox" data-ctl="Checkbox" data-change="[["postValue",[":event"]],["runDataTransform", ["ClearCustomerViewObjects", "=", "pyDisplayHarness",":event"],["&",["AP",["$PD_SearchMetaData$psimulationEnabled","=","false","true"]]]]]" data-template="">
<input type="hidden" value="false" name="$PD_SearchMetaData$psimulationEnabled"><input type="checkbox" data-test-id="202305191156020276613" class="checkbox chkBxCtl cb_cpm_search_header" value="true" name="$PD_SearchMetaData$psimulationEnabled" aria-describedby="$PD_SearchMetaData$psimulationEnabledError " id="d6e512c5" validationtype="true-false" data-change="." aria-invalid="false"><label data-test-id="202305191156020276613-Label" for="d6e512c5" data-change="." class="cb_cpm_search_header cb_standard">Use Cache</label></span></div><div style=" display:none;" class="content-item content-field item-5 remove-bottom-spacing remove-right-spacing flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-expr-id="55c68f9db85e1cce77630c8ddf743011c1b4705d_40" data-context="pyDisplayHarness" data-ui-meta="{'type':'Cell','subType':'pxButton','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5)'}" data-template=""><span data-template="">
<button data-test-id="202305191526370018305" data-ctl="" data-click="[["runDataTransform", ["ClearCustomerViewObjects", "=", "pyDisplayHarness",":event"]]]" name="CPMSearchInHeaderExt_pyDisplayHarness_12" class="Header_Mobile_Icon pzhc pzbutton" type="button" title="Clear cache"><i aria-hidden="true" class="pi pi-trash" data-click="."></i></button>
</span></div></div></div></div></div><div class="content-item content-layout item-2 remove-bottom-spacing remove-right-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline_labels_left_2 content-inline_labels_left_2 min-height-0 dl_min_height_0 margin-t-0 margin-b-1x margin-lr-0" data-test-id="202305191523110512370" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)'}" data-methodname=""><div style=" display:none;" class="content-item content-field item-1 remove-top-spacing remove-bottom-spacing remove-left-spacing flex" string_type="field" reserve_space="false" data-expr-id="55c68f9db85e1cce77630c8ddf743011c1b4705d_48" data-context="pyDisplayHarness" data-ui-meta="{'type':'Cell','subType':'pxTextInput','clipboardPath':'D_SearchMetaData.SaltValue','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><label data-test-id="20200422092219023411289-Label" class="field-caption dataLabelForWrite application_name_dataLabelForWrite icon-required " for="65b8905a" data-required="*">Salt</label><div class="field-item dataValueWrite"><span data-control-mode="input" class="header_input" nowrap=""><input style="" data-template="" data-change="[["postValue",[":event"]]]" data-test-id="20200422092219023411289" data-ctl="["TextInput"]" type="text" id="65b8905a" value="" class="leftJustifyStyle" title="Canned Data Salt Value" name="$PD_SearchMetaData$pSaltValue" placeholder="" aria-describedby="$PD_SearchMetaData$pSaltValueError " aria-invalid="false">
</span></div></div><div style=" display:none;" class="content-item content-field item-2 remove-top-spacing remove-bottom-spacing remove-right-spacing flex" string_type="field" reserve_space="false" data-expr-id="55c68f9db85e1cce77630c8ddf743011c1b4705d_51" data-context="pyDisplayHarness" data-ui-meta="{'type':'Cell','subType':'pxTextInput','clipboardPath':'D_SearchMetaData.servicesToFail','className':'Data-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""><label data-test-id="202305191115060519349-Label" class="field-caption dataLabelForWrite application_name_dataLabelForWrite icon-required " for="721ad429" data-required="*">Service</label><div class="field-item dataValueWrite"><span data-control-mode="input" class="header_input" nowrap=""><input style="" data-template="" data-hover="[["showSmartTip",[":event","tool_tip","To disable more than one service, enter comma separated values. <br>The list of allowable values are:<br>Rpds (eRPS)<br>Rome (ROME)<br>Mef (Earnings)<br>Common1099 (1099)<br>CommonMrc (Medicare Card)<br>Ssiis (Title 16)<br>T2ChangePayee (Title 2)<br>T2T18 (Title 2)<br>ClaimStatus (Claim Status)<br>IAccomm (Accommodations)<br>Piws (Person Information)<br>Ienp or OwnSsn (Core Services)<br>JdbcDataSourceQuery (Query)<br>PiqsAccommodations (Person Information Query)<br>General (CV Broker)<br>DI (MySSA Account Services)<br>Fra (Do not display the Complete customer record failed error if only FRA service is down. <br>If more than one service is down with FRA service do not include FRA in the list of the <br>services displayed in the error message.)<br>RASR (Do not display the Complete customer record failed error if only RASR service is down. <br>If more than one service is down with RASR service do not include FRA and RASR in the list of <br>the services displayed in the error message.)"]]]" data-change="[["postValue",[":event"]]]" onmouseover="pega.c.cbe.processHoverEvent(event)" data-test-id="202305191115060519349" data-ctl="["TextInput"]" type="text" id="721ad429" value="" class="leftJustifyStyle" name="$PD_SearchMetaData$pservicesToFail" placeholder="ex. FRA,RASR" aria-describedby="$PD_SearchMetaData$pservicesToFailError " aria-invalid="false">
</span></div></div></div></div></div>
</div>
</div></div></div><div class="content-item content-layout item-3 remove-bottom-spacing remove-right-spacing align-end set-width-auto flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-portal_header_group_secondary content-portal_header_group_secondary set-width-auto" data-test-id="201802211228180283800" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(3).pySections(1)'}" data-methodname=""><div class="content-item content-sub_section item-1 flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInteractionPortalHeaderTopRight','className':'CPM-Portal','pgRef':'.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(3).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInteractionPortalHeaderTopRight','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADERTOPRIGHT #20230724T123547.047 GMT','sectionType':'standard'}" data-template="" node_name="CPMInteractionPortalHeaderTopRight" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInteractionPortalHeaderTopRight" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988201">
<div data-template="" class="layout layout-noheader layout-noheader-portal_header float-right set-width-auto" data-test-id="201802050956070075321" data-layout-id=""> <div section_index="1" class="layout-body "><div bsimplelayout="true" data-template="" class=" flex content layout-content-portal_header_group_secondary content-portal_header_group_secondary set-width-auto" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-layout item-1 remove-left-spacing remove-right-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline dl_vt_center dl_min_height_0 padding-l-1x" data-test-id="20180205095607007922" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)'}" data-methodname=""><div class="content-item content-layout item-1 remove-all-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline " data-test-id="202303241029330159409" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)'}" data-methodname=""><div class="content-item content-sub_section item-1 remove-all-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'LoadESubmitMessagesAndAlerts','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""> <link rel="stylesheet" type="text/css" href="./index3_files/py-notification-gadget_12901382342.css!!.css"></div><div class="content-item content-sub_section item-2 remove-all-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'ESubmitMessagesAndAlerts','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'ESubmitMessagesAndAlerts','insKey':'RULE-HTML-SECTION @BASECLASS ESUBMITMESSAGESANDALERTS #20230331T221549.403 GMT','sectionType':'standard'}" data-template="" node_name="ESubmitMessagesAndAlerts" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="TempMessagesAndAlertsPage" data-node-id="ESubmitMessagesAndAlerts" version="1" objclass="Rule-HTML-Section" pyclassname="@baseclass" readonly="false" expandrl="" index="" uniqueid="SID1698333988253">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-mimic_a_sentence content-mimic_a_sentence notification-gadget" data-test-id="202303241303210196966" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-left-spacing remove-right-spacing flex flex-row messages-alerts-icon dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxIcon','clipboardPath':'.pyTemplateGeneric','className':'SSA-ES-Data-MessagesAndAlerts','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span><i data-template="" data-click="[["processAction", ["DisplayESubmitMessagesAndAlertsForRecipient","overlay",":event","TempMessagesAndAlertsPage","Rule-HTML-Section","pz-po-c-standard_no_padding","pzModalTemplate","%7B%22mobile%22%3A%7B%22reveal%22%3A%7B%22effect%22%3A%22anim-null%22%7D%2C%22isCustomDismiss%22%3A%22true%22%2C%22dismiss%22%3A%7B%22effect%22%3A%22anim-null%22%7D%7D%7D","true","SSA-ES-Data-MessagesAndAlerts","SSA-ES-Data-MessagesAndAlerts","false","false","",""]],["refresh", ["otherSection","ESubmitMessagesAndAlertsCount", "", "=", "", ",",":event","1",["pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4Mjk0MTY4NmQwYTA4NzlhZGE1ZTM5YjNhNmEzMDBmOGI0ZA%3D%3D*",{},{}],"TempMessagesAndAlertsPage"]]]" data-test-id="20230322101033011543" data-ctl="Icon" class="icons pi pi-bell pi-white pi-medium" title="Messages and Alerts" aria-label="Messages and Alerts" name="ESubmitMessagesAndAlerts_TempMessagesAndAlertsPage_1" onclick="pd(event);" tabindex="0" role="button">
</i>
</span></div><div class="content-item content-sub_section item-2 remove-left-spacing remove-right-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'ESubmitMessagesAndAlertsCount','className':'SSA-ES-Data-MessagesAndAlerts','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template="">
<div data-expr-id="fea39b75c3d6633a2653568e72cd774dcea4d0fa_12" data-context="D_ESubmitMessagesAndAlertsCount_pa40215928060197pz">
<div data-ui-meta="{'type':'Section','ruleName':'ESubmitMessagesAndAlertsCount','insKey':'RULE-HTML-SECTION @BASECLASS ESUBMITMESSAGESANDALERTSCOUNT #20230324T004252.830 GMT','sectionType':'standard'}" data-template="" node_name="ESubmitMessagesAndAlertsCount" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="D_ESubmitMessagesAndAlertsCount_pa40215928060197pz" data-node-id="ESubmitMessagesAndAlertsCount" version="1" objclass="Rule-HTML-Section" pyclassname="@baseclass" data-postvalue-url="pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxODJmNWUwZTg2OTdmZTM0YzY1ZDc0OTIyMzBhNDgwZDM4YzdjNzE0MjQyNTNlNmI2YzViZjE5NDBkYzQwYTRjNA%3D%3D*" readonly="false" expandrl="" index="" uniqueid="SID1698333988361" data-declare-params="{'Recipient':'#~OperatorID.pyUserIdentifier~#'}" data-declarepage="D_ESubmitMessagesAndAlertsCount">
<div data-template="" class="layout layout-none set-width-auto" data-expr-id="456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_8" data-context="D_ESubmitMessagesAndAlertsCount_pa40215928060197pz" style="display:none;" data-test-id="202202150050120898427" data-layout-id=""> <div section_index="1" class="layout-body clearfix "><div bsimplelayout="true" data-template="" class=" content layout-content-mimic_a_sentence content-mimic_a_sentence set-width-auto clearfix" data-subscription-id="2361a587-7e84-4ca2-bc05-cf0a3596b231" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-message="[["refresh", ["otherSection","ESubmitMessagesAndAlerts", "", "=", "", "FlushESubmitMessagesAndAlertsCount,",":event","",["pzuiactionzzz=CXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjliMzM5NmNlOWUzOWNkMDU3MTZkMTIwODhmZTczYWQ3MzdmN2U4MGEwNTRmNzdlMWU5YWE1MTNjY2M5MTNhMTI5M2UyMmU0ZWQ3N2U2N2MzN2YxN2I0NzE5ZTBkYWRjNjdlYzI4OWYwY2QyNmQwN2E5OWIyZDg2OTcxMDk2ZTE0Mg%3D%3D*",{},{}],"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz"]]]" data-methodname=""><div data-tour-id="UnreadNotificationsCount" class="content-item content-field item-1 notification-count" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxDisplayText','clipboardPath':'.pyUnreadNotificationsCount','className':'Code-Pega-List','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><div class="content-inner "><div class="field-item dataValueRead"><span data-template="" data-test-id="2017021503461902791294" class="">0</span></div></div></div><input data-template="" data-change="[["postValue",[":event"]]]" data-test-id="201702280447030328986" type="hidden" id="88455980" value="0" name="$PD_ESubmitMessagesAndAlertsCount_pa40215928060197pz$ppyUnreadNotificationsCount">
</div>
</div></div>
</div>
</div></div></div>
</div>
</div></div></div><div class="content-item content-layout item-2 remove-all-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default pointer has-action" tabindex="0" data-test-id="201802050956070079718" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)'} " data-tour-id="HomeTab-6" data-focus="[["runScript", ["showResourceTooltip()"]]]" data-click="[["showMenu",[{"dataSource":"ResourcesMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-header-menu" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698333987866"},":event"]],["runScript", ["setResourcesMenuLinksTitleAttr()"]]]" data-keydown="[["showMenu",[{"dataSource":"ResourcesMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-header-menu" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698333987867"},":event"],,"enter"],["runScript", ["setResourcesMenuLinksTitleAttr()"],,"enter"]]" role="link" aria-label="Resources Menu" data-methodname=""><div class="content-item content-sub_section item-1 remove-all-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'ResourcesIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'ResourcesIcon','insKey':'RULE-HTML-SECTION CPM-PORTAL RESOURCESICON #20231011T110956.947 GMT','sectionType':'standard'}" data-template="" node_name="ResourcesIcon" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="ResourcesIcon" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988412">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline set-width-auto" data-test-id="201802050958070647200" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div class="content-item content-field item-1 remove-all-spacing flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span><i data-template="" data-test-id="20170531054905054049822" data-ctl="Icon" class="cursordefault icons cs-icon-status cs-icon-status-staging pi pi-clipboard-content-icon" title="Resources Menu" aria-label="Resources Menu" name="ResourcesIcon_pyDisplayHarness_1" onclick="pd(event);" role="img">
</i>
</span></div></div>
</div>
</div></div></div><div class="content-item content-layout item-3 remove-all-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline pointer has-action" tabindex="0" data-test-id="201802050956070079718" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4).pySections(1)'}" data-focus="[["runScript", ["showUserMenuTooltip()"]]]" data-click="[["showMenu",[{"dataSource":"CPMInteractionPortalUserMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-header-menu" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698333987883"},":event"]]]" data-keydown="[["showMenu",[{"dataSource":"CPMInteractionPortalUserMenu", "isNavNLDeferLoaded":"false", "isNavTypeCustom":"false", "className":"CPM-Portal","UITemplatingStatus":"Y","menuAlign":"left","format":"menu-format-header-menu" , "loadBehavior":"ondisplay", "ellipsisAfter":"999","usingPage":"pyDisplayHarness", "useNewMenu":"true", "isMobile":"false", "navPageName":"pyNavigation1698333987884"},":event"],,"enter"]]" role="link" aria-label="Interaction Portal User Menu" data-methodname=""><div class="content-item content-field item-1 remove-all-spacing flex flex-row user-menu-icon dataValueWrite custom-control" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'OperatorImage','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""> <link rel="stylesheet" type="text/css" href="./index3_files/py-avatar_11622621979.css!!.css"> <i data-ctl="non-auto" data-test-id="px-opr-image-ctrl" class="icons avatar name-s " style="width:30px;height:30px;" title="User Menu"> <svg aria-hidden="true" focusable="false" viewBox="0 0 100 100" pointer-events="none" xmlns="http://www.w3.org/2000/svg" id="pyDisplayHarnessWithoutImage"> <circle cx="50" cy="50" r="50" fill="purple"></circle> <circle cx="15" cy="85" r="14" id="operatorWithoutImage" class="operatorWithoutImage" style="display:none;fill:#00a459;"></circle> <text x="50%" y="65%" transform="scale(1, 1)" text-anchor="middle" fill="white" font-size="42">SR</text> </svg> </i> </div></div></div><div class="content-item content-layout item-4 remove-all-spacing flex flex-row" string_type="layout" reserve_space="false" data-template=""><div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default pointer has-action" tabindex="0" data-test-id="201802050956070079718" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5).pySections(1)'} " data-tour-id="HomeTab-6" data-focus="[["runScript", ["showGuidedTourTooltip()"]]]" data-click="[["guidedTour", ["CPM-Portal","TEDGuidedTour","Start","true","CustomTourStopContainer"]]]" data-keydown="[["guidedTour", ["CPM-Portal","TEDGuidedTour","Start","true","CustomTourStopContainer"],,"enter"]]" role="link" aria-label="Guided Tour" data-methodname=""><div class="content-item content-sub_section item-1 remove-all-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'GuidedTourIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'GuidedTourIcon','insKey':'RULE-HTML-SECTION CPM-PORTAL GUIDEDTOURICON #20231011T110956.079 GMT','sectionType':'standard'}" data-template="" node_name="GuidedTourIcon" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="GuidedTourIcon" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988564">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline set-width-auto" data-test-id="201802050958070647200" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""><div data-tour-id="HomeTab-11" class="content-item content-field item-1 remove-all-spacing flex flex-row dataValueWrite" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxIcon','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template=""><span><i data-template="" data-test-id="20170531054905054049822" data-ctl="Icon" class="cursordefault icons cs-icon-status cs-icon-status-staging pi pi-chart-donut-solid" title="Launch Guided tour" aria-label="Launch Guided tour" name="GuidedTourIcon_pyDisplayHarness_1" onclick="pd(event);" role="img">
</i>
</span></div></div>
</div>
</div></div></div></div></div><div class="content-item content-field item-2 remove-left-spacing remove-right-spacing flex flex-row dataValueWrite custom-control" string_type="field" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'pxGuidedTourAutoStart','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template=""> <!-- Does the user have this tour specified as an auto-launch tour? --> <!-- Always auto-launch this tour if AutoLaunchAlways is true (-1) --> <!-- Otherwise, go down the path of checking sticky preference --> <!-- Check that this tour has not been run by this user already --> </div></div>
</div></div>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(2)','clipboardPath':'SetUserMenuIconTitle508'}">
</span>
</div>
</div></div></div><input data-template="" data-test-id="201803290243080308130304" type="hidden" id="95afd034" value="en_US" name="$PpxRequestor$ppxReqLocale">
</div>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(6)','clipboardPath':'CSRNotificationsController'}">
</span>
<div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default CpmKmwrapper" data-test-id="20180221122818028594" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(7)'}" data-methodname=""><div class="content-item content-sub_section item-1 remove-all-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CSKMContainer','className':'CPM-Portal','pgRef':'.pySections(7).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CSKMContainer','insKey':'RULE-HTML-SECTION CPM-PORTAL CSKMCONTAINER #20200817T053746.712 GMT','sectionType':'standard'}" data-template="" node_name="CSKMContainer" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CSKMContainer" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988680">
</div>
</div><input data-template="" data-click="[["runScript", ["event()"]]]" data-test-id="20190529021535025355333" type="hidden" id="70eabe54" value="" name="$PpyDisplayHarness$ppyTemplateInputBox">
</div>
</div>
</span>
</div>
</div></header> <main data-skip-target="main" data-ui-meta="{'type':'Panel','subType':'CENTER'}" id="l2" class="screen-layout-region screen-layout-region-main screen-layout-region-main-middle not-nav dc-screen-layout-region-main-middle-tab dc-standard-tabs" aria-label="Center Panel" role="main"><div class="screen-layout-region-content">
<div data-ui-meta="{'type':'Section','ruleName':'CSPortalBodyWrapper','insKey':'RULE-HTML-SECTION CPM-PORTAL CSPORTALBODYWRAPPER #20231011T110954.734 GMT','sectionType':'standard'}" data-template="" node_name="CSPortalBodyWrapper" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CSPortalBodyWrapper" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988681">
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(1)','clipboardPath':'CPMInteractionPortalWorkAreaWrapper'}">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInteractionPortalWorkAreaWrapper','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALWORKAREAWRAPPER #20231011T110953.731 GMT','sectionType':'standard'}" data-template="" node_name="CPMInteractionPortalWorkAreaWrapper" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInteractionPortalWorkAreaWrapper" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988682">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-inline content-inline " data-test-id="2018041821025701091000" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" role="main" tabindex="-1" data-skip-target="main" data-methodname=""><div class="content-item content-sub_section item-1 remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row dc-wrapper" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInteractionPortalWorkArea','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInteractionPortalWorkArea','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALWORKAREA #20230615T134404.901 GMT','sectionType':'standard'}" data-template="" node_name="CPMInteractionPortalWorkArea" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInteractionPortalWorkArea" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988683">
<div id="workarea" data-mode="Tabbed" data-multiview="1" data-responsivedc="false" data-tabformat="STANDARD" class="dc-wrapper with-fixed-header " style="height: 837px;" data-nsr="false"><div class="dc-header"><div class="contents-wrapper"><div class="contents"><div class="yui-navset pegaTabGrp yui-navset-header headerTabbed headerTabbed-t" id="dummyDiv"><div class="scrlCntr" data-hide-tab-scroll="true"><div class="harnessHeaderIcons rightborder"><span id="TABSPAN"><table cellspacing="0" cellpadding="0" role="presentation"><tbody><tr><td nowrap="nowrap" class="tdRightStyle"><table cellpadding="0" cellspacing="0" align="right" role="presentation"><tbody><tr><td id="HeaderButtonIconsTDId"> </td><td><input type="hidden" id="HeaderButtonSectionIndicator" value=""></td></tr></tbody></table></td></tr></tbody></table></span></div><ol title="Tab Menu" class="yui-nav tsb-menu tab-ul tab-ul-t tab-ul-t-ns headerTabsList" style="display: inline-block; visibility: hidden;"><li sel_prefix="tab-li-t-ns" class="tab-li tab-li-t tab-li-t-ns "><a role="link" aria-haspopup="true" id="TABANCHOR" tabindex="0" aria-label="Tab Menu"> <span id="TABSPAN" class="textOut tab-span tab-span-t tab-span-t-ns " style="white-space: nowrap;"><span class="textMiddle"><span class="textIn" inanchor="">▼</span></span></span></a></li></ol><div class="tStrCntr"><ul role="tablist" class="yui-nav tab-ul tab-ul-t tab-ul-t-ns headerTabsList"><li role="tab" aria-selected="false" aria-label="" tabindex="-1" section_index="2" tabgroupname="c66230a4-dae4-4346-afb0-c6c544079c8e" elementname="f407217f-a5c7-4aa5-bbaf-a48ad7eb9f68" id="Tab2" sel_prefix="tab-li-t-ns" class="tab-li tab-li-t tab-li-t-ns" title="Home"><span id="TABANCHOR" href="#Tab2"><span id="TABSPAN" class="textOut tab-span tab-span-t tab-span-t-ns " style="white-space: nowrap;" role="application"><table role="presentation" id="RULE_KEY" width="auto" cellspacing="0" cellpadding="0"><tbody><tr><td nowrap=""><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 14 14" style="display: inline; vertical-align: middle; margin-right: 3px;" xml:space="preserve">
<style type="text/css">
.st0{fill-rule:evenodd;clip-rule:evenodd;}
</style>
<path class="st0" d="M13.9,7.8c-0.2,0.2-0.5,0.2-0.6,0l-1.9-2l0,7.8c0,0.2-0.2,0.4-0.4,0.4L3,14c-0.2,0-0.4-0.2-0.4-0.4l0-7.8 l-1.9,2c-0.2,0.2-0.5,0.2-0.6,0C0,7.5,0,7.3,0.1,7.1l6.6-7C6.8,0,6.9,0,7,0c0.1,0,0.2,0,0.3,0.1l6.5,7C14,7.3,14,7.6,13.9,7.8z M7,1.1L3.4,4.9C3.5,5,3.5,5.1,3.5,5.2l0,7.9l7,0l0-7.9c0-0.1,0-0.2,0.1-0.3L7,1.1z"></path>
</svg></td><td nowrap=""><span data-stl="1" id="" inanchor="" style="display: inline-block; cursor: pointer;">Home</span></td><td nowrap="" class="reset-line-height"></td></tr></tbody></table></span></span></li><li role="tab" aria-selected="true" aria-label="First NameLast Name: ###" tabindex="0" section_index="3" tabgroupname="c66230a4-dae4-4346-afb0-c6c544079c8e" elementname="b89027b2-aa0f-c6d1-a161-e964a9d390b7" id="Tab3" sel_prefix="tab-li-t-ns" class="tab-li tab-li-t tab-li-t-ns selected tab-li-t-ns-selected" title="New"><span id="TABANCHOR"><span id="TABSPAN" class="textOut tab-span tab-span-t tab-span-t-ns " style="white-space: nowrap;" role="application"><table role="presentation" id="RULE_KEY" width="auto" cellspacing="0" cellpadding="0"><tbody><tr><td nowrap=""></td><td nowrap=""><span data-stl="1" id="" inanchor="" style="display: inline-block; cursor: pointer;"> <div data-ui-meta="{'type':'Section','ruleName':'pyCustomDCTabSection','insKey':'RULE-HTML-SECTION SSA-FW-SDFW-WORK PYCUSTOMDCTABSECTION #20231011T111131.793 GMT','sectionType':'standard'}" class="sectionDivStyle " style="" id="RULE_KEY" node_type="MAIN_RULE" node_name="pyCustomDCTabSection" data-node-id="pyCustomDCTabSection" version="1" objclass="Rule-HTML-Section" pyclassname="SSA-FW-SDFW-Work" readonly="true" expandrl="" uniqueid="SID1698334085276"><span class="inspector-span" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(1)','clipboardPath':'CustomTabSection'}"><div id="CT" rwp=".CSTabTitle" rw=".CSTabTitle Changes" data-dprw=".CurrentInteractionID Changes" sec_baseref="D_Interaction_pa43744161966410pz" fullprops="pyWorkPage.CSTabTitle,pyWorkPage.CurrentInteractionID"><div data-ui-meta="{'type':'Section','ruleName':'CustomTabSection','insKey':'RULE-HTML-SECTION SSA-FW-SDFW-WORK CUSTOMTABSECTION #20231011T111124.573 GMT','sectionType':'standard'}" class="sectionDivStyle " style="" id="RULE_KEY" node_type="MAIN_RULE" node_name="CustomTabSection" data-node-id="CustomTabSection" version="1" objclass="Rule-HTML-Section" pyclassname="SSA-FW-SDFW-Work" readonly="true" name="BASE_REF" base_ref="D_Interaction_pa43744161966410pz" expandrl="" uniqueid="SID1698334085277" data-subscription-id="eb13b50e-fd92-46ac-b37a-47eb2d8596cf" data-message="[["runScript", ["tabSwitchHandler()"]]]" data-declare-params="{'InteractionId':'#~D_Interaction_pa43744161966410pz.CurrentInteractionID~#'}" data-declarepage="D_Interaction" full_base_ref="D_Interaction_pa43744161966410pz"><div class="layout layout-none has-action "><div section_index="2" class=" layout-body clearfix"><div bsimplelayout="true" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(2)'}" class="flex content pointer has-action layout-content-inline_middle content-inline_middle dl_min_height_0 reduce-height cs-dc-tab" data-click="[["runDataTransform", ["SetVerificationParamSource", "VerifyAccNum=", "D_Interaction_pa43744161966410pz",":event"]]]" data-refresh="true" data-methodname="simpleLayout_2" rwp=".CSTabTitle" rw=".CSTabTitle Changes" pdt="SetVerificationParamSource,VerifyAccNum=" sec_baseref="D_Interaction_pa43744161966410pz" fullprops="D_Interaction_pa43744161966410pz.CSTabTitle"><div style="" data-ui-meta="{'type':'Cell','subType':'pxIcon','clipboardPath':'.pyTemplateGeneric','className':'SSA-TED-Work-Interaction-InboundCall','pgRef':'.pySections(2).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" class="content-item content-field item-1 remove-top-spacing remove-bottom-spacing remove-left-spacing dataValueRead flex flex-row " string_type="field" reserve_space="false"><span><i data-test-id="20200903183836058451826" href="" onclick="pd(event);" data-ctl="Icon" class="cursordefault icons pcs-phone pi-tab-icon" name="CustomTabSection_D_Interaction_21" alt=""></i></span></div><div style="" data-ui-meta="{'type':'Cell','subType':'pxDisplayText','clipboardPath':'.CSTabTitle','className':'SSA-TED-Work-Interaction-InboundCall','pgRef':'.pySections(2).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" class="content-item content-field item-2 remove-top-spacing remove-bottom-spacing reduce-height dataValueRead flex flex-row " string_type="field" reserve_space="false"><span data-test-id="2015041615024802351691">First Name<br>Last Name: ###</span></div></div></div></div></div>
</div></span><span class="inspector-span" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(2)','clipboardPath':'RefreshTabScript'}"> </span></div> </span></td><td nowrap="" class="reset-line-height"><span role="button" id="close" aria-label="Close First NameLast Name: ### tab" title="Close Tab" tabindex="0" class="iconCloseSmall" data-stc="1" style="margin-left:3px;vertical-align:top"></span></td></tr></tbody></table></span></span></li><li class="rightborder disabled" style="list-style: none; cursor: default; visibility: visible;" tabindex="-1"><span id="TABSPAN"><table cellspacing="0" cellpadding="0" role="presentation"><tbody><tr></tr></tbody></table></span></li></ul><div style="display:inline-block;height:100%;width:100%;" class="rightborder"></div></div></div></div></div></div></div><span id="WAMaxtabs" value="8" data-ml="You have reached the maximum limit of open tabs"></span><input type="hidden" id="pzWAStrings" data-s1="Work Item Already Open" data-s2="Work Object Already Open" data-s3="Application" data-s4="is already open." data-s5="Would you like to reopen the item and lose any unsaved changes?" data-s6="Close All" data-s7="Remaining open tabs have unsaved work." data-s8="Please close them manually." data-s9="Assignment" data-s10="Work item" data-s11="New" data-s12="Opening..." data-s13="Document associated with this recent item is dirty.
Please close the document manually." data-s14="Remaining open documents have unsaved work or not tracking in recents.
Please close them manually." data-s15="Next">
<div class="dc-main"><div data-ui-meta="{'type':'Layout','subType':'TABGROUP','pgRef':'.pySections(1)'}" id="PEGA_TABBED0" tabgroupid="TGCPMInteractionPortalWorkAreaA" tabgroupname="c66230a4-dae4-4346-afb0-c6c544079c8e" activewhentab="" defaulttab="1" class="yui-navset pegaTabGrp yui-navset-top contents-wrapper with-fixed-header headerTabbed headerTabbed-t" data-taberror="Correct all fields containing errors. " data-pos="Top"> <div data-stcd="1" class="yui-content contents tabContent"><div style="display: none;" role="tabpanel" class="tabpanelnofocus" tabindex="-1" aria-hidden="true"></div><div class="dynamicContainer iframe-wrapper tabbed_expandInnerDivStyle tabpanelnofocus" role="tabpanel" id="PegaWebGadget0" style="display: none;" section_index="" pegathread="PS2__TABTHREAD0" pegagadget="PegaGadget0" pegae_ondomready="pega.ui.WorkAreaGadget.onGadgetDomReady" pegae_onerror="pega.ui.WorkAreaGadget.onGadgetDomReady" pegae_onload="pega.ui.WorkAreaGadget.onGadgetDomLoad" pegae_onclose="pega.ui.WorkAreaGadget.onGadgetClose" aria-labelledby="Tab2" tabindex="-1" aria-hidden="true"><iframe name="PegaGadget0Ifr" allow="geolocation *;" id="PegaGadget0Ifr" border="0" frameborder="0" src="./index3_files/saved_resource.html" style="" title="Home"></iframe></div><div class="dynamicContainer iframe-wrapper tabbed_expandInnerDivStyle tabpanelnofocus" role="tabpanel" id="PegaWebGadget1" style="display: block;" section_index="" pegathread="PS2__TABTHREAD1" pegagadget="PegaGadget1" pegae_ondomready="pega.ui.WorkAreaGadget.onGadgetDomReady" pegae_onerror="pega.ui.WorkAreaGadget.onGadgetDomReady" pegae_onload="pega.ui.WorkAreaGadget.onGadgetDomLoad" pegae_onclose="pega.ui.WorkAreaGadget.onGadgetClose" aria-labelledby="Tab3" tabindex="-1" aria-hidden="false"><iframe name="PegaGadget1Ifr" allow="geolocation *;" id="PegaGadget1Ifr" border="0" frameborder="0" src="./index3_files/!PS2__TABTHREAD1.html" style="" title="New"></iframe></div></div><input type="hidden" name="EXPANDEDTGCPMInteractionPortalWorkAreaA" value="3"><div id="" style="display:none"><ul id="HeaderTemplateList" class="yui-nav tab-ul tab-ul-t tab-ul-t-ns "><!--<li role = "tab" aria-selected="false" aria-label="{LBL}" tabindex="-1" section_index="{IND}" id="Tab{IND}" sel_prefix='tab-li-t-ns' class="tab-li tab-li-t tab-li-t-ns " ><span id="TABANCHOR"><span id="TABSPAN" class="textOut tab-span tab-span-t tab-span-t-ns " style="white-space: nowrap;"><table role="presentation" id='RULE_KEY' width='auto' cellSpacing=0 cellPadding=0 ><tbody><tr><td noWrap=''><img data-wi='1' style='display:none' /></td><td noWrap=''><span data-stl= "1" id="" inAnchor="" >{LBL}</span><td noWrap='' class='reset-line-height'><span role="button" id="close" aria-label="Close Tab" title="Close Tab" tabindex="-1" class="iconCloseSmall" data-stc="1" style="margin-left:3px;vertical-align:top"></span></td></tr></tbody></table></span></span></li>--></ul><div class="dynamicContainer iframe-wrapper tabbed_expandInnerDivStyle" role="tabpanel" id="BodyTemplate" style="display:none;" section_index=""></div></div></div></div></div>
</div>
</div><div class="content-item content-sub_section item-2 remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row inbound-wrapper" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInboundEmailArea','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)'}" data-template="">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInboundEmailArea','insKey':'RULE-HTML-SECTION CPM-PORTAL CPMINBOUNDEMAILAREA #20200817T053735.759 GMT','sectionType':'standard'}" data-template="" node_name="CPMInboundEmailArea" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="" data-node-id="CPMInboundEmailArea" version="1" objclass="Rule-HTML-Section" pyclassname="CPM-Portal" readonly="false" expandrl="" index="" uniqueid="SID1698333988684">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-test-id="201801101655380295961" style="display:none" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-expr-id="9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_3" data-context="pyDisplayHarness" data-methodname=""><div class="content-item content-sub_section item-1 flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInboundEmailWrapperForm','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-expr-id="9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_9" data-context="D_Interaction_pa38226014852671pz">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInboundEmailWrapperForm','insKey':'RULE-HTML-SECTION PEGACA-WORK-INTERACTION CPMINBOUNDEMAILWRAPPERFORM #20200817T054041.428 GMT','sectionType':'standard'}" data-template="" node_name="CPMInboundEmailWrapperForm" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="D_Interaction_pa38226014852671pz" data-node-id="CPMInboundEmailWrapperForm" version="1" objclass="Rule-HTML-Section" pyclassname="PegaCA-Work-Interaction" readonly="false" expandrl="" index="" uniqueid="SID1698333988685" data-declare-params="{'InteractionId':'#~D_CPMPortalContext.ParentID~#'}" data-declarepage="D_Interaction">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-test-id="201801091426430788394" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""></div>
</div>
</div></div></div>
<div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-test-id="201801101655380295961" style="" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(2)'}" data-expr-id="9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_12" data-context="pyDisplayHarness" data-methodname=""><div class="content-item content-sub_section item-1 flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'CPMInboundEmailWrapperForm','className':'CPM-Portal','pgRef':'.pySections(2).pySectionBody(1).pyTable.pyRows(1).pyCells(1)'}" data-template="">
<div data-expr-id="9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_9" data-context="D_Interaction_pa38226014852671pz">
<div data-ui-meta="{'type':'Section','ruleName':'CPMInboundEmailWrapperForm','insKey':'RULE-HTML-SECTION PEGACA-WORK-INTERACTION CPMINBOUNDEMAILWRAPPERFORM #20200817T054041.428 GMT','sectionType':'standard'}" data-template="" node_name="CPMInboundEmailWrapperForm" node_type="MAIN_RULE" name="BASE_REF" id="RULE_KEY" class="sectionDivStyle " style="" base_ref="D_Interaction_pa38226014852671pz" data-node-id="CPMInboundEmailWrapperForm" version="1" objclass="Rule-HTML-Section" pyclassname="PegaCA-Work-Interaction" readonly="false" expandrl="" index="" uniqueid="SID1698333988686" data-declare-params="{'InteractionId':'#~D_CPMPortalContext.pyID~#'}" data-declarepage="D_Interaction">
<div bsimplelayout="true" data-template="" class=" flex content layout-content-default content-default " data-test-id="201801091426430788394" data-ui-meta="{'type':'Layout','subType':'DYNAMICLAYOUT','pgRef':'.pySections(1)'}" data-methodname=""></div>
</div>
</div></div></div>
</div>
</div><div class="content-item content-sub_section item-3 remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row" string_type="sub_section" reserve_space="false" data-ui-meta="{'type':'Cell','subType':'SUB_SECTION','clipboardPath':'ToasterPop','className':'CPM-Portal','pgRef':'.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)'}" data-template="">
<div aria-live="polite" aria-atomic="true" id="toasterpop">
</div></div></div>
<span class="inspector-span" data-template="" data-ui-meta="{'type':'Layout','subType':'SECTIONINCLUDE','pgRef':'.pySections(2)','clipboardPath':'CSBodyHeightResizer'}">
</span>
</div>
</span>
</div>
</div></main> </div> <input type="hidden" id="pySpecialtyComponentData" name="$PpyDisplayHarness$ppySpecialtyComponentData" value="">
<div style="display:none;" id="PegaOnlyOnce" data-json="["AutomationScripts","CompositeGadgetPortal","ControlMenu","DesktopWrapperInclude","DeterminePortalTop","DynamicContainer","DynamicLayout","DynamicLayoutCell","EvalDOMScripts_Include","GapIdentifier","HarnessStaticJSEnd","HarnessStaticJSStart","HarnessStaticScriptsClientValidation","LaunchFlow","MenuBar","MenuBarOld","MobileAppNotify","OperatorPresenceStatusScripts","PMCHarnessStaticScripts","PMCPortalStaticScripts","SessionUser","SurveyStaticScripts","WorkAreaTabsCntnr","WorkformStyles","jsonscripts","localization","menubarInclude","pxButton","pxCheckbox","pxDisplayText","pxDropdown","pxHidden","pxIcon","pxLayoutContainer","pxLink","pxNonTemplate","pxSection","pxTextInput","pxVisible","pyWorkFormStandardEnd","pyWorkFormStandardStart","pzDecimalInclude","pzHarnessInlineScriptsEnd","pzHarnessInlineScriptsStart","pzRuntimeToolsBar","pzpega_ui_harnesscontext","uiautomationscripts","xmlDocumentInclude"]"></div>
<div template-scripts=""><script>if ( window.name && window.name.indexOf('yuiIO') == 0 ){window.onerror=function(){return true}}</script><script type="text/javascript" src="./index3_files/pzpega_ui_template_link_12470607708.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_template_button_13321510139.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_template_icon_12704696492.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_control_menu_scripts_13040087360!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_template_dropdown_11484983828.js!pzpega_control_dropdown_12449143788.js!pzpega_ui_dropdown_13388004942.js!pzpega_control_dropdownbutton_12677593777.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_formatnumber_18673178.js!pzpega_ui_markdown_it_13093754858.js!pzxss_12226789527.js!pzpega_ui_advancedtext_11383516646.js!pzpega_ui_template_displaytext_12816654301.js!pzpega_.download"></script><script type="text/javascript" src="./index3_files/pzpega_control_textinput_11791023336.js!pzpega_ui_template_textinput_12703779033.js!pzpega_ui_formatnumber_18673178.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_decimal_14013859869.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_template_hidden_1560811745.js!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_template_checkbox_1919084201.js!pzpega_control_checkbox_11562282053.js!!.js.download"></script> <script type="text/javascript" src="./index3_files/pega_tools_xmldocument_13259175333.js!pega_ui_menubar_14291414640.js!pzpega_ui_launchflow_12093644869.js!!.js.download"></script> <script>if(typeof pega != 'undefined' && pega.ui && pega.ui.ExpressionEvaluator)pega.ui.ExpressionEvaluator.addExpressionMeta({"expressions":{"2fd9314397916edcb5aa8a9eb49890b68e910168_3":{"refreshWhen":{"expr":"this['Declare_pyDisplay.pyDisplay(CPMInteractionPortal).pyUIActive(1).pyThreadId'] Changes","props":["Declare_pyDisplay.pyDisplay(CPMInteractionPortal).pyUIActive(1).pyThreadId"]},"baseRef":"pyDisplayHarness"},"9e829740e7172d0015f28e72a900586e25b504a7_7":{"refreshWhen":{"expr":"this['OperatorID.OfficeCode'] Changes","props":["OperatorID.OfficeCode"]},"baseRef":"pyDisplayHarness"},"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_12":{"showWhen":{"expr":"(this['Application.pyDisplayOption'] == 'logo' || this['Application.pyDisplayOption'] == 'logo+application')","props":["Application.pyDisplayOption"]},"baseRef":"pyDisplayHarness"},"55c68f9db85e1cce77630c8ddf743011c1b4705d_40":{"showWhen":{"expr":"this['D_SearchMetaData.simulationEnabled'] == 'true'","props":["D_SearchMetaData.simulationEnabled"]},"baseRef":"pyDisplayHarness"},"55c68f9db85e1cce77630c8ddf743011c1b4705d_48":{"showWhen":{"expr":"this['D_SearchMetaData.cannedDataEnabled'] == 'true'","props":["D_SearchMetaData.cannedDataEnabled"]},"baseRef":"pyDisplayHarness"},"55c68f9db85e1cce77630c8ddf743011c1b4705d_51":{"showWhen":{"expr":"this['D_SearchMetaData.serviceFailuresEnabled'] == 'true'","props":["D_SearchMetaData.serviceFailuresEnabled"]},"baseRef":"pyDisplayHarness"},"fea39b75c3d6633a2653568e72cd774dcea4d0fa_12":{"sectionRefreshWhen":{"expr":"this['OperatorID.pyUserIdentifier'] Changes","props":["OperatorID.pyUserIdentifier"]},"baseRef":"TempMessagesAndAlertsPage"},"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_8":{"showWhen":{"expr":"this['.pyUnreadNotificationsCount'] > 0","props":[".pyUnreadNotificationsCount"]},"baseRef":"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_10":{"showWhen":{"expr":"this['D_CPMPortalContext.pyID'] == '' && this['D_CPMPortalContext.OtherContextID'] != ''","props":["D_CPMPortalContext.pyID","D_CPMPortalContext.OtherContextID"]},"baseRef":"pyDisplayHarness"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_3":{"showWhen":{"expr":"this['D_CPMPortalContext.pyID'] == '' && this['D_CPMPortalContext.OtherContextID'] != ''","props":["D_CPMPortalContext.pyID","D_CPMPortalContext.OtherContextID"]},"baseRef":"pyDisplayHarness"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_9":{"sectionRefreshWhen":{"expr":"this['D_CPMPortalContext.ParentID'] Changes","props":["D_CPMPortalContext.ParentID"]},"baseRef":"pyDisplayHarness"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_19":{"showWhen":{"expr":"this['D_CPMPortalContext.pyID'] != '' && this['D_CPMPortalContext.OtherContextID'] == ''","props":["D_CPMPortalContext.pyID","D_CPMPortalContext.OtherContextID"]},"baseRef":"pyDisplayHarness"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_12":{"showWhen":{"expr":"this['D_CPMPortalContext.pyID'] != '' && this['D_CPMPortalContext.OtherContextID'] == ''","props":["D_CPMPortalContext.pyID","D_CPMPortalContext.OtherContextID"]},"baseRef":"pyDisplayHarness"},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_18":{"sectionRefreshWhen":{"expr":"this['D_CPMPortalContext.pyID'] Changes","props":["D_CPMPortalContext.pyID"]},"baseRef":"pyDisplayHarness"}}});;</script><script>pega.ui.jittemplate.mergeSectionStore({"b533b54e43abaf0a5cb454449e92ccf94ce81ac2":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInteractionPortalHeaderTopRight\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADERTOPRIGHT #20230724T123547.047 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInteractionPortalHeaderTopRight","class":"CPM-Portal","UID":"SID1698333988201","pyName":"pxSection","pyTemplates":[{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopRightB","floatClass":" float-right set-width-auto","prefix":"-portal_header","sectionIndex":"1","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050956070075321\u0027 ","class":"set-width-auto","format":"portal_header_group_secondary","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","clear":"false","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-left-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u002720180205095607007922\u0027 ","customClassName":"dl_vt_center dl_min_height_0 padding-l-1x","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"\"","isDLChild":"true","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_15"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_15","pyName":"pxVisible","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_13","pyName":"pxVisible","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_13"},"pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202303241029330159409\u0027 ","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027LoadESubmitMessagesAndAlerts\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43647505820413","NTRef":"e22c5383221a47caf71e8e06d4b8738e04a1aa8a_1","pyName":"pxNonTemplate"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027ESubmitMessagesAndAlerts\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pzPrimaryPage":"TempMessagesAndAlertsPage","pxReferencedId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_12","pyName":"pxSection"}]}]}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"","tourId":" data-tour-id\u003d\u0027HomeTab-6\u0027","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050956070079718\u0027 ","pyActionStringID":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_16","skipTarget":" tabindex\u003d\u00270\u0027 ","class":"pointer has-action","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\" data-tour-id\u003d\u0027HomeTab-6\u0027\"","ariaRole":"link","ariaLabel":"Resources Menu","ariaRoleType":"component","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027ResourcesIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_20","pyName":"pxSection"}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_30"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_30","pyName":"pxVisible"}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050956070079718\u0027 ","pyActionStringID":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_31","skipTarget":" tabindex\u003d\u00270\u0027 ","class":"pointer has-action","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4).pySections(1)\u0027}\"\"","ariaRole":"link","ariaLabel":"Interaction Portal User Menu","ariaRoleType":"component","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-all-spacing flex flex-row","automationId":"\u002720151105053638078965592-Label\u0027","format":"OperatorImage","forLabel":".pyTemplateInputBox","pyAutoHTML":"false","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","customROStyles":"user-menu-icon","customRWStyles":"user-menu-icon","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027OperatorImage\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43647685520898","NTRef":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_35","pyName":"pxNonTemplate"}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_45"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_45","pyName":"pxVisible","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_43","pyName":"pxVisible","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5).pySections(1)\u0027}\"","tourId":" data-tour-id\u003d\u0027HomeTab-6\u0027","dlChild":"true","lMode":"SimpleDiv","pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_43"},"pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050956070079718\u0027 ","pyActionStringID":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_38","skipTarget":" tabindex\u003d\u00270\u0027 ","class":"pointer has-action","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5).pySections(1)\u0027}\" data-tour-id\u003d\u0027HomeTab-6\u0027\"","ariaRole":"link","ariaLabel":"Guided Tour","ariaRoleType":"component","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027GuidedTourIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_42","pyName":"pxSection"}]}]}]}]}]}]}]}]}]},{"pyCell":{"partialClass":"remove-left-spacing remove-right-spacing flex flex-row","automationId":"\u0027202305081319120689133-Label\u0027","format":"pxGuidedTourAutoStart","forLabel":".pyTemplateInputBox","pyAutoHTML":"false","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxGuidedTourAutoStart\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_50"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_50","pyName":"pxVisible","pyTemplates":[{"NTId":"43647836427360","NTRef":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_51","pyName":"pxNonTemplate"}]}]}]}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopRightBBBBBBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027,\u0027clipboardPath\u0027:\u0027SetUserMenuIconTitle508\u0027}\"","sectionIndex":"2","isSectionIncl":"true","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43647867688391","NTRef":"e47ca67857049d1467d74de30954eb216363dbdd_1","pyName":"pxNonTemplate"}]}]},"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027ESubmitMessagesAndAlertsCount\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION @BASECLASS ESUBMITMESSAGESANDALERTSCOUNT #20230324T004252.830 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"ESubmitMessagesAndAlertsCount","class":"@baseclass","sectionBaseRef":"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz","UID":"SID1698333988361","exprID":"fea39b75c3d6633a2653568e72cd774dcea4d0fa_12","pyName":"pxSection","pyTemplates":[{"pyExpressionId":"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_8","paramName":"EXPANDEDSubSectionESubmitMessagesAndAlertsCountB","floatClass":" set-width-auto","sectionIndex":"1","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202202150050120898427\u0027 ","pxSubscriptionIdentifiers":{"pySubscriptionId":"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_3"},"pyActionStringID":"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_2","class":"set-width-auto clearfix","format":"mimic_a_sentence","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","isFlex":"false","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"tourId":" data-tour-id\u003d\u0027UnreadNotificationsCount\u0027","automationId":"\u00272017021503461902791294-Label\u0027","format":"pxDisplayText","forLabel":".pyUnreadNotificationsCount","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","isFlex":"false","customROStyles":"notification-count","customRWStyles":"notification-count","cstmreqfor":"pyRequired","pyReadOnlyWhenCond":"readonlyAlways","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxDisplayText\u0027,\u0027clipboardPath\u0027:\u0027.pyUnreadNotificationsCount\u0027,\u0027className\u0027:\u0027Code-Pega-List\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"2017021503461902791294","pyValue":".pyUnreadNotificationsCount","pyValueRO":".pyUnreadNotificationsCount","pyModes":[{},{}]},"pyName":"pxDisplayText"}]},{"pyCell":{"pyValue":".pyUnreadNotificationsCount","pyID":"pyUnreadNotificationsCount","automationId":"201702280447030328986","pyModes":[{},{"pyActionStringID":"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_7","clintValidAttrs":" validationType\u003d\u0027integer\u0027"}]},"pyName":"pxHidden"}]}]}],"secPostValueURL":"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxODJmNWUwZTg2OTdmZTM0YzY1ZDc0OTIyMzBhNDgwZDM4YzdjNzE0MjQyNTNlNmI2YzViZjE5NDBkYzQwYTRjNA%3D%3D*"},"2b62f6b12e1f0748b0cb7230fe7dd6fafd11f180":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInteractionPortalWorkArea\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALWORKAREA #20230615T134404.901 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInteractionPortalWorkArea","class":"CPM-Portal","UID":"SID1698333988683","pyName":"pxSection","pyTemplates":[{"NTId":"43647952099042","NTRef":"2b62f6b12e1f0748b0cb7230fe7dd6fafd11f180_2","pyName":"pxNonTemplate"}]},"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInteractionPortalWorkAreaWrapper\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALWORKAREAWRAPPER #20231011T110953.731 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInteractionPortalWorkAreaWrapper","class":"CPM-Portal","UID":"SID1698333988682","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u00272018041821025701091000\u0027 ","skipTarget":" tabindex\u003d\u0027-1\u0027 data-skip-target \u003d\u0027main\u0027 ","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","ariaRole":"main","ariaRoleType":"landmark","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","customROStyles":"dc-wrapper","customRWStyles":"dc-wrapper","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInteractionPortalWorkArea\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d_6","pyName":"pxSection"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","customROStyles":"inbound-wrapper","customRWStyles":"inbound-wrapper","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInboundEmailArea\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d_10","pyName":"pxSection"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027ToasterPop\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43647955168459","NTRef":"89bcc6062a72e72d513f7eed500fe6d8e3c3440d_1","pyName":"pxNonTemplate"}]}]}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalWorkAreaWrapperBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027,\u0027clipboardPath\u0027:\u0027CSBodyHeightResizer\u0027}\"","sectionIndex":"2","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43647955295202","NTRef":"27a15be48d7d61a4202aff8dfc43fc56444e5169_1","pyName":"pxNonTemplate"}]}]},"8bfb1fb36a358fb5ff9c92858bf354f9c569359a":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027pzToggleAutomationRecorder\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION DATA-PORTAL PZTOGGLEAUTOMATIONRECORDER #20200518T131925.885 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"pzToggleAutomationRecorder","class":"Data-Portal","RO":"true","UID":"SID1698333986287","pyName":"pxSection","pyTemplates":[{"paramName":"EXPANDEDSubSectionpzToggleAutomationRecorderB","prefix":"-pz-runtime-top-bar","sectionIndex":"1","lMode":"Flexbox","contCustom":"margin-b-1x","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201808120943310957798\u0027 ","customClassName":"content-items-maxwidth","format":"pz-inline-middle","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-left-spacing remove-right-spacing flex flex-row","automationId":"\u00272017121801430303316151-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"automation-recorder","customRWStyles":"automation-recorder","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"8bfb1fb36a358fb5ff9c92858bf354f9c569359a_6"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"8bfb1fb36a358fb5ff9c92858bf354f9c569359a_6","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u00272017121801430303316151\u0027 ","pyModes":[{},{"pyName":"pzToggleAutomationRecorder_$CTX$_1","tooltip":"Toggle Automation Recorder","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-potion","pyActionImagePosition":"left","label":"","pyActionStringID":"8bfb1fb36a358fb5ff9c92858bf354f9c569359a_4","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]}]}]}]},"55c68f9db85e1cce77630c8ddf743011c1b4705d":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMSearchInHeaderExt\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMSEARCHINHEADEREXT #20231021T003308.106 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMSearchInHeaderExt","class":"CPM-Portal","UID":"SID1698333987821","pyName":"pxSection","pyTemplates":[{"whenId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_54","pyName":"pxVisible","pyTemplates":[{"lMode":"SimpleDiv","pxWhenIdentifiers":{"pyVisibilityWhenId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_54"},"pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202004220927150782898\u0027 ","customClassName":"margin-0 min-height-0 dl_min_height_0 margin-b-0","class":"set-width-auto","format":"stacked_no_margins","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-top-spacing remove-left-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202305191108410189451\u0027 ","customClassName":"padding-t-1x margin-b-0","format":"inline_middle","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-top-spacing remove-left-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202305191500080690700\u0027 ","format":"inline_labels_left_2","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyLabelReserveSpace":"true","partialClass":"remove-top-spacing remove-left-spacing remove-bottom-spacing remove-right-spacing flex","automationId":"\u002720200422092219023411289-Label\u0027","format":"pxTextInput","forLabel":"D_SearchMetaData.GroupID","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired application_name_iconRequired","labelReadClass":"dataLabelForRead application_name_dataLabelForRead","labelWriteClass":"dataLabelForWrite application_name_dataLabelForWrite","cstmreqfor":"pyRequired","pyReadOnlyWhenCond":"Editable","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxTextInput\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.GroupID\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Group"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"20200422092219023411289","pyValue":"D_SearchMetaData.GroupID","pyID":"GroupID","pyValueRO":"D_SearchMetaData.GroupID","pyModes":[{"styleOther":"class\u003d \u0027header_input\u0027","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d45_6"},"pyMin":"minchars\u003d \u00271\u0027","pyMax":"maxlength\u003d \u00271\u0027","type":"number","clintValidAttrs":" validationType\u003d\u0027integer,minchars\u0027","inputClass":" class\u003d \u0027centerJustifyStyle\u0027","helpertype":"none","pyWidth":"30px;","pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d45_1_9"},{"styleOther":"header_input"}]},"pyName":"pxTextInput"}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202305191546410775343\u0027 ","format":"inline_middle","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-top-spacing remove-left-spacing flex flex-row","automationId":"\u0027202305191533200001766-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Button"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_13"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_13","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u0027202305191533200001766\u0027 ","pyModes":[{},{"pyName":"CPMSearchInHeaderExt_$CTX$_8","tooltip":"Clipboard","helpertype":"tooltip","styles":"Header_Mobile_Icon","imgSrc":"styleclass","image":"pi pi-clipboard pi-white","pyActionImagePosition":"left","label":"","pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d_11","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]},{"pyCell":{"labelLit":"false","partialClass":"flex flex-row","automationId":"\u002720211118121911067348715-Label\u0027","format":"pxCheckbox","forLabel":"D_SearchMetaData.cannedDataEnabled","pyAutoHTML":"true","spanClass":"iconRequired application_name_iconRequired","labelReadClass":"dataLabelForRead application_name_dataLabelForRead","labelWriteClass":"dataLabelForWrite application_name_dataLabelForWrite","cstmreqfor":"pyRequired","pyReadOnlyWhenCond":"Editable","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxCheckbox\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.cannedDataEnabled\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\"","pyLabelValue":".cannedDataEnabled"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"20211118121911067348715","pyValue":"D_SearchMetaData.cannedDataEnabled","pyID":"cannedDataEnabled","pyValueRO":"D_SearchMetaData.cannedDataEnabled","pyModes":[{"helpertype":"none","pyCheckboxCaption":"Canned Data","pyWrap":"true","styleOther":"cb_cpm_search_header","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_17"}},{"styleOther":"cpm_search_header","pyReadonlyValidation":false}]},"pyName":"pxCheckbox"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u002720211118121911067348715-Label\u0027","format":"pxCheckbox","forLabel":"D_SearchMetaData.serviceFailuresEnabled","pyAutoHTML":"true","spanClass":"iconRequired application_name_iconRequired","labelReadClass":"dataLabelForRead application_name_dataLabelForRead","labelWriteClass":"dataLabelForWrite application_name_dataLabelForWrite","cstmreqfor":"pyRequired","pyReadOnlyWhenCond":"Editable","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxCheckbox\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.serviceFailuresEnabled\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\"","pyLabelValue":"Service Failures"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"20211118121911067348715","pyValue":"D_SearchMetaData.serviceFailuresEnabled","pyID":"serviceFailuresEnabled","pyValueRO":"D_SearchMetaData.serviceFailuresEnabled","pyModes":[{"pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d_23","pyChildAction":"data-change","tooltip":"Enable Service Failures","helpertype":"tooltip","pyCheckboxCaption":"Service Failures","pyWrap":"true","styleOther":"cb_cpm_search_header","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_24"}},{"styleOther":"cpm_search_header","pyReadonlyValidation":false}]},"pyName":"pxCheckbox"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u0027202305191156020276613-Label\u0027","format":"pxCheckbox","forLabel":"D_SearchMetaData.simulationEnabled","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxCheckbox\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.simulationEnabled\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)\u0027}\"","pyLabelValue":"Checkbox"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"202305191156020276613","pyValue":"D_SearchMetaData.simulationEnabled","pyID":"simulationEnabled","pyValueRO":"D_SearchMetaData.simulationEnabled","pyModes":[{"pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d_30","pyChildAction":"data-change,data-change","helpertype":"none","pyCheckboxCaption":"Use Cache","styleOther":"cb_cpm_search_header","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_31"}},{"styleOther":"cpm_search_header","pyReadonlyValidation":false}]},"pyName":"pxCheckbox"}]},{"pyCell":{"partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027202305191526370018305-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyExpressionId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_40","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5)\u0027}\"","pyLabelValue":"Button"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u0027202305191526370018305\u0027 ","pyModes":[{},{"pyName":"CPMSearchInHeaderExt_$CTX$_12","tooltip":"Clear cache","helpertype":"tooltip","styles":"Header_Mobile_Icon","imgSrc":"styleclass","image":"pi pi-trash","pyActionImagePosition":"left","label":"","pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d_37","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]}]}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202305191523110512370\u0027 ","customClassName":"min-height-0 dl_min_height_0 margin-t-0 margin-b-1x margin-lr-0","format":"inline_labels_left_2","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyLabelReserveSpace":"true","partialClass":"remove-top-spacing remove-bottom-spacing remove-left-spacing flex","automationId":"\u002720200422092219023411289-Label\u0027","format":"pxTextInput","forLabel":"D_SearchMetaData.SaltValue","pyAutoHTML":"true","spanClass":"iconRequired application_name_iconRequired","labelReadClass":"dataLabelForRead application_name_dataLabelForRead","labelWriteClass":"dataLabelForWrite application_name_dataLabelForWrite","cstmreqfor":"pyRequired","pyReadOnlyWhenCond":"Editable","pyExpressionId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_48","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxTextInput\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.SaltValue\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Salt"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"20200422092219023411289","pyValue":"D_SearchMetaData.SaltValue","pyID":"SaltValue","pyValueRO":"D_SearchMetaData.SaltValue","pyModes":[{"styleOther":"class\u003d \u0027header_input\u0027","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d415_6"},"tooltip":"Canned Data Salt Value","helpertype":"tooltip","pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d415_1_9"},{"styleOther":"header_input"}]},"pyName":"pxTextInput"}]},{"pyCell":{"pyLabelReserveSpace":"true","partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex","automationId":"\u0027202305191115060519349-Label\u0027","format":"pxTextInput","forLabel":"D_SearchMetaData.servicesToFail","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired application_name_iconRequired","labelReadClass":"dataLabelForRead application_name_dataLabelForRead","labelWriteClass":"dataLabelForWrite application_name_dataLabelForWrite","cstmreqfor":"pyRequired","pyExpressionId":"55c68f9db85e1cce77630c8ddf743011c1b4705d_51","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxTextInput\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.servicesToFail\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\"","pyLabelValue":"Service"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"202305191115060519349","pyValue":"D_SearchMetaData.servicesToFail","pyID":"servicesToFail","pyValueRO":"D_SearchMetaData.servicesToFail","pyModes":[{"styleOther":"class\u003d \u0027header_input\u0027","pxErrorIdentifiers":{"pyErrorId":"55c68f9db85e1cce77630c8ddf743011c1b4705d416_6"},"placeholder":"ex. FRA,RASR","helpertype":"none","pyActionStringID":"55c68f9db85e1cce77630c8ddf743011c1b4705d416_1_9"},{"styleOther":"header_input"}]},"pyName":"pxTextInput"}]}]}]}]}]}]}]}],"secPostValueURL":"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxZGM0MmJiZmM4ZjQ2OWQ3ZDg3NGVmNzYzZTkxOGRiODBlNjU0OWQwZWQ2ZjE5MDQ4YWNkZGM3NDlkM2Q0ZGYzOQ%3D%3D*"},"ffa1290074f8e6fe331f3f21f43a9f3877f1d8c5":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CSPortalHeaderWrapper\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CSPORTALHEADERWRAPPER #20231011T110955.117 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CSPortalHeaderWrapper","class":"CPM-Portal","UID":"SID1698333986337","pyName":"pxSection","pyInstanceID":"43645608697384","pyTemplates":[{"paramName":"EXPANDEDSubSectionCSPortalHeaderWrapperB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027,\u0027clipboardPath\u0027:\u0027CPMInteractionPortalHeader\u0027}\"","sectionIndex":"1","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"pxReferencedId":"ffa1290074f8e6fe331f3f21f43a9f3877f1d8c5_2","pyName":"pxSection"}]}]},"2bf353fe8984125fc69e234028a981d63e65890f":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMSearchInHeader\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMSEARCHINHEADER #20230724T225425.890 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMSearchInHeader","class":"CPM-Portal","UID":"SID1698333987492","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202003121703540142733\u0027 ","skipTarget":" tabindex\u003d\u0027-1\u0027 data-skip-target \u003d\u0027search\u0027 ","customClassName":"portal_header_search","format":"split_button","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","ariaRole":"search","ariaRoleType":"landmark","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"tourId":" data-tour-id\u003d\u0027HomeTab-2\u0027","partialClass":"flex flex-row","automationId":"\u0027201610190747440120129777-Label\u0027","format":"pxDropdown","forLabel":"D_SearchMetaData.SearchOptions","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxDropdown\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.SearchOptions\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"201610190747440120129777","pyValue":"D_SearchMetaData.SearchOptions","tooltip":"Searchresultsfor","helpertype":"tooltip","pyValueRO":"D_SearchMetaData.SearchOptions","pyModes":[{"pxErrorIdentifiers":{"pyErrorId":"2bf353fe8984125fc69e234028a981d63e65890f_5"},"pyID":"SearchOptions","pyEnableGrouping":"false","pyGroupOrder":"asc","pyResultsUniqueID":"2bf353fe8984125fc69e234028a981d63e65890f_6","pySourceName":"Declare_CAAvailableDataSources.DisplayDataSources","tooltip":".pyLabelOld","pyGroupLabel":"","pyValue":".pyRuleName","pyPrompt":".pyLabelOld","styleOther":"standard","pyUseAccessibleDropdown":"false","hasChangeEvent":"false"},{"pyReadonlyValidation":false,"pyShowValueAs":"","pyActionStringID":"2bf353fe8984125fc69e234028a981d63e65890f_8"}]},"pyName":"pxDropdown"}]},{"pyCell":{"tourId":" data-tour-id\u003d\u0027HomeTab-3\u0027","partialClass":"flex flex-row","automationId":"\u00272015052504543705231680-Label\u0027","format":"pxTextInput","forLabel":"D_SearchMetaData.pySearchText","pyAutoHTML":"true","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","customROStyles":"ssn-search-input","customRWStyles":"ssn-search-input","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxTextInput\u0027,\u0027clipboardPath\u0027:\u0027D_SearchMetaData.pySearchText\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"2015052504543705231680","pyValue":"D_SearchMetaData.pySearchText","pyID":"pySearchText","pyValueRO":"D_SearchMetaData.pySearchText","pyModes":[{"styleOther":"class\u003d \u0027search\u0027","pxErrorIdentifiers":{"pyErrorId":"2bf353fe8984125fc69e234028a981d63e65890f42_6"},"placeholder":"Search...","pyMax":"maxlength\u003d \u002711\u0027","tooltip":"SearchForanItem","helpertype":"tooltip","pyActionStringID":"2bf353fe8984125fc69e234028a981d63e65890f42_1_9"},{"pyContent":"associated","styleOther":"search"}]},"pyName":"pxTextInput"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u00272015052504543705282660-Label\u0027","format":"pxIcon","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"pyStreamName":"CPMSearchInHeader","pyCellID":"3","automationId":" data-test-id\u003d\u00272015052504543705282660\u0027 ","pyModes":[{"generateName":"true","tooltip":"SearchForanItem","helpertype":"tooltip","isActionabale":"true","isClickable":"true","class":"pi pi-search-2 pi-regular","iconSrc":"styleclass","pyActionStringID":"2bf353fe8984125fc69e234028a981d63e65890f_16"},{}]},"pyName":"pxIcon"}]},{"pyCell":{"pyValue":"pyDisplayHarness.SearchPortal","pyID":"SearchPortal","automationId":"2017072607533209168302","pyModes":[{},{"clintValidAttrs":" validationType\u003d\u0027true-false\u0027"}]},"pyName":"pxHidden"}]}]}],"secPostValueURL":"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NTZlMmM3ZGQ1MWY3ZWI3ZDM4MmU0YTkyMDg0ODZiNTUxZGM0MmJiZmM4ZjQ2OWQ3ZDg3NGVmNzYzZTkxOGRiODAxMjk2YTU5YzE1ODRiODI3ZGIyYjhjMjFlOWQ5MWQ4Nw%3D%3D*"},"c41a1b5d492ce56a56bfd6e257faf37f36542379":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027GuidedTourIcon\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL GUIDEDTOURICON #20231011T110956.079 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"GuidedTourIcon","class":"CPM-Portal","UID":"SID1698333988564","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050958070647200\u0027 ","class":"set-width-auto","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"tourId":" data-tour-id\u003d\u0027HomeTab-11\u0027","partialClass":"remove-all-spacing flex flex-row","automationId":"\u002720170531054905054049822-Label\u0027","format":"pxIcon","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"pyStreamName":"GuidedTourIcon","pyCellID":"1","automationId":" data-test-id\u003d\u002720170531054905054049822\u0027 ","pyModes":[{"generateName":"true","tooltip":"Launch Guided tour","helpertype":"tooltip","class":"cs-icon-status cs-icon-status-staging pi pi-chart-donut-solid","iconSrc":"styleclass"},{}]},"pyName":"pxIcon"}]}]}]}]},"9e829740e7172d0015f28e72a900586e25b504a7":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInteractionPortalHeader\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADER #20230724T225424.551 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInteractionPortalHeader","class":"CPM-Portal","UID":"SID1698333986510","pyName":"pxSection","pyTemplates":[{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027,\u0027clipboardPath\u0027:\u0027JSONInclude\u0027}\"","sectionIndex":"1","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43645830693396","NTRef":"6539e55c7f1da2dffb1a7929ac493ce6b5dabdb7_1","pyName":"pxNonTemplate"}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027,\u0027clipboardPath\u0027:\u0027LocalizationInclude\u0027}\"","sectionIndex":"2","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43645937099475","NTRef":"b3bffc7be67711753d8c8360c677dc8b95d0a082_1","pyName":"pxNonTemplate"}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(3)\u0027,\u0027clipboardPath\u0027:\u0027CPMBusyIndicator\u0027}\"","sectionIndex":"3","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43646061263114","NTRef":"54c68abcdab0a50ccf208beb701185bbd40640_1","pyName":"pxNonTemplate"}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderBBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(4)\u0027,\u0027clipboardPath\u0027:\u0027CSSetAudioConfiguration\u0027}\"","sectionIndex":"4","isSectionIncl":"true","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43646098995328","NTRef":"2e42490f1966355a3e3bc42a6604ddf02eef55a1_1","pyName":"pxNonTemplate"}]},{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5)\u0027}\"","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802211228180282784\u0027 ","pyExpressionId":"9e829740e7172d0015f28e72a900586e25b504a7_7","methodnm":"simpleLayout_4","customClassName":"flex-grow-1-item-2","format":"header_inline_no_tb_margins","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5)\u0027}\"\"","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802211228180282331\u0027 ","format":"portal_header_group_primary","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-top-spacing remove-left-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInteractionPortalHeaderTop\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7_12","pyName":"pxSection"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMPositionScreenLayouts\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(1).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43646640600527","NTRef":"f9dc8d57dc8e673003585d74ed63e714768f6a5_1","pyName":"pxNonTemplate"}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802211228180283865\u0027 ","customClassName":"dl_hz_center","format":"portal_header_group_primary","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-top-spacing remove-left-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMSearchInHeader\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7_23","pyName":"pxSection"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMSearchInHeaderExt\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7_27","pyName":"pxSection"}]}]}]}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-bottom-spacing remove-right-spacing align-end set-width-auto flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(3).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802211228180283800\u0027 ","class":"set-width-auto","format":"portal_header_group_secondary","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(3).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInteractionPortalHeaderTopRight\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(5).pySectionBody(1).pyTable.pyRows(1).pyCells(3).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7_34","pyName":"pxSection"}]}]}]}]},{"pyCell":{"pyValue":"pxRequestor.pxReqLocale","pyID":"pxReqLocale","automationId":"201803290243080308130304","pyModes":[{},{}]},"pyName":"pxHidden"}]}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderBBBBBBBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(6)\u0027,\u0027clipboardPath\u0027:\u0027CSRNotificationsController\u0027}\"","sectionIndex":"6","isSectionIncl":"true","pyName":"pxLayoutContainer","pyTemplates":[{"NTId":"43647911421714","NTRef":"b96c71a038ad4d037d32bfe4d20655cbab1ff74d_1","pyName":"pxNonTemplate"}]},{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(7)\u0027}\"","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u002720180221122818028594\u0027 ","customClassName":"CpmKmwrapper","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(7)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-all-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CSKMContainer\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(7).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7_44","pyName":"pxSection"}]},{"pyCell":{"automationId":"20190529021535025355333","pyModes":[{},{"pyActionStringID":"9e829740e7172d0015f28e72a900586e25b504a7_46"}]},"pyName":"pxHidden"}]}]}]},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInboundEmailArea\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINBOUNDEMAILAREA #20200817T053735.759 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInboundEmailArea","class":"CPM-Portal","UID":"SID1698333988684","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801101655380295961\u0027 ","pyExpressionId":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_3","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInboundEmailWrapperForm\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pzPrimaryPage":"$$9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_8","pxReferencedId":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_8","pyName":"pxSection"}]}]}]},{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027}\"","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801101655380295961\u0027 ","pyExpressionId":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_12","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027CPMInboundEmailWrapperForm\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(2).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pzPrimaryPage":"$$9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_17","pxReferencedId":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_17","pyName":"pxSection"}]}]}]}]},"93e9f86af976b7ebd706cfa53ba34ac7e3b37902":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInteractionPortalHeaderTop\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CPMINTERACTIONPORTALHEADERTOP #20230724T225425.237 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInteractionPortalHeaderTop","class":"CPM-Portal","UID":"SID1698333987068","pyName":"pxSection","pyTemplates":[{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopB","prefix":"-portal_header","sectionIndex":"1","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801220150000758486\u0027 ","customClassName":"flat-primary-header dl_vt_center","format":"portal_header_group_primary","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"pyType":"sub_section","partialClass":"remove-top-spacing remove-bottom-spacing remove-left-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027SetImgAlt\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43646370951782","NTRef":"1af42eb4307bdeee7795ff4abbb6ea7d3f163d6c_1","pyName":"pxNonTemplate"}]},{"pyCell":{"pyType":"layout","RWActive":"false","partialClass":"remove-top-spacing remove-bottom-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false},"pyName":"DynamicLayoutCell","pyTemplates":[{"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"","dlChild":"true","lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202004171152130888774\u0027 ","format":"inline_middle","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1)\u0027}\"\"","isDLChild":"true","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-top-spacing remove-left-spacing flex flex-row","automationId":"\u0027201410060949160415164-Label\u0027","format":"pxIcon","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"logo","customRWStyles":"logo","cstmreqfor":"pyRequired","pyExpressionId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_12","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Image"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"pyStreamName":"CPMInteractionPortalHeaderTop","pyCellID":"4","automationId":" data-test-id\u003d\u0027201410060949160415164\u0027 ","pyModes":[{"generateName":"true","tooltip":"SSA logo","helpertype":"tooltip","isActionabale":"true","isClickable":"true","style":"style\u003d\u0027width:75px;height:33px;\u0027","src":"webwb/ssalogo_13656888051.svg!!.svg","iconSrc":"image","pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_9"},{}]},"pyName":"pxIcon"}]},{"pyCell":{"pyType":"label","pyLabelReserveSpace":"true","partialClass":"remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u002720200417114912061344896\u0027","spanClass":"iconRequired _iconRequired","labelReadClass":"dataLabelRead application_name_dataLabelRead","labelWriteClass":"dataLabelWrite application_name_dataLabelWrite","customROStyles":"application_name_dataLabelRead","customRWStyles":"application_name_dataLabelWrite","cstmreqfor":"pyRequired","labelJSP":"true","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027Label\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2).pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43646371367905","NTRef":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_15","pyName":"pxNonTemplate"}]}]}]}]},{"pyCell":{"tourId":" data-tour-id\u003d\u0027HomeTab-4\u0027","partialClass":"remove-top-spacing remove-bottom-spacing flex flex-row","automationId":"\u00272014100609491604293426-Label\u0027","format":"pxLink","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"create-icon","customRWStyles":"create-icon","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxLink\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_21"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_21","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":"2014100609491604293426","pyModes":[{},{"pyName":"CPMInteractionPortalHeaderTop_$CTX$_6","styles":"Header_nav","tooltip":"New","helpertype":"tooltip","imgSrc":"styleclass","image":"pi pi-plus","pyLabel":"New","pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_19"}]},"pyName":"pxLink"}]}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing flex flex-row","automationId":"\u00272014120505383202038617-Label\u0027","format":"PortalCobrowsing","forLabel":".pyTemplateInputBox","pyAutoHTML":"false","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_24"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_24","pyName":"pxVisible"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_28"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_28","pyName":"pxVisible"}]}]}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027}\"","prefix":"-do_not_display","sectionIndex":"2","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801220150000759612\u0027 ","pxSubscriptionIdentifiers":{"pySubscriptionId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_31"},"pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_30","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(2)\u0027}\"\"","clear":"false","pyName":"DynamicLayout"}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopBBBB","floatClass":" float-left set-width-auto","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(3)\u0027}\"","prefix":"-do_not_display","sectionIndex":"3","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801220150000759714\u0027 ","pxSubscriptionIdentifiers":{"pySubscriptionId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_33"},"pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_32","customClassName":"min-height-0-item-1","class":"set-width-auto","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(3)\u0027}\"\"","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-left-spacing remove-right-spacing flex flex-row","automationId":"\u002720181219162832088423807-Label\u0027","format":"FBMScreenPopControl","forLabel":".pyTemplateInputBox","pyAutoHTML":"false","pyGenerateUniqueIdForLabel":"false","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027FBMScreenPopControl\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(3).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"NTId":"43646564244837","NTRef":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_37","pyName":"pxNonTemplate"}]}]}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopBBBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(4)\u0027}\"","prefix":"-do_not_display","sectionIndex":"4","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801220150000759714\u0027 ","pxSubscriptionIdentifiers":{"pySubscriptionId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_39"},"pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_38","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(4)\u0027}\"\"","clear":"false","pyName":"DynamicLayout"}]},{"paramName":"EXPANDEDSubSectionCPMInteractionPortalHeaderTopBBBBBB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5)\u0027}\"","prefix":"-do_not_display","sectionIndex":"5","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801220150000759714\u0027 ","pxSubscriptionIdentifiers":{"pySubscriptionId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_41"},"pyActionStringID":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_40","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(5)\u0027}\"\"","clear":"false","pyName":"DynamicLayout"}]}]},"926cab57e3ae5387c3bfc011adbbdf2e20625896":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027ResourcesIcon\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL RESOURCESICON #20231011T110956.947 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"ResourcesIcon","class":"CPM-Portal","UID":"SID1698333988412","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201802050958070647200\u0027 ","class":"set-width-auto","format":"inline","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-all-spacing flex flex-row","automationId":"\u002720170531054905054049822-Label\u0027","format":"pxIcon","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxIcon\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"pyStreamName":"ResourcesIcon","pyCellID":"1","automationId":" data-test-id\u003d\u002720170531054905054049822\u0027 ","pyModes":[{"generateName":"true","tooltip":"Resources Menu","helpertype":"tooltip","class":"cs-icon-status cs-icon-status-staging pi pi-clipboard-content-icon","iconSrc":"styleclass"},{}]},"pyName":"pxIcon"}]}]}]}]},"856d85072254622e3b927718495c6e2daf25e672":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CSKMContainer\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CSKMCONTAINER #20200817T053746.712 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CSKMContainer","class":"CPM-Portal","UID":"SID1698333988680","pyName":"pxSection","pyTemplates":[{"whenId":"856d85072254622e3b927718495c6e2daf25e672_8","pyName":"pxVisible","pyTemplates":[{"lMode":"SimpleDiv","pxWhenIdentifiers":{"pyVisibilityWhenId":"856d85072254622e3b927718495c6e2daf25e672_8"},"pyName":"pxLayoutContainer"}]}]},"2fd9314397916edcb5aa8a9eb49890b68e910168":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027pySkipLinksToTarget\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION @BASECLASS PYSKIPLINKSTOTARGET #20231011T110946.243 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"pySkipLinksToTarget","class":"@baseclass","RO":"true","UID":"SID1698333986228","pyName":"pxSection","pyInstanceID":"43645500216651","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201808100852440591157\u0027 ","pyExpressionId":"2fd9314397916edcb5aa8a9eb49890b68e910168_3","methodnm":"simpleLayout_1","customClassName":"skip-links-wrapper skip-links-hide","format":"simple_list","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"flex flex-row","automationId":"\u00272015070108430309263280-Label\u0027","format":"pxLink","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxLink\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"2015070108430309263280","pyModes":[{},{"pyName":"pySkipLinksToTarget_$CTX$_1","styles":"Strong","helpertype":"none","pyLabel":"Go to banner","pyActionStringID":"2fd9314397916edcb5aa8a9eb49890b68e910168_5"}]},"pyName":"pxLink"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u00272015070108430309263280-Label\u0027","format":"pxLink","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxLink\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"2015070108430309263280","pyModes":[{},{"pyName":"pySkipLinksToTarget_$CTX$_2","styles":"Strong","helpertype":"none","pyLabel":"Go to main content","pyActionStringID":"2fd9314397916edcb5aa8a9eb49890b68e910168_9"}]},"pyName":"pxLink"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u00272015070108475601785160-Label\u0027","format":"pxLink","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxLink\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":"2015070108475601785160","pyModes":[{},{"pyName":"pySkipLinksToTarget_$CTX$_3","styles":"Strong","helpertype":"none","pyLabel":"Go to search bar","pyActionStringID":"2fd9314397916edcb5aa8a9eb49890b68e910168_13"}]},"pyName":"pxLink"}]},{"pyCell":{"partialClass":"flex flex-row","automationId":"\u00272015070108491004597324-Label\u0027","format":"pxLink","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxLink\u0027,\u0027className\u0027:\u0027CPM-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"2fd9314397916edcb5aa8a9eb49890b68e910168_19"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"2fd9314397916edcb5aa8a9eb49890b68e910168_19","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":"2015070108491004597324","pyModes":[{},{"pyName":"pySkipLinksToTarget_$CTX$_4","styles":"Strong","helpertype":"none","pyLabel":"Go to navigation","pyActionStringID":"2fd9314397916edcb5aa8a9eb49890b68e910168_17"}]},"pyName":"pxLink"}]}]}]}]}]},"88ee0eaf3a9bdcbc886c4306ee22637c6abf8bd4":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CPMInboundEmailWrapperForm\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION PEGACA-WORK-INTERACTION CPMINBOUNDEMAILWRAPPERFORM #20200817T054041.428 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CPMInboundEmailWrapperForm","class":"PegaCA-Work-Interaction","sectionBaseRef":"D_Interaction_pa38226014852671pz","UID":"SID1698333988685","exprID":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_9","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027201801091426430788394\u0027 ","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","lMode":"SimpleDiv","pyName":"DynamicLayout"}]}]},"9876756d29318a3f430d3d4ceb51774c782d60bd":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027pzRuntimeToolsTopBar\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION DATA-PORTAL PZRUNTIMETOOLSTOPBAR #20200827T211116.800 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"pzRuntimeToolsTopBar","class":"Data-Portal","RO":"true","sectionBaseRef":"pyPortal","UID":"SID1698333986260","pyName":"pxSection","pyInstanceID":"43645531971403","pyTemplates":[{"paramName":"EXPANDEDSubSectionpzRuntimeToolsTopBarB","prefix":"-pz-runtime-top-bar","sectionIndex":"1","lMode":"Flexbox","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u002720180102092320003098\u0027 ","format":"pz-inline-middle","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing remove-left-spacing flex flex-row","automationId":"\u002720171209102012093057724-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"pzruntime-toolbar-gear","customRWStyles":"pzruntime-toolbar-gear","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Button"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u002720171209102012093057724\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_1","tooltip":"Toggle runtime toolbar","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-gear","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_4","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027rt-tool-issues-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxWhenIdentifiers":{"pyViewPrivilegeWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_7"},"pyCell":{"automationId":" data-test-id\u003d\u0027rt-tool-issues\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_2","tooltip":"Issues","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-warn","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_8","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027rt-tool-clipboard-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(3)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxWhenIdentifiers":{"pyViewPrivilegeWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_11"},"pyCell":{"automationId":" data-test-id\u003d\u0027rt-tool-clipboard\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_3","tooltip":"Clipboard","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-clipboard","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_12","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027rt-tool-tracer-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(4)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxWhenIdentifiers":{"pyViewPrivilegeWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_15"},"pyCell":{"automationId":" data-test-id\u003d\u0027rt-tool-tracer\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_4","tooltip":"Tracer","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-tracer","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_16","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027UIInspectorButton-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"ui-tree ui-inspector","customRWStyles":"ui-tree ui-inspector","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(5)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_22"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_22","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u0027UIInspectorButton\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_5","tooltip":"Toggle Live UI","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-inspect","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_20","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027DataInspectorButton-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"accessibility-toggle","customRWStyles":"accessibility-toggle","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(6)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_26"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_26","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u0027DataInspectorButton\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_6","tooltip":"Toggle Live Data","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pi pi-glasses","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_24","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027AccessibilityInspectorButton-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"accessibility-toggle","customRWStyles":"accessibility-toggle","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(7)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_30"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_30","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u0027AccessibilityInspectorButton\u0027 ","pyModes":[{},{"pyName":"pzRuntimeToolsTopBar_$CTX$_7","tooltip":"Toggle Accessibility Inspector","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-a11y","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_28","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u0027LocalizationInspectorButton-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"localization-toggle","customRWStyles":"localization-toggle","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true"},"pxWhenIdentifiers":{"pyVisibilityWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_34"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_34","pyName":"pxVisible"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027pzToggleAutomationRecorder\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(9)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pxReferencedId":"9876756d29318a3f430d3d4ceb51774c782d60bd_38","pyName":"pxSection"}]},{"pyCell":{"partialClass":"remove-top-spacing remove-bottom-spacing remove-right-spacing flex flex-row","automationId":"\u00272017031402493806846307-Label\u0027","format":"pxButton","forLabel":".pyTemplateInputBox","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"gapid_icon","customRWStyles":"gapid_icon","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"pyVisibility":"true","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxButton\u0027,\u0027className\u0027:\u0027Data-Portal\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(10)\u0027}\""},"pxWhenIdentifiers":{"pyVisibilityWhenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_42"},"pyName":"DynamicLayoutCell","pyTemplates":[{"whenId":"9876756d29318a3f430d3d4ceb51774c782d60bd_42","pyName":"pxVisible","pyTemplates":[{"pyCell":{"automationId":" data-test-id\u003d\u00272017031402493806846307\u0027 ","pyModes":[{},{"disabled":"always","pyName":"pzRuntimeToolsTopBar_$CTX$_10","tooltip":"Toggle Agile Workbench","helpertype":"tooltip","styles":"pz-icon","imgSrc":"styleclass","image":"pz-pi pi-bolt","pyActionImagePosition":"left","label":"","pyActionStringID":"9876756d29318a3f430d3d4ceb51774c782d60bd_40","actionPath":" data-click\u003d\u0027.\u0027"}]},"pyName":"pxButton"}]}]}]}]}]},"4d987685a7ff105cc7ced4b9aea023b73e0adf8":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027CSPortalBodyWrapper\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION CPM-PORTAL CSPORTALBODYWRAPPER #20231011T110954.734 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"CSPortalBodyWrapper","class":"CPM-Portal","UID":"SID1698333988681","pyName":"pxSection","pyInstanceID":"43647951840654","pyTemplates":[{"paramName":"EXPANDEDSubSectionCSPortalBodyWrapperB","liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027SECTIONINCLUDE\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027,\u0027clipboardPath\u0027:\u0027CPMInteractionPortalWorkAreaWrapper\u0027}\"","sectionIndex":"1","isSectionIncl":"true","lMode":"Inline-block","pyName":"pxLayoutContainer","pyTemplates":[{"pxReferencedId":"4d987685a7ff105cc7ced4b9aea023b73e0adf8_2","pyName":"pxSection"}]}]},"fea39b75c3d6633a2653568e72cd774dcea4d0fa":{"liveUI":"{\u0027type\u0027:\u0027Section\u0027,\u0027ruleName\u0027:\u0027ESubmitMessagesAndAlerts\u0027,\u0027insKey\u0027:\u0027RULE-HTML-SECTION @BASECLASS ESUBMITMESSAGESANDALERTS #20230331T221549.403 GMT\u0027,\u0027sectionType\u0027:\u0027standard\u0027}","section":"ESubmitMessagesAndAlerts","class":"@baseclass","sectionBaseRef":"TempMessagesAndAlertsPage","UID":"SID1698333988253","pyName":"pxSection","pyTemplates":[{"lMode":"SimpleDiv","pyName":"pxLayoutContainer","pyTemplates":[{"automationId":" data-test-id\u003d\u0027202303241303210196966\u0027 ","customClassName":"notification-gadget","format":"mimic_a_sentence","liveUI":"\"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Layout\u0027,\u0027subType\u0027:\u0027DYNAMICLAYOUT\u0027,\u0027pgRef\u0027:\u0027.pySections(1)\u0027}\"\"","clear":"false","lMode":"SimpleDiv","pyName":"DynamicLayout","pyTemplates":[{"pyCell":{"partialClass":"remove-left-spacing remove-right-spacing flex flex-row","automationId":"\u002720230322101033011543-Label\u0027","format":"pxIcon","forLabel":".pyTemplateGeneric","pyAutoHTML":"true","spanClass":"iconRequired standard_iconRequired","customROStyles":"messages-alerts-icon","customRWStyles":"messages-alerts-icon","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027pxIcon\u0027,\u0027clipboardPath\u0027:\u0027.pyTemplateGeneric\u0027,\u0027className\u0027:\u0027SSA-ES-Data-MessagesAndAlerts\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(1)\u0027}\"","pyLabelValue":"Image"},"pyName":"DynamicLayoutCell","pyTemplates":[{"pyCell":{"pyStreamName":"ESubmitMessagesAndAlerts","pyCellID":"1","automationId":" data-test-id\u003d\u002720230322101033011543\u0027 ","pyModes":[{"generateName":"true","tooltip":"Messages and Alerts","helpertype":"tooltip","isActionabale":"true","isClickable":"true","class":"pi pi-bell pi-white pi-medium","iconSrc":"styleclass","pyActionStringID":"fea39b75c3d6633a2653568e72cd774dcea4d0fa_4"},{}]},"pyName":"pxIcon"}]},{"pyCell":{"pyType":"sub_section","partialClass":"remove-left-spacing remove-right-spacing flex flex-row","spanClass":"iconRequired standard_iconRequired","cstmreqfor":"pyRequired","pyPreventXSSInLabel":false,"liveUI":"data-ui-meta\u003d\"{\u0027type\u0027:\u0027Cell\u0027,\u0027subType\u0027:\u0027SUB_SECTION\u0027,\u0027clipboardPath\u0027:\u0027ESubmitMessagesAndAlertsCount\u0027,\u0027className\u0027:\u0027SSA-ES-Data-MessagesAndAlerts\u0027,\u0027pgRef\u0027:\u0027.pySections(1).pySectionBody(1).pyTable.pyRows(1).pyCells(2)\u0027}\""},"pyName":"DynamicLayoutCell","pyTemplates":[{"pzPrimaryPage":"$$fea39b75c3d6633a2653568e72cd774dcea4d0fa_11","pxReferencedId":"fea39b75c3d6633a2653568e72cd774dcea4d0fa_11","pyName":"pxSection"}]}]}]}]}});</script><script>pega.ui.jittemplate.mergeBigData({"pyDisplayHarness":{"$pxSections":{"2fd9314397916edcb5aa8a9eb49890b68e910168_43645500122457":{"pxReferencedId":"2fd9314397916edcb5aa8a9eb49890b68e910168","sectionUniqueID":"SID1698333986228","pxReadOnly":"true"},"d0cf4bfdcaf5196bcee58344824e8ee798582c98_1":{"pxReferencedId":"ffa1290074f8e6fe331f3f21f43a9f3877f1d8c5","sectionUniqueID":"SID1698333986337","pxReadOnly":"false"},"ffa1290074f8e6fe331f3f21f43a9f3877f1d8c5_2":{"pxReferencedId":"9e829740e7172d0015f28e72a900586e25b504a7","sectionUniqueID":"SID1698333986510","pxReadOnly":"false"},"9e829740e7172d0015f28e72a900586e25b504a7_12":{"pxReferencedId":"93e9f86af976b7ebd706cfa53ba34ac7e3b37902","sectionUniqueID":"SID1698333987068","pxReadOnly":"false"},"9e829740e7172d0015f28e72a900586e25b504a7_23":{"pxReferencedId":"2bf353fe8984125fc69e234028a981d63e65890f","sectionUniqueID":"SID1698333987492","pxReadOnly":"false"},"9e829740e7172d0015f28e72a900586e25b504a7_27":{"pxReferencedId":"55c68f9db85e1cce77630c8ddf743011c1b4705d","sectionUniqueID":"SID1698333987821","pxReadOnly":"false"},"9e829740e7172d0015f28e72a900586e25b504a7_34":{"pxReferencedId":"b533b54e43abaf0a5cb454449e92ccf94ce81ac2","sectionUniqueID":"SID1698333988201","pxReadOnly":"false"},"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_20":{"pxReferencedId":"926cab57e3ae5387c3bfc011adbbdf2e20625896","sectionUniqueID":"SID1698333988412","pxReadOnly":"false"},"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_42":{"pxReferencedId":"c41a1b5d492ce56a56bfd6e257faf37f36542379","sectionUniqueID":"SID1698333988564","pxReadOnly":"false"},"9e829740e7172d0015f28e72a900586e25b504a7_44":{"pxReferencedId":"856d85072254622e3b927718495c6e2daf25e672","sectionUniqueID":"SID1698333988680","pxReadOnly":"false"},"d0cf4bfdcaf5196bcee58344824e8ee798582c98_2":{"pxReferencedId":"4d987685a7ff105cc7ced4b9aea023b73e0adf8","sectionUniqueID":"SID1698333988681","pxReadOnly":"false"},"4d987685a7ff105cc7ced4b9aea023b73e0adf8_2":{"pxReferencedId":"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d","sectionUniqueID":"SID1698333988682","pxReadOnly":"false"},"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d_6":{"pxReferencedId":"2b62f6b12e1f0748b0cb7230fe7dd6fafd11f180","sectionUniqueID":"SID1698333988683","pxReadOnly":"false"},"32b7b516fd0f05fd5d233a05780a1bb9fca37c3d_10":{"pxReferencedId":"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c","sectionUniqueID":"SID1698333988684","pxReadOnly":"false"}},"$pxLocalized":{"$pyActionPrompt":"","Go to banner$pyButtonLabel":"Go to banner","$pyCaption":"","Go to main content$pyButtonLabel":"Go to main content","Go to search bar$pyButtonLabel":"Go to search bar","Go to navigation$pyButtonLabel":"Go to navigation","SSA logo$pyActionPrompt":"SSA logo","Image$pyCaption":"Image","New$pyActionPrompt":"New","New$pyButtonLabel":"New","Searchresultsfor$pyTooltip":"Search and Interaction Options","tooltip$pyHelperTextType":"tooltip","Search...$pyActionPrompt":"Search...","SearchForanItem$pyTooltip":"Search for a Social Security Number","SearchForanItem$pyActionPrompt":"Search for a Social Security Number","Group$pyCaption":"Group","Clipboard$pyActionPrompt":"Clipboard","$pyButtonLabel":"","Button$pyCaption":"Button","none$pyHelperTextType":"none","Canned Data$pyCaption":"Canned Data","True$pyCaption":"true","False$pyCaption":"false","Enable Service Failures$pyActionPrompt":"Enable Service Failures","Service Failures$pyCaption":"Service Failures","Use Cache$pyCaption":"Use Cache","Checkbox$pyCaption":"Checkbox","Clear cache$pyActionPrompt":"Clear cache","Canned Data Salt Value$pyTooltip":"Canned Data Salt Value","Salt$pyCaption":"Salt","ex. FRA,RASR$pyActionPrompt":"ex. FRA,RASR","Service$pyCaption":"Service","Resources Menu$pyActionPrompt":"Resources Menu","Launch Guided tour$pyActionPrompt":"Launch Guided tour"},"$pxActionString":{"2fd9314397916edcb5aa8a9eb49890b68e910168_5":" data-click\u003d\u0027[[\"runScript\", [\"skipToBanner()\"]]]\u0027 ","2fd9314397916edcb5aa8a9eb49890b68e910168_9":" data-click\u003d\u0027[[\"runScript\", [\"cpm_skipToContentCustom(\\\"main\\\")\"]]]\u0027 ","2fd9314397916edcb5aa8a9eb49890b68e910168_13":" data-click\u003d\u0027[[\"runScript\", [\"cpm_skipToContentCustom(\\\"search\\\")\"]]]\u0027 ","2fd9314397916edcb5aa8a9eb49890b68e910168_17":" data-click\u003d\u0027[[\"runScript\", [\"cpm_skipToContentCustom(\\\"navigation\\\")\"]]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_9":" data-click\u003d\u0027[[\"runScript\", [\"pega.cpm.IP.HideHeader()\"]],[\"runScript\", [\"pega.desktop.activateDocument(\\\"0\\\")\"]],[\"runDataTransform\", [\"CPMSetHomeContext\", \"\u003d\", \"pyDisplayHarness\",\":event\"]],[\"runScript\", [\"pega_cpm_IP_skipToMainContent(\\\"PS1__TABTHREAD0\\\")\"]],[\"runScript\", [\"resizeHomeTab()\"]]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_19":" data-click\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"CPMInteractionPortalMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-standard\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698252932920\"},\":event\"]]]\u0027 data-keydown\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"CPMInteractionPortalMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-standard\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698252932923\"},\":event\"],,\"enter\"]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_30":" data-message\u003d\u0027[[\"runScript\", [\"forwardSocialEvent(event)\"]]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_32":" data-message\u003d\u0027[[\"runScript\", [\"FBMEventsCallback(event)\"]]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_38":" data-message\u003d\u0027[[\"runScript\", [\"onNewEmailNotification(event)\"]]]\u0027 ","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_40":" data-message\u003d\u0027[[\"runScript\", [\"oPegaChatEventHandler.showChatToasterPop(event)\"]]]\u0027 ","2bf353fe8984125fc69e234028a981d63e65890f_8":" data-change\u003d\u0027[[\"postValue\",[\":event\"]],[\"runDataTransform\", [\"SetInteractionMetaData\", \"SearchText\u003d#~D_SearchMetaData.pySearchText~#\u0026SearchOption\u003d#~D_SearchMetaData.SearchOptions~#\u0026GroupID\u003d#~D_SearchMetaData.GroupID~#\", \"pyDisplayHarness\",\":event\"]],[\"refresh\", [\"thisSection\",\"\", \"\", \"\u003d\", \"\", \"ClearSSNSearchText,\",\":event\",\"\",[\"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjlhOGExZDc1YTlmNTBiNzVlMmZkNGMwNDJhYTUzNGRhY2M0MGE4ZWI3YTc2ZTBiMGQ3ODM4YzY2MzAzNDIwZjExMDNkOGJhZDAzNDA2ODc0N2M4ZTIxNDBmOGU1MWE0YjcyMzQyZDJhZjkxZGViYzAxNmE1Y2RiMDNjM2FkMmI2MjNkMTM0YjdlZTc0ZDZmZTAyYTEyZjdkNWU4ZDM1MTQy*\",{},{}],\"pyDisplayHarness\"]]]\u0027 ","2bf353fe8984125fc69e234028a981d63e65890f42_1_9":" data-change\u003d\u0027[[\"postValue\",[\":event\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"runDataTransform\", [\"SetInteractionMetaData\", \"SearchText\u003d#~D_SearchMetaData.pySearchText~#\u0026SearchOption\u003d#~D_SearchMetaData.SearchOptions~#\u0026GroupID\u003d#~D_SearchMetaData.GroupID~#\", \"pyDisplayHarness\",\":event\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]]]\u0027 data-keydown\u003d\u0027[[\"postValue\",[\":event\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]],\"enter\"],[\"runDataTransform\", [\"SetInteractionMetaData\", \"SearchText\u003d#~D_SearchMetaData.pySearchText~#\u0026SearchOption\u003d#~D_SearchMetaData.SearchOptions~#\u0026GroupID\u003d#~D_SearchMetaData.GroupID~#\", \"pyDisplayHarness\",\":event\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]],\"enter\"],[\"setMobileTransition\",[\"pega.mobile.transitions.MOVE_FORWARD\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"createNewWork\",[\"#~D_SearchMetaData.ClassName~#\",\"\",\"#~D_SearchMetaData.FlowName~#\",\"\u0026\u003d\",\"\",\"\",\"\",{\"target\":\"primary\"},\"\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]],\"enter\"],[\"refresh\", [\"thisSection\",\"\", \"\", \"\u003d\", \"\", \"ClearSSNSearchText,\",\":event\",\"\",[\"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjlhOGExZDc1YTlmNTBiNzVlMmZkNGMwNDJhYTUzNGRhY2M0MGE4ZWI3YTc2ZTBiMGQ3ODM4YzY2MzAzNDIwZjExMDNkOGJhZDAzNDA2ODc0N2M4ZTIxNDBmOGU1MWE0YjcyMzQyZDJhZjkxZGViYzAxNmE1Y2RiMDNjM2FkMmI2MjNkMTM0YjdlZTc0ZDZmZTAyYTEyZjdkNWU4ZDM1MTQy*\",{},{}],\"pyDisplayHarness\"],,\"enter\"],[\"setValue\", [[\".pySearchText\", \"D_SearchMetaData\", \"\", \"\", \"\"]],,\"enter\"],[\"runScript\", [\"delayCheckForBusyIndicatorAndSetFocusToTab()\"],,\"enter\"]]\u0027 ","2bf353fe8984125fc69e234028a981d63e65890f_16":" data-click\u003d\u0027[[\"postValue\",[\":event\"],[\"\u0026\",[\"OP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"runDataTransform\", [\"SetInteractionMetaData\", \"SearchText\u003d#~D_SearchMetaData.pySearchText~#\u0026SearchOption\u003d#~D_SearchMetaData.SearchOptions~#\u0026GroupID\u003d#~D_SearchMetaData.GroupID~#\", \"pyDisplayHarness\",\":event\"],[\"\u0026\",[\"OP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"setMobileTransition\",[\"pega.mobile.transitions.NONE\"],[\"\u0026\",[\"OP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"createNewWork\",[\"#~D_SearchMetaData.ClassName~#\",\"\",\"#~D_SearchMetaData.FlowName~#\",\"\u0026\u003d\",\"\",\"\",\"\",{\"target\":\"primary\"},\"\"],[\"\u0026\",[\"OP\",[\"$PD_SearchMetaData$ppySearchText\",\"!\u003d\",\"\",\"false\"]]]],[\"refresh\", [\"thisSection\",\"\", \"\", \"\u003d\", \"\", \"ClearSSNSearchText,\",\":event\",\"\",[\"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjlhOGExZDc1YTlmNTBiNzVlMmZkNGMwNDJhYTUzNGRhY2M0MGE4ZWI3YTc2ZTBiMGQ3ODM4YzY2MzAzNDIwZjExMDNkOGJhZDAzNDA2ODc0N2M4ZTIxNDBmOGU1MWE0YjcyMzQyZDJhZjkxZGViYzAxNmE1Y2RiMDNjM2FkMmI2MjNkMTM0YjdlZTc0ZDZmZTAyYTEyZjdkNWU4ZDM1MTQy*\",{},{}],\"pyDisplayHarness\"]],[\"runScript\", [\"delayCheckForBusyIndicatorAndSetFocusToTab()\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d45_1_9":" data-change\u003d\u0027[[\"postValue\",[\":event\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d_11":" data-click\u003d\u0027[[\"openUrlInWindow\", [\"/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity\u003d@baseclass.pzProcessURLInWindow\u0026amp;pyPreActivity\u003dpzGetClipboardPages\u0026amp;showingAdvance\u003dfalse\u0026amp;fromChange\u003dfalse\u0026amp;selectedThread\u003d\u0026amp;selectedThreadLabel\u003d\u0026amp;nodeId\u003d\u0026amp;requestorId\u003d\u0026amp;launchClipboardViewer\u003dtrue\", \"Clipboard Viewer\", \"height\u003d768,width\u003d1200,location\u003d0,menubar\u003d0,toolbar\u003d0,status\u003d0,resizable\u003d1,location\u003d0,scrollbars\u003d1\", \"false\",\":event\",\"false\", \"false\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d_23":" data-change\u003d\u0027[[\"postValue\",[\":event\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d_30":" data-change\u003d\u0027[[\"postValue\",[\":event\"]],[\"runDataTransform\", [\"ClearCustomerViewObjects\", \"\u003d\", \"pyDisplayHarness\",\":event\"],[\"\u0026\",[\"AP\",[\"$PD_SearchMetaData$psimulationEnabled\",\"\u003d\",\"false\",\"true\"]]]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d_37":" data-click\u003d\u0027[[\"runDataTransform\", [\"ClearCustomerViewObjects\", \"\u003d\", \"pyDisplayHarness\",\":event\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d415_1_9":" data-change\u003d\u0027[[\"postValue\",[\":event\"]]]\u0027 ","55c68f9db85e1cce77630c8ddf743011c1b4705d416_1_9":" data-hover\u003d\u0027[[\"showSmartTip\",[\":event\",\"tool_tip\",\"To disable more than one service, enter comma separated values. \u003cbr\u003eThe list of allowable values are:\u003cbr\u003eRpds (eRPS)\u003cbr\u003eRome (ROME)\u003cbr\u003eMef (Earnings)\u003cbr\u003eCommon1099 (1099)\u003cbr\u003eCommonMrc (Medicare Card)\u003cbr\u003eSsiis (Title 16)\u003cbr\u003eT2ChangePayee (Title 2)\u003cbr\u003eT2T18 (Title 2)\u003cbr\u003eClaimStatus (Claim Status)\u003cbr\u003eIAccomm (Accommodations)\u003cbr\u003ePiws (Person Information)\u003cbr\u003eIenp or OwnSsn (Core Services)\u003cbr\u003eJdbcDataSourceQuery (Query)\u003cbr\u003ePiqsAccommodations (Person Information Query)\u003cbr\u003eGeneral (CV Broker)\u003cbr\u003eDI (MySSA Account Services)\u003cbr\u003eFra (Do not display the Complete customer record failed error if only FRA service is down. \u003cbr\u003eIf more than one service is down with FRA service do not include FRA in the list of the \u003cbr\u003eservices displayed in the error message.)\u003cbr\u003eRASR (Do not display the Complete customer record failed error if only RASR service is down. \u003cbr\u003eIf more than one service is down with RASR service do not include FRA and RASR in the list of \u003cbr\u003ethe services displayed in the error message.)\"]]]\u0027 data-change\u003d\u0027[[\"postValue\",[\":event\"]]]\u0027 onmouseover \u003d \u0027pega.c.cbe.processHoverEvent(event)\u0027 ","b533b54e43abaf0a5cb454449e92ccf94ce81ac2_16":" data-focus\u003d\u0027[[\"runScript\", [\"showResourceTooltip()\"]]]\u0027 data-click\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"ResourcesMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-header-menu\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698333987866\"},\":event\"]],[\"runScript\", [\"setResourcesMenuLinksTitleAttr()\"]]]\u0027 data-keydown\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"ResourcesMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-header-menu\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698333987867\"},\":event\"],,\"enter\"],[\"runScript\", [\"setResourcesMenuLinksTitleAttr()\"],,\"enter\"]]\u0027 ","b533b54e43abaf0a5cb454449e92ccf94ce81ac2_31":" data-focus\u003d\u0027[[\"runScript\", [\"showUserMenuTooltip()\"]]]\u0027 data-click\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"CPMInteractionPortalUserMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-header-menu\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698333987883\"},\":event\"]]]\u0027 data-keydown\u003d\u0027[[\"showMenu\",[{\"dataSource\":\"CPMInteractionPortalUserMenu\", \"isNavNLDeferLoaded\":\"false\", \"isNavTypeCustom\":\"false\", \"className\":\"CPM-Portal\",\"UITemplatingStatus\":\"Y\",\"menuAlign\":\"left\",\"format\":\"menu-format-header-menu\" , \"loadBehavior\":\"ondisplay\", \"ellipsisAfter\":\"999\",\"usingPage\":\"pyDisplayHarness\", \"useNewMenu\":\"true\", \"isMobile\":\"false\", \"navPageName\":\"pyNavigation1698333987884\"},\":event\"],,\"enter\"]]\u0027 ","b533b54e43abaf0a5cb454449e92ccf94ce81ac2_38":" data-focus\u003d\u0027[[\"runScript\", [\"showGuidedTourTooltip()\"]]]\u0027 data-click\u003d\u0027[[\"guidedTour\", [\"CPM-Portal\",\"TEDGuidedTour\",\"Start\",\"true\",\"CustomTourStopContainer\"]]]\u0027 data-keydown\u003d\u0027[[\"guidedTour\", [\"CPM-Portal\",\"TEDGuidedTour\",\"Start\",\"true\",\"CustomTourStopContainer\"],,\"enter\"]]\u0027 ","9e829740e7172d0015f28e72a900586e25b504a7_46":" data-click\u003d\u0027[[\"runScript\", [\"event()\"]]]\u0027 "},"$pxWhens":{"2fd9314397916edcb5aa8a9eb49890b68e910168_19":1,"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_21":1,"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_24":0,"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_28":0,"55c68f9db85e1cce77630c8ddf743011c1b4705d_54":1,"55c68f9db85e1cce77630c8ddf743011c1b4705d_13":1,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_15":1,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_13":1,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_30":0,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_45":1,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_43":1,"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_50":1,"856d85072254622e3b927718495c6e2daf25e672_8":0},"$pxNonTemplates":{"6539e55c7f1da2dffb1a7929ac493ce6b5dabdb7_1":"43645830693396","b3bffc7be67711753d8c8360c677dc8b95d0a082_1":"43645937099475","54c68abcdab0a50ccf208beb701185bbd40640_1":"43646061263114","2e42490f1966355a3e3bc42a6604ddf02eef55a1_1":"43646098995328","1af42eb4307bdeee7795ff4abbb6ea7d3f163d6c_1":"43646370951782","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_15":"43646371367905","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_37":"43646564244837","f9dc8d57dc8e673003585d74ed63e714768f6a5_1":"43646640600527","e22c5383221a47caf71e8e06d4b8738e04a1aa8a_1":"43647505820413","b533b54e43abaf0a5cb454449e92ccf94ce81ac2_35":"43647685520898","b533b54e43abaf0a5cb454449e92ccf94ce81ac2_51":"43647836427360","e47ca67857049d1467d74de30954eb216363dbdd_1":"43647867688391","b96c71a038ad4d037d32bfe4d20655cbab1ff74d_1":"43647911421714","2b62f6b12e1f0748b0cb7230fe7dd6fafd11f180_2":"43647952099042","89bcc6062a72e72d513f7eed500fe6d8e3c3440d_1":"43647955168459","27a15be48d7d61a4202aff8dfc43fc56444e5169_1":"43647955295202"},"$pxSubscriptionId":{"93e9f86af976b7ebd706cfa53ba34ac7e3b37902_31":"58c0e0b5-a981-4936-895a-c418687bf7a7","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_33":"0cb5f906-61e9-47f2-b113-7629ba148563","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_39":"f8d8659e-a058-43ac-9bec-fa9fad4c74df","93e9f86af976b7ebd706cfa53ba34ac7e3b37902_41":"48184c32-895e-4a96-a0ac-c554f2e48c0a"},"$pxErrors":{"2bf353fe8984125fc69e234028a981d63e65890f_5":"","2bf353fe8984125fc69e234028a981d63e65890f42_6":"","55c68f9db85e1cce77630c8ddf743011c1b4705d45_6":"","55c68f9db85e1cce77630c8ddf743011c1b4705d_17":"","55c68f9db85e1cce77630c8ddf743011c1b4705d_24":"","55c68f9db85e1cce77630c8ddf743011c1b4705d_31":"","55c68f9db85e1cce77630c8ddf743011c1b4705d415_6":"","55c68f9db85e1cce77630c8ddf743011c1b4705d416_6":""},"$pxDataSource":{"2bf353fe8984125fc69e234028a981d63e65890f_6":"Declare_CAAvailableDataSources_pa40215065885682pz.DisplayDataSources","9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_8":"D_Interaction_pa38226014852671pz","9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_17":"D_Interaction_pa38226014852671pz"},"SearchPortal":"","cannedDataEnabled":"","pyTemplateInputBox":""},"pyPortal":{"$pxSections":{"9876756d29318a3f430d3d4ceb51774c782d60bd_43645531851058":{"pxReferencedId":"9876756d29318a3f430d3d4ceb51774c782d60bd","sectionUniqueID":"SID1698333986260","pxReadOnly":"true"},"9876756d29318a3f430d3d4ceb51774c782d60bd_38":{"pxReferencedId":"8bfb1fb36a358fb5ff9c92858bf354f9c569359a","sectionUniqueID":"SID1698333986287","pxReadOnly":"true"}},"$pxLocalized":{"Toggle runtime toolbar$pyActionPrompt":"Toggle runtime toolbar","$pyButtonLabel":"","Button$pyCaption":"Button","Issues$pyActionPrompt":"Issues","$pyCaption":"","Clipboard$pyActionPrompt":"Clipboard","Tracer$pyActionPrompt":"Tracer","Toggle Live UI$pyActionPrompt":"Toggle Live UI","Toggle Live Data$pyActionPrompt":"Toggle Live Data","Toggle Accessibility Inspector$pyActionPrompt":"Toggle Accessibility Inspector","Toggle Automation Recorder$pyActionPrompt":"Toggle Automation Recorder","Toggle Agile Workbench$pyActionPrompt":"Toggle Agile Workbench"},"$pxActionString":{"9876756d29318a3f430d3d4ceb51774c782d60bd_4":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.runtimeToolbar.toggle(event)\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_8":" data-click\u003d\u0027[[\"openUrlInWindow\", [\"/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity\u003d@baseclass.pzProcessURLInWindow\u0026amp;pyPreActivity\u003dshowStream\u0026amp;pyTargetStream\u003dMyAlerts\u0026amp;pyTargetFrame\u003d\u0026amp;pyBasePage\u003d\u0026amp;pyApplyTo\u003d\", \"My Alerts\", \"height\u003d600,width\u003d800,location\u003d0,menubar\u003d0,toolbar\u003d0,status\u003d0,resizable\u003d1,location\u003d0,scrollbars\u003d1\", \"false\",\":event\",\"false\", \"false\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_12":" data-click\u003d\u0027[[\"openUrlInWindow\", [\"/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity\u003d@baseclass.pzProcessURLInWindow\u0026amp;pyPreActivity\u003dpzGetClipboardPages\u0026amp;showingAdvance\u003dtrue\u0026amp;fromChange\u003dtrue\u0026amp;selectedThread\u003d\u0026amp;selectedThreadLabel\u003d\u0026amp;nodeId\u003d\u0026amp;requestorId\u003d\u0026amp;launchClipboardViewer\u003dtrue\", \"Clipboard Viewer\", \"height\u003d768,width\u003d1200,location\u003d0,menubar\u003d0,toolbar\u003d0,status\u003d0,resizable\u003d0,location\u003d0,scrollbars\u003d0\", \"false\",\":event\",\"false\", \"false\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_16":" data-click\u003d\u0027[[\"runDataTransform\", [\"pzPrepareTracerURL\", \"\u003d\", \"pyPortal\",\":event\"]],[\"openUrlInWindow\", [\"/prweb/PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal?pyActivity\u003d@baseclass.pzProcessURLInWindow\u0026amp;pyPreActivity\u003dRedirectAndRun\u0026amp;ThreadName\u003dTracer\u0026amp;AccessGroupName\u003d\u0026amp;Location\u003d#~pyPortal.pyTracerURL~#\u0026amp;PagesToCopy\u003d\u0026amp;bPurgeTargetThread\u003dtrue\u0026amp;bEncodeLocation\u003d\u0026amp;PreserveAccessGroup\u003d\u0026amp;bAllowAccess\u003d\", \"Tracer\", \"height\u003d650,width\u003d1200,top\u003d5,left\u003d5,location\u003d0,menubar\u003d0,toolbar\u003d0,status\u003d0,resizable\u003d1,location\u003d0,scrollbars\u003d1\", \"false\",\":event\",\"false\", \"false\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_20":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.dataSourceInspector.stopLiveData()\"]],[\"runScript\", [\"pega.ui.inspector.toggle()\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_24":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.dataSourceInspector.toggleHighligting()\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_28":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.dataSourceInspector.stopLiveData()\"]],[\"runScript\", [\"pega.ui.inspector.accessibility.toggle()\"]]]\u0027 ","8bfb1fb36a358fb5ff9c92858bf354f9c569359a_4":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.dataSourceInspector.stopLiveData()\"]],[\"runActivity\", [\"\", \"\", \"pyPortal\", \":event\", \"\", \"\", \"\", \"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH05YmZjNTVlNDA2ZDQ2ODAyOTYyNjlkNzQ2NDMwOGVjMWRkYjlkNmJiN2JlMTM3NWY4Nzk5ZDg3NTMzOTE4ZWE4NDVjYjVkZDAxNzYyOTA1ODBlYTMzYTUwYjBlNmE3NTA5ZDNkMzc0YTQwNzZhZWRlZDQ2YWQwODNjNDc3ZmFkMDVlNDA1NTk4MzVlMWE2ZThkMTk3Yjk5N2JlYTkwMTE5MTE4NzQ5ODgzZmVjZDNiMWYyYjBlMTI4YjUxOTEzOTZjZDMwZjI4MDdhMWJiOTliNzFhMDk2NWUwNzAxNGRlNWM4NmY4MjNlYWMzNmFlNjRkZDI3ZWEyNzU4ZjhhMjYwNmY4NDA2NzA3YTliY2JiMjA4NjA5MzkwN2U0ZWIyNDI5Y2ZlMTU4NWJkNjM3ZGE5NTg2OGM4ZWM2MzNhODE2ODYzMTc1OTQxMDgwMDNiYmQzNDE2ZDFkMGJhYjYzNDk5YmM5NGUzYWEyOTczNTVmZGQwYmJiMjRhMmIzYjE4OTYwOTRjMDcxYmE1YTAxMDVmYTM5YTNmM2QzZDA1YzYxYWMzYjE5NzMzMTdlNGFjZTY0NzdkNmUwMGRhMjk3MzAy*\"]],[\"runScript\", [\"pega.ui.automation.recorder.toggle()\"]]]\u0027 ","9876756d29318a3f430d3d4ceb51774c782d60bd_40":" data-click\u003d\u0027[[\"runScript\", [\"pega.ui.dataSourceInspector.stopLiveData()\"]],[\"runScript\", [\"pega.ui.gapidentifier.toggle()\"]],[\"runScript\", [\"cleanUpMarkers_GI()\"]]]\u0027 "},"$pxPrivileges":{"9876756d29318a3f430d3d4ceb51774c782d60bd_7":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_11":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_15":1},"$pxWhens":{"9876756d29318a3f430d3d4ceb51774c782d60bd_22":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_26":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_30":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_34":0,"8bfb1fb36a358fb5ff9c92858bf354f9c569359a_6":1,"9876756d29318a3f430d3d4ceb51774c782d60bd_42":1}},"D_SearchMetaData":{"SearchOptions":"Inbound Call","$pxLocalized":{"$SearchOptions$pyCaption":"Inbound Call","$GroupID$pyCaption":"2","$cannedDataEnabled$pyCaption":"false","$serviceFailuresEnabled$pyCaption":"false","$simulationEnabled$pyCaption":"false"},"pySearchText":"","GroupID":"2","cannedDataEnabled":"false","serviceFailuresEnabled":"false","simulationEnabled":"false","SaltValue":"","servicesToFail":""},"Declare_CAAvailableDataSources_pa40215065885682pz":{"$pxPageSize$DisplayDataSources":5,"DisplayDataSources":[{"pyRuleName":"SSN Search","pyLabelOld":"SSN Search","$pxLocalized":{"$pyLabelOld$pyTooltip":"SSN Search","$pyLabelOld$pyCaption":"SSN Search"}},{"pyRuleName":"Inbound Call","pyLabelOld":"Inbound Call","$pxLocalized":{"$pyLabelOld$pyTooltip":"Inbound Call","$pyLabelOld$pyCaption":"Inbound Call"}},{"pyRuleName":"Outbound Call","pyLabelOld":"Outbound Call","$pxLocalized":{"$pyLabelOld$pyTooltip":"Outbound Call","$pyLabelOld$pyCaption":"Outbound Call"}},{"pyRuleName":"In Person","pyLabelOld":"In Person","$pxLocalized":{"$pyLabelOld$pyTooltip":"In Person","$pyLabelOld$pyCaption":"In Person"}},{"pyRuleName":"Mail/Deskwork","pyLabelOld":"Mail/Deskwork","$pxLocalized":{"$pyLabelOld$pyTooltip":"Mail/Deskwork","$pyLabelOld$pyCaption":"Mail/Deskwork"}}]},"TempMessagesAndAlertsPage":{"$pxSections":{"b533b54e43abaf0a5cb454449e92ccf94ce81ac2_12":{"pxReferencedId":"fea39b75c3d6633a2653568e72cd774dcea4d0fa","sectionUniqueID":"SID1698333988253","pxReadOnly":"false"}},"$pxLocalized":{"Messages and Alerts$pyActionPrompt":"Messages and Alerts","Image$pyCaption":"Image","$pyCaption":""},"$pxActionString":{"fea39b75c3d6633a2653568e72cd774dcea4d0fa_4":" data-click\u003d\u0027[[\"processAction\", [\"DisplayESubmitMessagesAndAlertsForRecipient\",\"overlay\",\":event\",\"TempMessagesAndAlertsPage\",\"Rule-HTML-Section\",\"pz-po-c-standard_no_padding\",\"pzModalTemplate\",\"%7B%22mobile%22%3A%7B%22reveal%22%3A%7B%22effect%22%3A%22anim-null%22%7D%2C%22isCustomDismiss%22%3A%22true%22%2C%22dismiss%22%3A%7B%22effect%22%3A%22anim-null%22%7D%7D%7D\",\"true\",\"SSA-ES-Data-MessagesAndAlerts\",\"SSA-ES-Data-MessagesAndAlerts\",\"false\",\"false\",\"\",\"\"]],[\"refresh\", [\"otherSection\",\"ESubmitMessagesAndAlertsCount\", \"\", \"\u003d\", \"\", \",\",\":event\",\"1\",[\"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4Mjk0MTY4NmQwYTA4NzlhZGE1ZTM5YjNhNmEzMDBmOGI0ZA%3D%3D*\",{},{}],\"TempMessagesAndAlertsPage\"]]]\u0027 "},"$pxDataSource":{"fea39b75c3d6633a2653568e72cd774dcea4d0fa_11":"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz"}},"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz":{"$pxSections":{"fea39b75c3d6633a2653568e72cd774dcea4d0fa_11":{"pxReferencedId":"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e","sectionUniqueID":"SID1698333988361","pxReadOnly":"false","paramDP":{"name":"D_ESubmitMessagesAndAlertsCount","params":"{\u0027Recipient\u0027:\u0027#~OperatorID.pyUserIdentifier~#\u0027}"}}},"$pxActionString":{"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_2":" data-message\u003d\u0027[[\"refresh\", [\"otherSection\",\"ESubmitMessagesAndAlerts\", \"\", \"\u003d\", \"\", \"FlushESubmitMessagesAndAlertsCount,\",\":event\",\"\",[\"pzuiactionzzz\u003dCXt0cn17T3BlblBvcnRhbF9DUE1JbnRlcmFjdGlvblBvcnRhbH0zOWU4MjY2NjhiNzYxNGU1YzAwNmUyZjE5MjU1N2E0NWI4N2QxZWYxY2E4YTFhNjQyZjJiYWE5NmViMWNiMmQ3YzVjZGZkNmRjMGQwM2UzYzBhYTA1Y2M5ZDI2NDU4MjliMzM5NmNlOWUzOWNkMDU3MTZkMTIwODhmZTczYWQ3MzdmN2U4MGEwNTRmNzdlMWU5YWE1MTNjY2M5MTNhMTI5M2UyMmU0ZWQ3N2U2N2MzN2YxN2I0NzE5ZTBkYWRjNjdlYzI4OWYwY2QyNmQwN2E5OWIyZDg2OTcxMDk2ZTE0Mg%3D%3D*\",{},{}],\"D_ESubmitMessagesAndAlertsCount_pa40215928060197pz\"]]]\u0027 ","456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_7":" data-change\u003d\u0027[[\"postValue\",[\":event\"]]]\u0027 "},"$pxSubscriptionId":{"456a21149eaaa0d9e03617d6a2efc1e61f21bb7e_3":"2361a587-7e84-4ca2-bc05-cf0a3596b231"},"pyUnreadNotificationsCount":"0","$pxLocalized":{"$pyUnreadNotificationsCount$pyCaption":"0","$pyCaption":""}},"pxRequestor":{"pxReqLocale":"en_US","$pxLocalized":{"$pxReqLocale$pyCaption":"en_US"}},"D_Interaction_pa38226014852671pz":{"$pxSections":{"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_8":{"pxReferencedId":"88ee0eaf3a9bdcbc886c4306ee22637c6abf8bd4","sectionUniqueID":"SID1698333988685","pxReadOnly":"false","paramDP":{"name":"D_Interaction","params":"{\u0027InteractionId\u0027:\u0027#~D_CPMPortalContext.ParentID~#\u0027}"}},"9906777b9a1cdcb8b5193e20b0cdaf841a4b723c_17":{"pxReferencedId":"88ee0eaf3a9bdcbc886c4306ee22637c6abf8bd4","sectionUniqueID":"SID1698333988686","pxReadOnly":"false","paramDP":{"name":"D_Interaction","params":"{\u0027InteractionId\u0027:\u0027#~D_CPMPortalContext.pyID~#\u0027}"}}}}},"OpenPortal_CPMInteractionPortal");</script><script>pega.ui.jittemplate.addMetadataTree([{"pyInstanceID":"43645500216651","pxReferencedId":"2fd9314397916edcb5aa8a9eb49890b68e910168_43645500122457","pyName":"pxSection","pzPrimaryPage":"pyDisplayHarness","ignoreBaseRef":"true"},{"pyInstanceID":"43645531971403","pxReferencedId":"9876756d29318a3f430d3d4ceb51774c782d60bd_43645531851058","pyName":"pxSection","pzPrimaryPage":"pyPortal"},{"pyInstanceID":"43645608697384","pxReferencedId":"d0cf4bfdcaf5196bcee58344824e8ee798582c98_1","pyName":"pxSection","pzPrimaryPage":"pyDisplayHarness","ignoreBaseRef":"true"},{"pyInstanceID":"43647951840654","pxReferencedId":"d0cf4bfdcaf5196bcee58344824e8ee798582c98_2","pyName":"pxSection","pzPrimaryPage":"pyDisplayHarness","ignoreBaseRef":"true"}]);</script></div><script>pega.ui.jittemplate.renderUI();</script><script type="text/javascript"> /* Disabling support for the browser back button */ history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); }); pega.u.d.GET_REQUEST_DELETEDOCUMENT = true; /*(INC-182972) Local Change START- Adds the missing attribute 'headers' to the first column of a table row*/ if (pega && pega.u && pega.u.d && pega.u.d.attachOnload) { pega.u.d.attachOnload(function () { $('div#PEGA_GRID_CONTENT table#gridLayoutTable.gridTable').children().each(function(idx, elem){ var rows = $(elem).find("table.gridTable tr").toArray(); if(rows.length <= 1) return; const headerRow = rows.shift(); if($(headerRow).children("th").length) { var tableHeader = $(headerRow).children("th")[0]; var idAttr = $(tableHeader).attr('id'); rows.forEach(function(elem, idx){ if($(elem).children("td").length){ var td1 = $(elem).children("td")[0]; $(td1).attr("headers",idAttr); } }) } }) }, true); } /*(INC-146715) Local Change START- Removes tabindex from <td> elements in table layout*/ pega.u.d.attachOnload( function () { if (!pega.ui.grid) { return; } pega.ui.grid.prototype.focusLastElement = function (content, formElementsOnly) { var Dom = pega.util.Dom; if (!content) { return; } /* Add tabindex to the first cell */ /*if (Dom.getFirstChild(content) && Dom.getFirstChild(content).nodeName == "TD" && content.getAttribute("expanded") != "true" && content.nodeName == "TR" && !this.hasFocusableContent(Dom.getFirstChild(content))) { Dom.getFirstChild(content).tabIndex = "0"; }*/ if (content.nodeName == "LI" && Dom.hasClass(content, "gridRow")) { content = Dom.getFirstChild(content); } var focustags = content.getElementsByTagName("*"); for (var len = focustags.length - 1; len >= 0; len--) { var felem = focustags[len]; if (felem.disabled) { continue; } var fNodeName = felem.nodeName; if ((fNodeName == "A" || fNodeName == "BUTTON" || fNodeName == "SELECT" || fNodeName == "INPUT" || fNodeName == "TEXTAREA" || ((fNodeName == "TD" || fNodeName == "TH" || fNodeName == "SPAN" || fNodeName == "DIV" || fNodeName == "IMG" || fNodeName == "I") && felem.outerHTML.split(">")[0].toUpperCase().indexOf("TABINDEX") != -1)) && (felem.type != "hidden" && ((felem.currentStyle && felem.currentStyle.visibility != "hidden" && felem.currentStyle.display != "none") || (window.getComputedStyle && window.getComputedStyle(felem, "").visibility != "hidden" && window.getComputedStyle(felem, "").display != "none")))) { if (formElementsOnly && (fNodeName == "A" || (fNodeName == "SPAN" && felem.className == "pageIndex"))) { continue; } try { felem.focus(); felem.focus(); /* removed comment from the below snippet as it was not allowing selection of text in text inputs and areas */ if (felem.select) felem.select(); /*BUG-107758: Commented the code as it's selecting the text*/ } catch (e) { return false; } return true; } } }; pega.ui.grid.prototype.focusFirstElement = function (content, formElementsOnly) { var Dom = pega.util.Dom; if (!content) { return; } /* Add tabindex to the first cell */ /*if (Dom.getFirstChild(content) && Dom.getFirstChild(content).nodeName == "TD" && content.getAttribute("expanded") != "true" && content.nodeName == "TR" && !this.hasFocusableContent(Dom.getFirstChild(content))) { Dom.getFirstChild(content).tabIndex = "0"; }*/ var focustags = content.getElementsByTagName("*"); for (var len = 0; len < focustags.length; len++) { var felem = focustags[len]; if (felem.disabled) { continue; } var fNodeName = felem.nodeName; if ((fNodeName == "A" || fNodeName == "BUTTON" || fNodeName == "SELECT" || fNodeName == "INPUT" || fNodeName == "TEXTAREA" || ((fNodeName == "TD" || fNodeName == "TH" || fNodeName == "SPAN" || fNodeName == "DIV" || fNodeName == "IMG" || fNodeName == "I") && felem.outerHTML.split(">")[0].toUpperCase().indexOf("TABINDEX") != -1)) && (felem.type != "hidden" && ((felem.currentStyle && felem.currentStyle.visibility != "hidden" && felem.currentStyle.display != "none") || (window.getComputedStyle && window.getComputedStyle(felem, "").visibility != "hidden" && window.getComputedStyle(felem, "").display != "none"))) && felem.offsetWidth > 0) { if (formElementsOnly && (fNodeName == "TD" || fNodeName == "A" || (fNodeName == "SPAN" && felem.className == "pageIndex"))) { continue; } try { /* BUG-329193:(SE-37692/SE-32907) focus is happening twice on mandatory column in IE for read-write grids */ felem.focus(); } catch (e) { return false; } return true; } } }; pega.ui.grid.prototype.hasFocusableContent = function (element) { if (!element) { return false; } var contentElements = element.getElementsByTagName('*'); for (var i = 0; i < contentElements.length; i++) { if (pega.u.d.isFocusableNode(contentElements[i])) { return true; } } return false; }; }, true); /*(INC-146715) Local Change END*/ /* (INC-162188) removes live region attribute aria-live=assertive so JAWS does not read out the region content when form element (i.e. text input) changes */ jQuery('[aria-live=assertive][data-mdc-recordid]').on('click focusin',(ev) => { jQuery(ev.currentTarget).removeAttr('aria-live') }); </script><script> function setBusyIndicatorCustom(){ pega.u.d.busyIndInterval = 0; pega.u.d.setBusyIndicator(); } function resetBusyIndicatorCustom(){ pega.u.d.busyIndInterval = 0; if(pega.u.d.gBusyInd){ pega.u.d.gBusyInd.hide(); } } </script><script type="text/javascript" src="./index3_files/pega_cpminteractionportal_scripts_1923811133!!.js.download"></script><script type="text/javascript" src="./index3_files/pzpega_ui_guide_1356030110.js!copytext_12910352307.js!settabpaneltabindex_11328472851.js!prependtabmenu_12913363050.js!setlayouttablerole_114854891.js!setcpmportalharnessfocusorder_140.download"></script><script type="text/javascript" src="./index3_files/tooltips_11419712575.js!setresourcesmenulinktitle_14021224695.js!tabmenu508fixes_11492121076.js!altlinksremoval508fixes_12261486295.js!skiplinkstotargetcustomscripts_11187870402.js!!.j.download"></script><script>
function serialize(jsObject)
{
var objStr = JSON.stringify(jsObject);
return objStr;
}
/**
* Deserializes JSON Stringified Object to JS OBJECT (See jsonscript.js)
* @param objectString - String to deserialize
*/
function deserialize(objectString)
{
var jsObject = JSON.parse(objectString);
return jsObject;
}
</script><script> var pega_cpm_arLocalization = new Array(); pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Can not create any more tabs."] = "Can not create any more tabs"; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Tab already exists, can not create another of same ID."] = "Tab already exists, can not create another of same ID."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have 1 new message."] = "You have 1 new message."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t2"] = "You have 2 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t3"] = "You have 3 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t4"] = "You have 4 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t5"] = "You have 5 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t6"] = "You have 6 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t7"] = "You have 7 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t8"] = "You have 8 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t9"] = "You have 8 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:You have {1} new messages.\t10"] = "You have 10 new messages."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:{1} has connected."] = " has joined the chat"; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:{1} has disconnected."] = " has disconnected"; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Request from server failed."] = "Request from server failed."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Unable to complete conference call."] = "Unable to complete conference call."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:No open lines to send tones to."] = "No open lines to send tones to."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:No lines available to make a call."] = "No lines available to make a call."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Please login to call system before placing calls."] = "Please login to call system before placing calls."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Please enter a valid number."] = "Please enter a valid number."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Please enter valid characters in dial pad."] = "Please enter valid characters in dial pad."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Have maximum number of tabs"] = "You have exceeded the maximum number of tabs allowed."; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Are you sure you want to remove this tab?"] = "Are you sure you want to remove this tab?"; pega_cpm_arLocalization["CPM-Portal:pyMessageLabel:Warning! If you continue wrap-up"] = "Warning! If you continue wrap-up, all in-flight processes will be moved to your worklist."; </script><script type="text/javascript"> var busyIndTimeout; /* source must be either header or driver */ function showCPMBusyIndicator(source){ /*Removing busy indicator as part of AJAX Container Implementation*/ return; var maskDiv = document.getElementsByClassName("screen-layout"); if (!pega.cpm.portalBusyInd) { pega.cpm.portalBusyInd = new pega.u.busyIndicator(undefined,undefined,maskDiv[0],0); } if (source == "" || source == null || source == undefined) pega.cpm.portalBusyInd.src = ""; else pega.cpm.portalBusyInd.src = source; if(pega.cpm.portalBusyInd){ pega.cpm.portalBusyInd.show(); } busyIndTimeout= setTimeout(hideAllBusyIndicators, 5000); } function hideCPMBusyIndicator(source){ if(pega.cpm.portalBusyInd && (pega.cpm.portalBusyInd.src == source || pega.cpm.portalBusyInd.src == "")){ pega.cpm.portalBusyInd.hide(); delete pega.cpm.portalBusyInd.src; if(busyIndTimeout){ clearTimeout(busyIndTimeout); } } } function hideAllBusyIndicators() { hideCPMBusyIndicator("header"); hideCPMBusyIndicator("driver"); } /* On click of the (X) in the interaction tab, hide the tab immediately and display the busy indicator until the Recents section is refreshed */ function hideCPMPortalRecent(event){ showCPMBusyIndicator("header"); var tabDiv = $(event.target).closest('[node_name="CPMPortalRecent"]'); if(tabDiv.length > 0){ tabDiv[0].style.display="none"; } } </script><script> $(function(){ var filename = "Notificationsound"; var fileextension = "ogg"; var directoryname = "/webwb"; var count = 2; var allowAudioNotifications = false; var audiofilepath = directoryname.replace(/\//g,"") + "/"+filename+"."+fileextension; pega.cs.notificationmanager.setAudioConfig(audiofilepath,count,allowAudioNotifications); }); </script><script type="text/javascript"> function setAriaModal(){ $("img[alt='SSA logo']").removeAttr("role"); $("img[alt='SSA logo']").removeAttr("tabindex"); } window.onload=setAriaModal(); </script><script>
var strBaseURL = "https://bpmsteddev.aci.is.cl.ssa.gov/prweb" + "/" + "PRAuth/app/TEDDevR8/LPuB4vZ9OMeB9DNoFEtNn5xJWNSK0dN6*/!OpenPortal_CPMInteractionPortal";
/***********************************************
* ScreenPop Event handler
***********************************************/
function FBMEventsCallback(objEvent, chan) {
var objEvent = objEvent.detail.response;
switch (objEvent.pyEventName.toUpperCase())
{
case "FBAUTHSUCCESS":
showAuthorized(objEvent);
FBappendConv(objEvent);
break;
case "FBPOP":
FBshowPopUp(objEvent);
break;
case "FBAPPEND":
FBappendConv(objEvent);
break;
default:
console.log("Unknown pyEventName handling FBM request - " + JSON.stringify(objEvent));
break;
}
}