Skip to main content

Hello!  I have created the following modification and published the Customization, but I am not seeing the new field on the Mobile App:

In the Mobile App, the Cost Code Description displays in the Details, but the Cost Code does not.  Client requests adding the Cost Code ID.

 

Work done:

Customization code:

update screen AP301000 {
 
  update container "Details"
    
    {add field "CostCodeID"}}

 

Should be displayed here:

 

Hi @Debbie Reed CLA 
Which version are you in? in 2022R2 the field is called CostCode (not CostCodeID)


update screen AP301000 {

  update container "Details" {

    add field "CostCode"

  }

}

 

 


Hi @Anacarina Calvo ,

Thank you for your reply.  Yes, that is already there, but it displays the Description of the cost code in the Mobile App, not the Cost Code itself.  Client wants to also see the code.

 

 


To show the ID you need to use selectorDisplayFormat = Key 

update screen AP301000 {

  update container "Details" {

    add field "CostCode" {

        selectorDisplayFormat = Key

      }

  }

}

 

You could also use SelectorDisplayFormat =  KeyDescription to show Key and Description


Thank you @Anacarina Calvo 

 


Reply