Out-of-box Acumatica Sales Order (SO301000)
does not have attribute support. How to extend attribute support to Sales Order entity in Acumatica?
相关问题
- How to add a memo / formatted text field ala Cases
- Create Case with Activity through Rest API
- Acumatica dynamic dropdown
- How to create an ad-hoc email and send it using Ac
- How to include a dialog for file upload
相关文章
- Cannot load a reference assembly for execution
- Adding additional filter field on process shipment
- Create custom User Control for Acumatica
- Sales Price Updating Every Other Time
- Import Amount Paid in screen Bill And Adjusment us
- Acumatica Configuration Wizard error: Can't ge
- How to properly sort Tasks having multi-level Task
- Prevent update of note/files on disabled views
At the very core, your entity main DAC must have GUID column (
NoteID
) to referenceCSAnswers
table and must have field that identify the class of the Entity.We will make use of
Order Type
to define list of attributes to gather particular order type-specific information.Create a Graph Extension for
SOOrderTypeMaint
Graph and declare data view to define list of attributes for a particular order type. We will be using out-of-boxCSAttributeGroupList<TEntityClass, TEntity>
Create a Graph Extension for
SOOrderEntry
Graph and declare data view for attributes specific to current order type.Create DAC Extension for
SOOrder
DAC and declare user defined field decorated withCRAttributesField
attribute and specify theClassID
field – in our case it isOrderType
.Modify Order Types page (
SO201000
) as below using Customization EngineModify Sales Orders page (
SO301000
) as below using Customization EngineDownload deployment package