Skip to main content

Notifications

Finance | Project Operations, Human Resources, ...
Suggested answer

how to add calculated field in view using view method

(0) ShareShare
ReportReport
Posted on by 167
Hi,  I have a view ProjPostedHourCostTransactions, inside the view I have a datasource view ProjPostTransView, both the views are having field as ResourceCategory.
Inside ProjPostedHourCostTransactions I am returning RoleId by using the below code, but I am unable to get the RoleId value.
Please Suggest.
 
public static server  str RoleId()
{
str resourceCategory = SysComputedColumn::returnField(tableStr(ProjPostedHourCostTransactions), identifierStr(ProjPostTransView), fieldStr(ProjPostTransView, ResourceCategory));
ResourceCategoryRecId resourceCategoryId = str2Int64(resourceCategory);
return PSASchedRole::find(resourceCategoryId).RoleId;
}
 
Thanks!!
 
  • Suggested answer
    Martin Dráb Profile Picture
    Martin Dráb 230,370 Most Valuable Professional on at
    how to add calculated field in view using view method
    The purpose of a computed column method is generating a piece of T-SQL code that is injected to a view defining in database. Your code is returning the value of RoleId field, which definitely doesn't contain SQL code you want.
     
    First of all, consider if you can simply use a joined data source. It would be much simpler than writing a computed column.
     
    If a computed column is necessary, first write SQL code you want to generate (e.g. SELECT RoleId from PSASchedRole WHERE ...). When you know what SQL you want to generate, write X++ for it (without hard-coded table names etc.).
     
    When you've done it and you aren't getting correct data, look at the view definition in database and compare the actual SQL code with the one you wanted to generate.

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

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans