web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

How to get table record recId

(0) ShareShare
ReportReport
Posted on by

I am working on functionality, where I do not know the table , but I have the tableId and fieldId (field value too) , but how can I get recordId for that tables record?

I looked online for some code, and found this 

http://www.doens.be/2009/07/select-a-record-from-a-table-when-you-only-have-the-tableid/ 

public Common findRecord(TableId _tableId, RecId _recId, Boolean _forUpdate = false)
{
    Common common;
    DictTable dictTable;
    ;
    dictTable = new DictTable(_tableId);
    common = dictTable.makeRecord();
    
    common.selectForUpdate(_forUpdate);
    
    select common
    where common.RecId == _recId;
    
    return common;
}

but it only works, when I already know the recId for the tables record. I hope you can help me with my problem. I can answer to some questions if more explanation is needed.

*This post is locked for comments

I have the same question (0)
  • Suggested answer
    Martin Dráb Profile Picture
    237,959 Most Valuable Professional on at

    Is the field unique? If not, which record do you want to take? All? A random one?

    Regarding how to access the field, you can either do it in your select statement:

    where common.(fieldId) == fieldValue

    or you can use a query:

    q.addDatasource(tableId).addRange(fieldId).value(queryValue(fieldValue))

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans