• rohan patel 30
  • NEWBIE
  • 40 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 12
    Questions
  • 6
    Replies
I have a use case where I need to Update Quote Record, Stage = Complete, Status = Accepted when Opportunity Stage is "Closed Won" . and Update Quote Record, Stage = Complete, Status = Rejected when Opportunity Stage is "Closed Lost".

Please help mein this.
Thanks in Advnace !!
Hi !
I have a use case where I have to assign a task to a Queue using record triggered flow. Also show me how to notify user about task assignment and how a user can claim the queued task.

Please help me in this.

Thanks in advance !
Hi ,
I have a use case where I have to update Quote Record Stage to "Working" from "Draft"  when Task status is changed to "In Progress" from "New".

Please show me the Record triggered flow to complete this use case.
Thanks in Advance !

Hi,
The Tasks assigned to a Queue are not appearing under "My Tasks" section in user's Home page although the user is a member of the Queue. Thanks for any inputs!
I am using record-triggered flow to update task owner.
Below are the screenshots. please help !

User-added imageUser-added imageUser-added image

Hi !
I ahev a use case where I have to assign Task after opportunity creation to more than 1 user . I am using record triggered flow. Please suggest some ways to achieve this .

Thanks in advance,
Hi !
I have a use case where I have to display some custom fields of opportunity object on page layout of Task object. Please suggest some ways to achive this .

Thanks in advance .
User-added imagehtml code:

<template>
    <lightning-card title="imprative Demo">
    <div style="height: 300px;">
        <lightning-datatable
                key-field="id"
                data={data}
                columns={columns}>
        </lightning-datatable>
    </div>
</lightning-card>
</template>

js code :

import { LightningElement ,track} from 'lwc';
import getcontacts from '@salesforce/apex/mperativeDemo.getcontacts';
const columns=[
    
    {label: 'record id', fieldname: 'Id'},
    {label:"contact Name" ,fieldname:'Name'},
];

export default class ImperativeDemo extends LightningElement {

@track columns=columns;
@track data=[];
connectedCallback(){
    getcontacts()
    .then(result=>{   //then is a promise in js
        this.data=result;
    })
    .catch(error=>{
        console.log("error occured");
    })
}

}

apex class:

public class mperativeDemo {
    @AuraEnabled
    public static list<contact> getcontacts(){
        list<contact> getlist=[select id,name from contact];
     
        return getlist;
    }

}

 
Hello,
I have a simple use case.
I need to update a text field "Contact id" after increment it by 1 whenever a new contact is created.
below is ss for reference. I want to update contact id as 172 for new contact creation.
Please help me how can I update a text field by 1 .

field label : contact id
api name :Contact_ids__c


User-added image 
Hello,
I have requirement of displaying increasing number with each newly created records in contact object in a text filed.

for eg. If i want to create a new contact , one text filed named seriel number should begin from 100(or any particular number) and should continue for further records aslo like 101,102,103, etc.

ps.I can't use auto number. I have to stamp values in text field only.

is there any solution using after trigger or flows.

thanks in advance,
Hi,
I want to hide junction object from related list based on criteria.
Requirement : If contact title is empty then I dont want to show 'case witness' object in related list.

How can i Obtain this functionality. Please help
thanks in advance.



User-added image
hello,
I have 3 currency fields.
I want to display sum of 2 currency values into 3rd one.
eg. Curr A+ CurrB=CurrC.
I don't see any way to change field type of C to formula field.
Can anyon help !!
Thanks in Advance,
i need a batch apex code or something to update contact onwer as same as account owner. there is more than 50,000 records.
I have a use case where I need to Update Quote Record, Stage = Complete, Status = Accepted when Opportunity Stage is "Closed Won" . and Update Quote Record, Stage = Complete, Status = Rejected when Opportunity Stage is "Closed Lost".

Please help mein this.
Thanks in Advnace !!
Hi !
I have a use case where I have to assign a task to a Queue using record triggered flow. Also show me how to notify user about task assignment and how a user can claim the queued task.

Please help me in this.

Thanks in advance !
Hello,
I have a simple use case.
I need to update a text field "Contact id" after increment it by 1 whenever a new contact is created.
below is ss for reference. I want to update contact id as 172 for new contact creation.
Please help me how can I update a text field by 1 .

field label : contact id
api name :Contact_ids__c


User-added image 
i need a batch apex code or something to update contact onwer as same as account owner. there is more than 50,000 records.