• ASKII
  • NEWBIE
  • 30 Points
  • Member since 2016

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 7
    Replies
I created Quick Action for Case object to create child record. I added it to Case Feed layout, but it doesn't show there.
I have permissions to create records for child object.
What am I doing wrong?

Best regards,
Andrey

Hello,
Currently we are uploading a document to our opportunity. I need a way automate generating a public share link of a file and setting this to it's related opportunity url field. 

the idea is this will then be referenced later in a email template.

at the moment we have to:

1. upload the file

2. click on the file which navigates away from the opportunity

3. generate the share link

4. copy the link

5. return to the opp and paste this into the url.

any help would be appreaciated.

Cheers
Phill

I created Quick Action for Case object to create child record. I added it to Case Feed layout, but it doesn't show there.
I have permissions to create records for child object.
What am I doing wrong?

Best regards,
Andrey
hi folks,

I want to write a trigger to send an email to contact when a case is created.please help me on this.

thanks
suresh.
Is there any way to allow redirect to my force.com public site from only specific url.
I want to redirect to force.com site from my company site, and allow only this redirection, Force com site will be public but not really accessible publicly, only from specific urls.
 
Hi guys,

I am beginner in salesforce developer I am doing a few tasks with visualfore pages and apex classes.
I am trying to develop a Ckeckbox with selectedAccounts to show into another table. But when I save and test my code to server in the Self-Salesforce Portal prompt error, Visualforce Error: Unknown property 'VisualArrayList.selected'. I can't finish my job all my codes are tested already. Below I attached part of my application basically. Please any help.

Thanks in advance.

Source Code: Visualforce page

<apex:page sidebar="false" controller="DisplayAccount">
<fieldset>
<legend>Update Account</legend>
</fieldset>
<apex:sectionHeader title="Task 3"/>
<apex:form>
<apex:pageBlock title="Accounts with Checkboxes">
<apex:pageMessages/>
<apex:pageBlockSection title="List of All Available Accounts">
<apex:dataTable value="{!accounts}" var="acc">
...
</apex:page>

Apex Classes called DisplayAccount

public with sharing class DisplayAccount {
public Account account_temp {get; set;}
public DisplayAccount(){
account_temp = new Account();
}
public DisplayAccount(ApexPages.StandardController controller){
//account_temp = (Account) controller.getRecord();//add account by Id
}
//task 2
public List<Account> acc{get; set;}
public String searchString{get; set;}
public void findAccount(){
String searchQuery ='SELECT Id, Name, BillingState, Phone, Website FROM Account WHERE Name LIKE \'%'+searchString+'%\' LIMIT 20';
acc = Database.query(searchQuery);//query to select by input parameter account
}
... continued