Skip to main content
Question

How to Add Additional Tab to Service Order Screen

  • January 27, 2026
  • 3 replies
  • 73 views

Hi, I would like to add an additional tab to service order screen (FS300100) called Equipment. This would be a copy of all the fields in the Details tab where we can add records only of equipment assigned to this customer. How can I achieve this, do I need to create a separate DAC or can I use the Details tab and add filtering?

Thank you!

3 replies

Forum|alt.badge.img
  • Freshman II
  • January 27, 2026

Create a separate DAC + separate tab
Why NOT reuse the Details tab?

The Details tab in FS300100 is backed by core Service Order line logic (FSSODet) and is tightly coupled with:

Service lines

Inventory / Non-stock items

Pricing, billing, allocations

Posting logic

 

Correct Design Pattern

✔ Create:

New DAC (Equipment lines)

New Data View

New Tab on FS300100

Filter equipment by customer

This keeps:

Core logic intact

Your customization upgrade-safe

UI clean and intentional


shushanna34
Freshman II
Forum|alt.badge.img
  • Freshman II
  • January 27, 2026

Hi,

✔ Create a new View in a graph extension that returns FSSODet rows
✔ Filter it so it only returns equipment records
✔ Add a new Tab + Grid bound to that View
✔ Restrict InventoryID selector so users can only pick equipment items

Is the tab going to be Read-only or editable?

Regards,
Shushanna


Jhon Reeve Penuela
Freshman I

Hi ​@tharidhiPerera . you need to create view and add filtering. much better. Thanks