Skip to main content
Answer

How are attributes linked to Service Order Types?

  • October 31, 2023
  • 2 replies
  • 107 views

Hello,

I am creating a customization that will help us automatically populate rows for a new service order. The row information will be based on the attributes that are in the service order type. I cannot find the primary key or foreign key that links the service order type to an attribute.

Where would I look for this linked value?

 

Thank you,

Marco 😎

 

 

Best answer by Mike Gifford

The Attributes on the Attribute tab on the Service Order Type screen are stored in the CSAttributeGroup table where the EntityClassID = <your order type> and the EntityType = “PX.Objects.FS.FSServiceOrder”

 

You can then lookup other details about the Attributes themselves in the CSAttribute/CSAttributeDetail tables.

2 replies

Mike Gifford
Jr Varsity III
Forum|alt.badge.img
  • Jr Varsity III
  • Answer
  • October 31, 2023

The Attributes on the Attribute tab on the Service Order Type screen are stored in the CSAttributeGroup table where the EntityClassID = <your order type> and the EntityType = “PX.Objects.FS.FSServiceOrder”

 

You can then lookup other details about the Attributes themselves in the CSAttribute/CSAttributeDetail tables.


  • Author
  • Freshman II
  • October 31, 2023

Thank you @Mike Gifford !