• Kogila Kenney
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi Team,
I am new to Salesforce, trying to understand security.
I have a field call Permissiontest2 which is Read Only at profile level(Warehouse User)
User-added image
Now try to extend the field access using permission set to one of the user, but I am unable find the field in the permission set.

User-added image

Please can anyone advice where I am going wrong.

Thanks
K.Kogila
Hi
I am new to Salesforce, trying to understand classes and methods.When I complied the below code it give the below error.

public class Myhelloworld
{
    public static void applyDiscount(Book__c[] books)
    {
        for(list<Book__c[]> b:Books)
    {
    b.Price__c *=0.9;
    }
  
Error: Compile Error: Initial term of field expression must be a concrete SObject: List<List<Book__c>> at line 7 column 5

Thanks
K.Kogila
Hi Team,
I am new to Salesforce, trying to understand security.
I have a field call Permissiontest2 which is Read Only at profile level(Warehouse User)
User-added image
Now try to extend the field access using permission set to one of the user, but I am unable find the field in the permission set.

User-added image

Please can anyone advice where I am going wrong.

Thanks
K.Kogila
Hi
I am new to Salesforce, trying to understand classes and methods.When I complied the below code it give the below error.

public class Myhelloworld
{
    public static void applyDiscount(Book__c[] books)
    {
        for(list<Book__c[]> b:Books)
    {
    b.Price__c *=0.9;
    }
  
Error: Compile Error: Initial term of field expression must be a concrete SObject: List<List<Book__c>> at line 7 column 5

Thanks
K.Kogila