Hi,
I'm working on the querying values from the table. My task is to query all the values from the NoYes "ENUM" type field. I'm able to query the field which contains only "Yes" and which contains "No".
My requirement is to take all the data in the field, either is it Yes or No.
Yet now I'm trying this code:
qbrProjStatus = this.query().dataSourceName("AR_VC_SOPMaster").addRange(fieldnum(AR_VC_SOPMaster, Active));
qbrProjStatus.value(Global::queryValue(NoYes::Yes));
OR
qbrProjStatus = this.query().dataSourceName("AR_VC_SOPMaster").addRange(fieldnum(AR_VC_SOPMaster, Active));
qbrProjStatus.value(Global::queryValue(NoYes::Yes));
My requirement is to retrieve all the information from the field either is it Yes or No. I'm doing this task on the FORM level, these details will display on the GRID. I'm using Ax 2009.
Please suggest me some code too.
*This post is locked for comments
I have the same question (0)