Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

i want to CSA (servicenow) cerificate with my full name

munukuntlak
Tera Contributor

i want to CSA (servicenow) cerificate with my full name

1 ACCEPTED SOLUTION

Dr Atul G- LNG
Tera Patron
Tera Patron

Is issue still open @munukuntlak 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

View solution in original post

14 REPLIES 14

AbinC
Tera Guru

Hi @munukuntlak ,

Hi @PerlaA , 

The column legal first name and legal last name in your webassessor account need to be update , if it's editable to you ( it's ready only for me ) else open support case for help, after name update, you are try to re-print the certification from associated learning portal.


Please mark this response as correct and helpful if it helps you can mark more that one reply as accepted solution

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @munukuntlak 

Your name appears on the certificate based on the details you provided in Webassessor. If you entered your full name there, it will appear in full on the certificate. Would you like to change it?

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

munukuntlak
Tera Contributor
(function(api) {
    var filter = [{
        "type": "$and",
        "conditions": [
            {"type": "$eq", "field": "IsPublished", "value": "true"},
            {
                "type": "$or",
                "conditions": [
                    {"type": "$null", "field": "LibraryPath"},
                    {"type": "$not", "field": "LibraryPath", "value": "/SMART/"}
                ]
            }
        ]
    }];
    
    var inputs = {
        source: "llsurfpsmlibrarycontents",
        filters: JSON.stringify(filter),
        offset: 0,
        limit: 1
    };
    
    var result = sn_fd.FlowAPI.getRunner()
        .action('x_snc_psm_bisops.get_sac_metrics_data')
        .inForeground()
        .withInputs(inputs)
        .run();
    
    var outputs = result.getOutputs();
    var response = JSON.parse(outputs.response);
    
    api.setResponseBody({
        count: response.totalNumberOfRecords || 0
    });
})(api);

munukuntlak
Tera Contributor

.

munukuntlak
Tera Contributor
var formatted = startTime.substring(0,4) + '-' +
                        startTime.substring(4,6) + '-' +
                        startTime.substring(6,8) + ' ' +
                        startTime.substring(9,11) + ':' +
                        startTime.substring(11,13) + ':' +
                        startTime.substring(13,15);
        var gdt = new GlideDateTime();
        gdt.setValue(formatted);
        var utcValue = gdt.getValue();
        var hhmm = utcValue.split(' ')[1].substring(0,5);
        entry.start_time = hhmm;