Skip to main content

Hi Team,

I added two customized fields to Branch table and created new tab in the company form (CS101500).

But those two fields are read only. Can someone please help me out to enable this field.

My Screen 

public sealed class BranchExt : PXCacheExtension<PX.Objects.GL.Branch>
    {
        public static bool IsActive()
        {
            return true;
        }

        #region UsrComUTRNo
        UPXDBString(20)]
        PPXUIField(DisplayName = "Company UTR No")]

        public  string UsrComUTRNo { get; set; }
        public abstract class usrComUTRNo : PX.Data.BQL.BqlString.Field<usrComUTRNo> { }
        #endregion

        #region UsrComAORefNo
                OPXUIField(DisplayName = "Company AO Ref No")]

        public  string UsrComAORefNo { get; set; }
        public abstract class usrComAORefNo : PX.Data.BQL.BqlString.Field<usrComAORefNo> { }
        #endregion
    }

 

Thanks

Bhagya

@bhagyat25  Have you checked in the .aspx page?


@bhagyat25  Have you checked in the .aspx page?

@Naveen Boga, Yes, Nothing found. 

For your reference I’ve attach the full .aspx code file too.

 


@bhagyat25  I don’t see any issues with the .aspx and DAC fields. Do we have any logic in the extended graph level?


Hi @bhagyat25 were you able to find a solution? Thank you!


Hi @bhagyat25 were you able to find a solution? Thank you!

Hi @Chris Hackett ,

No but achieved it different way. 

Thanks 


Reply