Skip to main content

Hello everyone,

I added the Shipments screen to the mobile app. There are only a few fields that we need in the mobile app. All of the fields show up in the app except Tracking URL. Here is the code:

 

add screen SO302000 {
add container "ShipmentSummary" {
add field "ShipmentNbr"
add field "Status"
add field "Customer"
add field "Location"
add field "ShipmentDate"
add field "Description"
add field "Packages#BoxID" {
special = AllowEdit
}
add field "Packages#TrackingNumber"
add field "Packages#Carrier"
add field "Packages#TrackingUrl"
add recordAction "Save" {
behavior = Save
}
add recordAction "Cancel" {
behavior = Cancel
}
add recordAction "ConfirmShipmentAction"
attachments {
}
}
}

Again, all fields show up except Tracking URL. I also tried changing the name to TrackURL and that didn’t work either. Any ideas?

Hi @wjaved62 ,

I have added Shipment screen & able to see Tracking URL in mobile app,

Can you please add forceIsVisible=True property for Tracking URL,

Eg-


    add field "Packages#TrackingUrl"
    {
    forceIsVisible= True
    }

Please refer below screenshot for reference,


 


Reply