Get a first look at what's coming. The Developer Passport Australia Release Preview kicks off March 12. Dive in! 

what is base table in cmdb

akin9
Tera Contributor

what is base table in cmdb

2 ACCEPTED SOLUTIONS

_raj_esh
Kilo Sage

Hi Sudhakar,

 

 

  • The Base Configuration Item [cmdb] table, which is the core CMDB table for non IT CIs (descending classes are non IT CIs).
  • The core Configuration Item [cmdb_ci] table, which stores the basic attributes of all the CIs. ...
  • The CI Relationship [cmdb_rel_ci] table, which defines all relationships between CIs.

 

Hope it helps.

 

Thanks,

Raj

--Raj | ServiceNow Certified Technical Architect

View solution in original post

5 REPLIES 5

akin9
Tera Contributor

Hello exports

I have created a UI action in problem table for download PDF . but 

 

My current UI Action.

function exportPDF() {

var sysparm_table = g_form.getTableName();
var sysparm_sys_id = g_form.getUniqueValue().toString();
var instanceName = 'https://My instance Name/';
var url = instanceName + sysparm_table + '.do?PDF&sys_id=' + sysparm_sys_id;
g_navigation.openPopup(url);


}

 

i have below requirements I'm struggling here to achieve pls support.

 

  • file name when downloading shall be "RCA_Problem-<Problem-ID>.pdf"

  • Add Title in document "RCA - Root Cause Analysis"

  • Add fixed Agenda on first page (if possible).

 

Thank you