How to take backup of custom created app from App engineen studio

RudhraKAM
Tera Guru

Hello 

I am new to App engines studio , Created a new app using app engine studio , by creating updateset but as I created a Application , it created new application with that name and all the updates are in default updateset , But without Updateset is there a way we can backup that App ( i tried to publish it but Still it is not published in to repository .

 

What are the options I have .

6 REPLIES 6

hvrdhn88
Giga Patron

@RudhraKAM  try to save on github. 

 

Adding one blog here. 

 

SAVE YOUR APPS TO GITHUB VIA AES 

 

Thanks,

Harsh

After saving that Can we move from one instance to other ?

pratyusha11
Tera Contributor
if (elidProperty) {
    // Process comma-separated values exactly like the recipient script
    var ids = elidProperty.split(',').map(function(id) {
        return id.trim();
    }).join(',');

    var userGR = new GlideRecord('sys_user');
    var qc = userGR.addQuery('u_elid', 'IN', ids);
    qc.addOrCondition('user_name', 'IN', ids);
    
    userGR.query();
    if (userGR.next()) {
        username = userGR.name.toString();
    }
}

pratyusha11
Tera Contributor
if (elid) {
    var userGR = new GlideRecord('sys_user');
    // Using explicit string forcing for the query just in case of trailing spaces
    var cleanElid = String(elid).trim(); 
    
    var qc = userGR.addQuery('u_elid', cleanElid);
    qc.addOrCondition('user_name', cleanElid);
    userGR.addQuery('active', true);
    userGR.query();
    
    if (userGR.next()) {
        // getValue() is the safest way to extract pure text from a GlideRecord field
        username = userGR.getValue('name'); 
    }
}