I am adding a group to a page and I want the group label to have the currently signed in User’s ID, how can I accomplish this? (ideally through Developer Studio)
Solved
How can I dynamically get the user id to show in a group label?
Best answer by asanka1055
Hi
You can change .client and .projection files like below.
E.g:-
.client
@Override
group PricingGroup for SalesPart {
field CUser {
label = "User";
}
}
.projection
@Override
entity SalesPart {
attribute CUser Text {
fetch = "Fnd_Session_API.Get_Fnd_User";
editable = [false];
}}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.