Skip to content

Instantly share code, notes, and snippets.

View anaxetogrind's full-sized avatar
🏠
Working from home

T Vars anaxetogrind

🏠
Working from home
  • AnAxeToGrindStudios LLC / CS3 Technology
  • Wichita KS
View GitHub Profile
"id": "9dbe3007-47f9-eb11-8191-0aec64c5c188",
"NoteID": {
"value": "9dbe3007-47f9-eb11-8191-0aec64c5c188"
},
"RelatedEntityDescription": {
"value": "WO, WO-300018"
},
"RelatedEntityNoteID": {
"value": "c82407bf-1df9-eb11-8191-0aec64c5c188"
},
https://madeupcompany.acumatica.com/entity/Default/20.200.01/AccountSummaryInquiry?$expand=Results
{
"id": "0aa3a2b1-4ccc-4b07-9d81-9c39c9c12a72",
"rowNumber": 1,
"note": null,
"AccountClass": {},
"Branch": {
"value": "BRANCH"
{
"id": "0aa3a2b1-4ccc-4b07-9d81-9c39c9c12a72",
"rowNumber": 1,
"note": null,
"AccountClass": {},
"Branch": {
"value": "BRANCH"
},
"Ledger": {
"value": "ACTUAL"
{
"Branch" : {value : "BRANCH" },
"Ledger" : {value : "ACTUAL" },
"Period" : {value : "03-2022" }
}
update screen FS400100
{
type = FilterListScreen
update container "Selection"
{
add field "Status"{listDisplayFormat= CaptionValue}
}
}
update sitemap {
update folder "AppointmentsList" {
@anaxetogrind
anaxetogrind / gist:dc53fe2e62bfde79b9a36e0d26192818
Last active November 23, 2021 19:29
AppointmentInqFilterExt Example
public class AppointmentInqFilterExt : PXCacheExtension<PX.Objects.FS.AppointmentInq.AppointmentInqFilter>
{
#region UsrStatus
[PXString(1,IsFixed=true,IsUnicode = true)]
[PXDefault(usrStatus.Values.NotStarted)]
[usrStatus.Values.List]
[PXUIField(DisplayName="Status")]
public virtual string UsrStatus { get; set; }
public abstract class usrStatus : PX.Data.BQL.BqlString.Field<usrStatus> {
public abstract class Values : ListField.AppointmentStatus { } }