Setting up sort order of UDC

baha

Active Member
I have created a custom UDC with the following values

Codes Description1
-FD -1.0(Full Day ADj)
-HD -0.5 (HALF DAY ADJ)
FD 1.0 (FULL DAY)
HD 0.5 (HALF DAY)

I am using this UDC in one of custom application , the FC field in the application is using this UDC value with the drop down, the probleb is the the fields are sorted based on the Codes so they are being displayed as below
-FD
-HD
FD
HD

Our users would like to have a sort order as
FD
HD
-FD
-HD

is there a way to customize the sort order of UDC globally , any help will be appreaciated

Thanks,
 
You could use the special handling code with values so you can then sequence the grid by SPHD that way?

But this will then work for every other UDC. So maybe clone P0004A and use your Visual Assist clicked to call your new clone UDC screen for this FC field DD item you want rather than the normal UDC screen

That should work
 
Change your UDC codes
-FD to FD-
-HD to HD-

sometimes (most times) simplest solutions are the best
 
That would put the FD and FD- together and the HD and HD- together.

Would need to have a leading space on the FD and HD entries, putting them ahead of the "-" entries.
 
Back
Top