-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
41Questions
-
30Replies
- Prakki
- July 13, 2017
- Like
- 0
- Continue reading or reply
How to provide an access to Manager role users to change Account owner of account records owned by other team members and should not allow him take ownership?
We have roles
District manager - NY, Branch Manager 1 - NY,Branch Manager 2 - NY, Branch Manager 3 - NY
District manager - CA, Branch Manager 1 - CA,Branch Manager 2 - CA, Branch Manager 3 - CA
District manager - PA, Branch Manager 1 - PA,Branch Manager 2 - PA, Branch Manager 3 - PA
The requirement is the users with District Manager Roles ( District manager - NY,District manager - CA, District manager - PA ) should able to change Account owner irrespective of the branch.
1. He should not take ownership of the Accounts owned by other team.
2. He should be able to take ownership if the Account from his own team.
Ex: If a user with a role District manager - NY should be able to change owner of any district records ( NY, CA, PA) But he can take ownership only from his district(NY).
I thought of writing a validation rule but i'm unable to get District Mangers team information.
Kindly suggest how can i solve this ?
Thank you.
Prakki
- Prakki
- March 11, 2015
- Like
- 0
- Continue reading or reply
How to provide an access to Manager role users to change owner of other teams and not to allow him take ownership?
We have roles
District manager - NY, Branch Manager 1 - NY,Branch Manager 2 - NY, Branch Manager 3 - NY
District manager - CA, Branch Manager 1 - CA,Branch Manager 2 - CA, Branch Manager 3 - CA
District manager - PA, Branch Manager 1 - PA,Branch Manager 2 - PA, Branch Manager 3 - PA
The requirement is the users with District Manager Roles ( District manager - NY,District manager - CA, District manager - PA ) should able to change Account owner irrespective of the branch.
1. He should not take ownership of the Accounts owned by other team.
2. He should be able to take ownership if the Account from his own team.
Ex: If a user with a role District manager - NY should be able to change owner of any district records ( NY, CA, PA) But he can take ownership only from his district(NY).
I thought of writing a validation rule but i'm unable to get District Mangers team information.
Kindly suggest how can i solve this ?
Thank you.
Prakki
- Prakki
- March 11, 2015
- Like
- 0
- Continue reading or reply
apex:outputtext error, change the field value dynamically
There is a output text field in my VF page, the value of the text should be like this user1 Name (user1email@gmail.com), User2Name ( User2email@gmail.com).
the condition here is when there is no user2, filed value should be user1 Name (user1email@gmail.com)
I'm using the following condition
<apex:outputText value="{!if({!EndUserName} != null && {!EndUserEmail} != null),{!ContactName} ({!ContactEmail}) {!EndUserName} ({!EndUserEmail}), {!ContactName} ({!ContactEmail}) }"/>
here endUsername = user2name, EndUserEmail = user2email.
but i'm getting an error :
Any suggestions how to implement this ?
Thanks,
Prakki
- Prakki
- September 23, 2014
- Like
- 0
- Continue reading or reply
Unable to update records using batch Apex
public class INFSimpleBatchExp implements Database.Batchable<sobject> {
public Database.QueryLocator start(database.BatchableContext bc )
{
String query = 'select id, name from Account';
return Database.getQueryLocator(query);
}
public void execute (Database.BatchableContext bc, List<Account> scope )
{
for(Account acc : scope)
{
acc.name = acc.name + 'updated';
}
update scope;
}
public void finish(Database.BatchableContext bc)
{
}
}
----------------------------------------------------------------------------------------------------------------------
I am using following statemets in Developer console
INFSimpleBatchExp inF = new INFSimpleBatchExp();
Database.executeBatch(inF, 200);
Anyone kindly let me know where it went wrong?
wwwwwwThanks,
Prakki
- Prakki
- June 23, 2014
- Like
- 0
- Continue reading or reply
How to fetch Opportunity Product custom field value into a field in Opportunity object
Hi All,
I want to create a formula field whose value should be a copy of an opportunity product custom field. I was trying to find out opportunity product object name in the formula editor, but i am not finding.
Can any one help me to solve this, quick response will be highly appreciated.
Thanks & Regards,
Prakash
- Prakki
- October 28, 2013
- Like
- 0
- Continue reading or reply
How to fetch Opportunity Product custom field value into a field in Opportunity object
Hi All,
I want to create a formula field whose value should be a copy of an opportunity product custom field. I was trying to find out opportunity product object name in the formula editor, but i am not finding.
Can any one help me to solve this, quick response will be highly appreciated.
Thanks & Regards,
Prakash
- Prakki
- October 28, 2013
- Like
- 0
- Continue reading or reply
How to pass a dynamic table data to another visualforce page
Dear All,
I am requesting for a help to solve this problem.
In my visualforce page ( name : Reimbursement) i am having table which containg 4 columns in which user can enter a data. And along with this i am having a command link by name add row, if we click on the Add row link an another row will add to the row. Here there is no limit on number of rows for the table.
i having a command button by the name proceed below the table, if we click on the button the entered details should appear in the same format in the other vf page( reimbusementreciever).
Kindly help me to solve this please.
For reference please find the below code:
--VF Page: Reimbursement--- <apex:page standardcontroller="Reimbursement__c" extensions="Reimbursementformcontroller"> <apex:sectionHeader title="Reimbursement Form"/> <apex:form > <apex:pageBlock title="Employee Details"> <apex:pageBlockSection columns="1"> <apex:pageBlockSectionItem > <apex:outputLabel >Name Of The Employee:</apex:outputLabel> <apex:outputText > {!$User.FirstName}</apex:outputText> </apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockSection > <apex:pageBlockTable value="{!reimburselist}" var="rlist"> <apex:column headerValue="Type"> <apex:inputField value="{!rlist.Type__c}"/> </apex:column> <apex:column headerValue="Date"> <apex:inputField value="{!rlist.Date__c}"/> </apex:column> <apex:column headerValue="Amount"> <apex:inputField value="{!rlist.Amount__c}"/> </apex:column> <apex:column headerValue="Approve Amount"> <apex:inputField value="{!rlist.Approved_Amount__c}"/> </apex:column> </apex:pageBlockTable> </apex:pageBlockSection> <apex:commandLink value="Add" action="{!add}"/> <br/> <apex:commandButton value="Proceed" action="{!proceed}"/> </apex:pageBlock> </apex:form> </apex:page> -- Controller Code-- public with sharing class Reimbursementformcontroller { public list<Reimbursement__c> reimburselist{get;set;} public list<reimbursewrapper> reimbursewrapper {get;set;} public Reimbursementformcontroller(ApexPages.StandardController controller) { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public Reimbursementformcontroller() { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public void Add() { reimburselist.add(new Reimbursement__c()); } public list<Reimbursement__c> getdisplay(){ list<Reimbursement__c> display = new List<Reimbursement__c>(); for(reimbursewrapper reim : reimbursewrapper) { display.add(reim.rr); } return display; } public PageReference proceed() { PageReference np = new PageReference('/apex/Reimbursementformreciever'); np.setRedirect(false); return np; } public class reimbursewrapper{ public Reimbursement__c rr{get;set;} public reimbursewrapper(reimbursement__c rei) { this.rr = rei; } } } --VF Page: ReimbusementReciever-- <apex:page controller="Reimbursementformcontroller" > <apex:sectionHeader title="Working With Apex Data Tables (Confirmation)"/> <apex:form > <apex:outputText value="You have selected the following contacts for processing, are you sure?"/> <apex:pageblock > <apex:PageBlockTable value="{!reimburselist}" var="con" id="selectedContactsTable"> <apex:column value="{!con.Type__c}" headervalue="Full Name"/> <apex:column value="{!con.Date__c}" headervalue="Title"/> <apex:column value="{!con.Amount__c}" headervalue="Title"/> <apex:column value="{!con.Approved_Amount__c}" headervalue="Title"/> </apex:PageblockTable> </apex:pageblock> </apex:form> </apex:page>
Thank you.
Prakash
- Prakki
- August 23, 2013
- Like
- 0
- Continue reading or reply
How to pass a dynamic table data to another visualforce page
Dear All,
I am requesting for a help to solve this problem.
In my visualforce page ( name : Reimbursement) i am having table which containg 4 columns in which user can enter a data. And along with this i am having a command link by name add row, if we click on the Add row link an another row will add to the row. Here there is no limit on number of rows for the table.
i having a command button by the name proceed below the table, if we click on the button the entered details should appear in the same format in the other vf page( reimbusementreciever).
Kindly help me to solve this please.
For reference please find the below code:
--VF Page: Reimbursement--- <apex:page standardcontroller="Reimbursement__c" extensions="Reimbursementformcontroller"> <apex:sectionHeader title="Reimbursement Form"/> <apex:form > <apex:pageBlock title="Employee Details"> <apex:pageBlockSection columns="1"> <apex:pageBlockSectionItem > <apex:outputLabel >Name Of The Employee:</apex:outputLabel> <apex:outputText > {!$User.FirstName}</apex:outputText> </apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockSection > <apex:pageBlockTable value="{!reimburselist}" var="rlist"> <apex:column headerValue="Type"> <apex:inputField value="{!rlist.Type__c}"/> </apex:column> <apex:column headerValue="Date"> <apex:inputField value="{!rlist.Date__c}"/> </apex:column> <apex:column headerValue="Amount"> <apex:inputField value="{!rlist.Amount__c}"/> </apex:column> <apex:column headerValue="Approve Amount"> <apex:inputField value="{!rlist.Approved_Amount__c}"/> </apex:column> </apex:pageBlockTable> </apex:pageBlockSection> <apex:commandLink value="Add" action="{!add}"/> <br/> <apex:commandButton value="Proceed" action="{!proceed}"/> </apex:pageBlock> </apex:form> </apex:page> -- Controller Code-- public with sharing class Reimbursementformcontroller { public list<Reimbursement__c> reimburselist{get;set;} public list<reimbursewrapper> reimbursewrapper {get;set;} public Reimbursementformcontroller(ApexPages.StandardController controller) { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public Reimbursementformcontroller() { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public void Add() { reimburselist.add(new Reimbursement__c()); } public list<Reimbursement__c> getdisplay(){ list<Reimbursement__c> display = new List<Reimbursement__c>(); for(reimbursewrapper reim : reimbursewrapper) { display.add(reim.rr); } return display; } public PageReference proceed() { PageReference np = new PageReference('/apex/Reimbursementformreciever'); np.setRedirect(false); return np; } public class reimbursewrapper{ public Reimbursement__c rr{get;set;} public reimbursewrapper(reimbursement__c rei) { this.rr = rei; } } } --VF Page: ReimbusementReciever-- <apex:page controller="Reimbursementformcontroller" > <apex:sectionHeader title="Working With Apex Data Tables (Confirmation)"/> <apex:form > <apex:outputText value="You have selected the following contacts for processing, are you sure?"/> <apex:pageblock > <apex:PageBlockTable value="{!reimburselist}" var="con" id="selectedContactsTable"> <apex:column value="{!con.Type__c}" headervalue="Full Name"/> <apex:column value="{!con.Date__c}" headervalue="Title"/> <apex:column value="{!con.Amount__c}" headervalue="Title"/> <apex:column value="{!con.Approved_Amount__c}" headervalue="Title"/> </apex:PageblockTable> </apex:pageblock> </apex:form> </apex:page>
Thank you.
Prakash
- Prakki
- August 23, 2013
- Like
- 0
- Continue reading or reply
how to assign different page layout or record type to the users based on a condition
Dear All,
Is it possible to assaign different page layout or record type for the user based on the condition.
Ex: If the checkbox field value in the custom object is true, then user xxxx page layout or record type should be x . And if the checkbox value is false user xxxx page layout or record type should be y.
If yes, kindly let me know how we can do this??
Thank you.
Regards,
Prakash
- Prakki
- May 15, 2013
- Like
- 0
- Continue reading or reply
How to assign different record type or page layout for the user based on the condition
Dear All,
Is it possible to assaign different page layout or record type for the user based on the condition.
Ex: If the checkbox field value in the custom object is true, then user xxxx page layout or record type should be x . And if the checkbox value is false user xxxx page layout or record type should be y.
If yes, kindly let me know how we can do this??
Thank you.
Regards,
Prakash
- Prakki
- May 15, 2013
- Like
- 0
- Continue reading or reply
How to assign different record type or different page layout to the user based on condition..??
Dear All,
Is it possible to assaign different page layout or record type for the user based on the condition.
Ex: If the checkbox field value in the custom object is true, then user xxxx page layout or record type should be x . And if the checkbox value is false user xxxx page layout or record type should be y.
If yes, kindly let me know how we can do this??
Thank you.
Regards,
Prakash
- Prakki
- May 15, 2013
- Like
- 0
- Continue reading or reply
Can we change current profile permissions with triggers???
Dear All,
Can we change current profile permissions with triggers.
I mean a user Prakki is assaigned by a profile xxx which consists of custom object permisions Read,create,edit,delete.
Now with the help of trigger can i change custom object permissions to read.
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
Can we change current profile permissions with triggers.
Dear All,
Can we change current profile permissions with triggers.
I mean a user Prakki is assaigned by a profile xxx which consists of custom object permisions Read,create,edit,delete.
Now with the help of trigger can i change this custom object permissions to read.
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
How to change custom object fileds to read only based on check box filed in the user object
Dear All,
I am strggling to solve this scenario, if any one helping me on this i will be greatful to them.
We are having various users and an custom object called Vehicle it containing many pick list fields, some text fields too currently all the users having modify all permission on this object. In the user object we had created a check box filed.
If the check box in the user object is unchecked, users should not enter any values to the pick list filed, means for all the users Vehicle object pick list fields should changed to read only. I would like to clear only picklist fields should be read only, on remaining fields user can do any operation.
If check box is checked then modify all permission on the vehicle object should effect.
It's very urgent,
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
How to change selected custom object fileds read only based on check box filed in the user object
Dear All,
I am strggling to solve this scenario, if any one helping me on this i will be greatful to them.
We are having various users and an custom object called Vehicle it containing many pick list fields, some text fields too currently all the users having modify all permission on this object. In the user object we had created a check box filed.
If the check box in the user object is unchecked, users should not enter any values to the pick list filed, means for all the users Vehicle object pick list fields should changed to read only. I would like to clear only picklist fields should be read only, on remaining fields user can do any operation.
If check box is checked then modify all permission on the vehicle object should effect.
It's very urgent,
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
How to restrict user to not to enter values or how to make field as readonly by using trigger
Hello,
Can anyone please share trigger code to restrict user to not enter values in the field as per condition.
Its a bit urgent.
Prompt responses will be higly appreciated.
Thank you.
- Prakki
- May 13, 2013
- Like
- 0
- Continue reading or reply
How to restrict user to not to enter values or how to make field as readonly with help of trigger
Hello,
Can anyone please share trigger code to restrict user to not enter values in the field as per condition.
Its a bit urgent.
Prompt responses will be higly appreciated.
Thank you.
- Prakki
- May 13, 2013
- Like
- 0
- Continue reading or reply
how to Restrict user to not to enter pick list values as per check box (checked/ un- checked)
Dear All,
We had created a custom check box in the user object, as per the check box value ( checked/ Un checked),
i would like to restrict the user to not to enter values in the pick list fields.
If the pick list value is checked then user can enter values to the pick list fields. If it is unchecked, then i should restrict him.
Any one can help me in this scenario.
Promt responses will highly appriciated.
Thank you
Regards,
Prakki
- Prakki
- May 13, 2013
- Like
- 0
- Continue reading or reply
- Prakki
- July 13, 2017
- Like
- 0
- Continue reading or reply
apex:outputtext error, change the field value dynamically
There is a output text field in my VF page, the value of the text should be like this user1 Name (user1email@gmail.com), User2Name ( User2email@gmail.com).
the condition here is when there is no user2, filed value should be user1 Name (user1email@gmail.com)
I'm using the following condition
<apex:outputText value="{!if({!EndUserName} != null && {!EndUserEmail} != null),{!ContactName} ({!ContactEmail}) {!EndUserName} ({!EndUserEmail}), {!ContactName} ({!ContactEmail}) }"/>
here endUsername = user2name, EndUserEmail = user2email.
but i'm getting an error :
Any suggestions how to implement this ?
Thanks,
Prakki
- Prakki
- September 23, 2014
- Like
- 0
- Continue reading or reply
Unable to update records using batch Apex
public class INFSimpleBatchExp implements Database.Batchable<sobject> {
public Database.QueryLocator start(database.BatchableContext bc )
{
String query = 'select id, name from Account';
return Database.getQueryLocator(query);
}
public void execute (Database.BatchableContext bc, List<Account> scope )
{
for(Account acc : scope)
{
acc.name = acc.name + 'updated';
}
update scope;
}
public void finish(Database.BatchableContext bc)
{
}
}
----------------------------------------------------------------------------------------------------------------------
I am using following statemets in Developer console
INFSimpleBatchExp inF = new INFSimpleBatchExp();
Database.executeBatch(inF, 200);
Anyone kindly let me know where it went wrong?
wwwwwwThanks,
Prakki
- Prakki
- June 23, 2014
- Like
- 0
- Continue reading or reply
How to fetch Opportunity Product custom field value into a field in Opportunity object
Hi All,
I want to create a formula field whose value should be a copy of an opportunity product custom field. I was trying to find out opportunity product object name in the formula editor, but i am not finding.
Can any one help me to solve this, quick response will be highly appreciated.
Thanks & Regards,
Prakash
- Prakki
- October 28, 2013
- Like
- 0
- Continue reading or reply
How to pass a dynamic table data to another visualforce page
Dear All,
I am requesting for a help to solve this problem.
In my visualforce page ( name : Reimbursement) i am having table which containg 4 columns in which user can enter a data. And along with this i am having a command link by name add row, if we click on the Add row link an another row will add to the row. Here there is no limit on number of rows for the table.
i having a command button by the name proceed below the table, if we click on the button the entered details should appear in the same format in the other vf page( reimbusementreciever).
Kindly help me to solve this please.
For reference please find the below code:
--VF Page: Reimbursement--- <apex:page standardcontroller="Reimbursement__c" extensions="Reimbursementformcontroller"> <apex:sectionHeader title="Reimbursement Form"/> <apex:form > <apex:pageBlock title="Employee Details"> <apex:pageBlockSection columns="1"> <apex:pageBlockSectionItem > <apex:outputLabel >Name Of The Employee:</apex:outputLabel> <apex:outputText > {!$User.FirstName}</apex:outputText> </apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockSection > <apex:pageBlockTable value="{!reimburselist}" var="rlist"> <apex:column headerValue="Type"> <apex:inputField value="{!rlist.Type__c}"/> </apex:column> <apex:column headerValue="Date"> <apex:inputField value="{!rlist.Date__c}"/> </apex:column> <apex:column headerValue="Amount"> <apex:inputField value="{!rlist.Amount__c}"/> </apex:column> <apex:column headerValue="Approve Amount"> <apex:inputField value="{!rlist.Approved_Amount__c}"/> </apex:column> </apex:pageBlockTable> </apex:pageBlockSection> <apex:commandLink value="Add" action="{!add}"/> <br/> <apex:commandButton value="Proceed" action="{!proceed}"/> </apex:pageBlock> </apex:form> </apex:page> -- Controller Code-- public with sharing class Reimbursementformcontroller { public list<Reimbursement__c> reimburselist{get;set;} public list<reimbursewrapper> reimbursewrapper {get;set;} public Reimbursementformcontroller(ApexPages.StandardController controller) { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public Reimbursementformcontroller() { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public void Add() { reimburselist.add(new Reimbursement__c()); } public list<Reimbursement__c> getdisplay(){ list<Reimbursement__c> display = new List<Reimbursement__c>(); for(reimbursewrapper reim : reimbursewrapper) { display.add(reim.rr); } return display; } public PageReference proceed() { PageReference np = new PageReference('/apex/Reimbursementformreciever'); np.setRedirect(false); return np; } public class reimbursewrapper{ public Reimbursement__c rr{get;set;} public reimbursewrapper(reimbursement__c rei) { this.rr = rei; } } } --VF Page: ReimbusementReciever-- <apex:page controller="Reimbursementformcontroller" > <apex:sectionHeader title="Working With Apex Data Tables (Confirmation)"/> <apex:form > <apex:outputText value="You have selected the following contacts for processing, are you sure?"/> <apex:pageblock > <apex:PageBlockTable value="{!reimburselist}" var="con" id="selectedContactsTable"> <apex:column value="{!con.Type__c}" headervalue="Full Name"/> <apex:column value="{!con.Date__c}" headervalue="Title"/> <apex:column value="{!con.Amount__c}" headervalue="Title"/> <apex:column value="{!con.Approved_Amount__c}" headervalue="Title"/> </apex:PageblockTable> </apex:pageblock> </apex:form> </apex:page>
Thank you.
Prakash
- Prakki
- August 23, 2013
- Like
- 0
- Continue reading or reply
How to pass a dynamic table data to another visualforce page
Dear All,
I am requesting for a help to solve this problem.
In my visualforce page ( name : Reimbursement) i am having table which containg 4 columns in which user can enter a data. And along with this i am having a command link by name add row, if we click on the Add row link an another row will add to the row. Here there is no limit on number of rows for the table.
i having a command button by the name proceed below the table, if we click on the button the entered details should appear in the same format in the other vf page( reimbusementreciever).
Kindly help me to solve this please.
For reference please find the below code:
--VF Page: Reimbursement--- <apex:page standardcontroller="Reimbursement__c" extensions="Reimbursementformcontroller"> <apex:sectionHeader title="Reimbursement Form"/> <apex:form > <apex:pageBlock title="Employee Details"> <apex:pageBlockSection columns="1"> <apex:pageBlockSectionItem > <apex:outputLabel >Name Of The Employee:</apex:outputLabel> <apex:outputText > {!$User.FirstName}</apex:outputText> </apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockSection > <apex:pageBlockTable value="{!reimburselist}" var="rlist"> <apex:column headerValue="Type"> <apex:inputField value="{!rlist.Type__c}"/> </apex:column> <apex:column headerValue="Date"> <apex:inputField value="{!rlist.Date__c}"/> </apex:column> <apex:column headerValue="Amount"> <apex:inputField value="{!rlist.Amount__c}"/> </apex:column> <apex:column headerValue="Approve Amount"> <apex:inputField value="{!rlist.Approved_Amount__c}"/> </apex:column> </apex:pageBlockTable> </apex:pageBlockSection> <apex:commandLink value="Add" action="{!add}"/> <br/> <apex:commandButton value="Proceed" action="{!proceed}"/> </apex:pageBlock> </apex:form> </apex:page> -- Controller Code-- public with sharing class Reimbursementformcontroller { public list<Reimbursement__c> reimburselist{get;set;} public list<reimbursewrapper> reimbursewrapper {get;set;} public Reimbursementformcontroller(ApexPages.StandardController controller) { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public Reimbursementformcontroller() { reimburselist = new list<Reimbursement__c>(); reimburselist.add(new Reimbursement__c()); } public void Add() { reimburselist.add(new Reimbursement__c()); } public list<Reimbursement__c> getdisplay(){ list<Reimbursement__c> display = new List<Reimbursement__c>(); for(reimbursewrapper reim : reimbursewrapper) { display.add(reim.rr); } return display; } public PageReference proceed() { PageReference np = new PageReference('/apex/Reimbursementformreciever'); np.setRedirect(false); return np; } public class reimbursewrapper{ public Reimbursement__c rr{get;set;} public reimbursewrapper(reimbursement__c rei) { this.rr = rei; } } } --VF Page: ReimbusementReciever-- <apex:page controller="Reimbursementformcontroller" > <apex:sectionHeader title="Working With Apex Data Tables (Confirmation)"/> <apex:form > <apex:outputText value="You have selected the following contacts for processing, are you sure?"/> <apex:pageblock > <apex:PageBlockTable value="{!reimburselist}" var="con" id="selectedContactsTable"> <apex:column value="{!con.Type__c}" headervalue="Full Name"/> <apex:column value="{!con.Date__c}" headervalue="Title"/> <apex:column value="{!con.Amount__c}" headervalue="Title"/> <apex:column value="{!con.Approved_Amount__c}" headervalue="Title"/> </apex:PageblockTable> </apex:pageblock> </apex:form> </apex:page>
Thank you.
Prakash
- Prakki
- August 23, 2013
- Like
- 0
- Continue reading or reply
Can we change current profile permissions with triggers???
Dear All,
Can we change current profile permissions with triggers.
I mean a user Prakki is assaigned by a profile xxx which consists of custom object permisions Read,create,edit,delete.
Now with the help of trigger can i change custom object permissions to read.
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
How to change custom object fileds to read only based on check box filed in the user object
Dear All,
I am strggling to solve this scenario, if any one helping me on this i will be greatful to them.
We are having various users and an custom object called Vehicle it containing many pick list fields, some text fields too currently all the users having modify all permission on this object. In the user object we had created a check box filed.
If the check box in the user object is unchecked, users should not enter any values to the pick list filed, means for all the users Vehicle object pick list fields should changed to read only. I would like to clear only picklist fields should be read only, on remaining fields user can do any operation.
If check box is checked then modify all permission on the vehicle object should effect.
It's very urgent,
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
How to change selected custom object fileds read only based on check box filed in the user object
Dear All,
I am strggling to solve this scenario, if any one helping me on this i will be greatful to them.
We are having various users and an custom object called Vehicle it containing many pick list fields, some text fields too currently all the users having modify all permission on this object. In the user object we had created a check box filed.
If the check box in the user object is unchecked, users should not enter any values to the pick list filed, means for all the users Vehicle object pick list fields should changed to read only. I would like to clear only picklist fields should be read only, on remaining fields user can do any operation.
If check box is checked then modify all permission on the vehicle object should effect.
It's very urgent,
Thank you.
Regards,
Prakki
- Prakki
- May 14, 2013
- Like
- 0
- Continue reading or reply
Restricting user to not to enter pick list values as per check box ( checked/ un checked)
Dear All,
We had created a custom check box in the user object, as per the check box value ( checked/ Un checked),
i would like to restrict the user to not to enter values in the pick list fields.
If the pick list value is checked then user can enter values to the pick list fields. If it is unchecked, then i should restrict him.
Any one can help me in this scenario.
Promt responses will highly appriciated.
Thank you
Regards,
Prakki
- Prakki
- May 13, 2013
- Like
- 0
- Continue reading or reply
Restricting user to not to enter pick list values as per check box ( checked/ un checked)
Dear All,
We had created a custom check box in the user object, as per the check box value ( checked/ Un checked),
i would like to restrict the user to not to enter values in the pick list fields.
If the pick list value is checked then user can enter values to the pick list fields. If it is unchecked, then i should restrict him.
Any one can help me in this scenario.
Promt responses will highly appriciated.
Thank you
Regards,
Prakki
- Prakki
- May 13, 2013
- Like
- 0
- Continue reading or reply
How to restrict user to edit a field..??
Dear All,
We are having a custom object called vehicle, which consists of 10 picklist fields. Now i would like to restrict the users to not edit or not to enter new pick list values to all these picklist fileds. how to achieve this..??
Can anyone help me to solve this..
Thank you.
Prakki
- Prakki
- May 06, 2013
- Like
- 0
- Continue reading or reply