How to interact with Service suscriptions by company with a Maintian item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
Hi colleagues,
I am trying to set a maintain item that users are able to select the service offerings that their company is subscribed.
I have tried by selecting the service_offering list, but is not showing all the services.
I have done this:
- Type: reference
- Table: service_offering
- Advanced reference qualifier:
javascript:
var behalf = current.variables.behalf;
var company_logged = current.variables.company_logged;
var company_customer = current.variables.company_customer;
var company_behalf = current.variables.company_behalf;
if (behalf == 'No') {
if (company_logged == 'f66b14e1c611227b0166c3a0df4046ff') {
'operational_status=1^company=' + company_logged;
} else {
'operational_status=1^company=' + company_customer;
}} else {
'operational_status=1^company=' + company_behalf;
}
This is working perfect, but when I select the table service_suscribe_company, the search doesn't work.
Am I doing the correct search? do I need to look for different thing than company?