Khandagale-Saurabh / Salesforce

1 stars 0 forks source link

Salesforce #1

Open Khandagale-Saurabh opened 2 years ago

Khandagale-Saurabh commented 2 years ago

image now just go to users-> click on user profile[Admin/myrole....etc] after than go to app then from their you will able to [change the sales tab data] [I have enable sample console].

2]Document search karna fer =>accesable to all user here we can store images

image dependent value create krni hai to field dependence create krna hai aur ye values picklist is hona

image we have created master details relationship invoice_new and account , so account is filed is displayed on screen

image in invoice we have added invoice

image workflow mai jana fer dekhna ki filed upde , Email, or message pe alert send krna hai image

isme jo [Select an Existing wala hai vo Select krne k baad fer Existing wala show krranga]

image to create use define email temalpte search email template and create

image

workflow create kre k badd agar dekhna hai toh Time-Based Workflow

==================================================== New Validation Rules +++++++++++++++++++++ validating if mailing country is not blank and level is not selected the throw error image

========================================== SoSql

1] ; mat use krna 2] file->open resources 3] to display data from custom object use name as it it [Classroom__c]

Select Name,Rating from Account where Rating Like '%o%' Order By Rating Desc Limit 3 Limit will restrict te output

Offset 5: it will skip first 5 record of output

============================================================================

DML wit standard object salesforce Insert:

1]Account acc=new Account(Name='SFDC2'); acc.Phone='899939'; insert ACC;

2]Account acc4=new Account(Name='SFDC4'); Account acc1=new Account(Name='SFDC1'); Account acc2=new Account(Name='SFDC2'); Account acc3=new Account(Name='SFDC3'); List ac=new List(); ac.add(acc1); ac.add(acc2); ac.add(acc3); ac.add(acc4); insert ac;

Database.insert(account,allOrNone)//obj,boolean