• Ivan sklyarov 2
  • NEWBIE
  • 10 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 5
    Replies

https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_intro_get_dev_account.htm

https://developer.salesforce.com/docs/atlas.en-us.dev_lifecycle.meta/dev_lifecycle/creating_dev_sandbox.htm

Is it a way to create free sandbox to test installation app exchange ?

I'm trying to oerride standart components. but nothing happend. What's going wrong ? NewEvent page keep looking as before

User-added image
custom visualforce quick action component adds quite different layout with extra padding
User-added image
why it can happened. I need to get it similar wtih 'new task' or 'new event'

I'm really need to create global action which almost will looks like Opportunity -> 'New Event'.
I'm using visualforce for that.
Can I find it somewhere ?

And one more thing. I need to add `global action` widget to Opportunity->Activity
How can I make it or what should I set in `publisher layouts` ?

I want to save custom new Event object (like in opportunity -> activities). I haven't found any example. Would be great if someone will provide it

 
public with sharing class customOpportunityEvent {

    public Event event{get;set;}


    public customOpportunityEvent() {
        event = new Event();
    }

    public void fillConferenceInfo() {
        event.Subject = 'some Invitation';
        event.Location = 'location';
        event.Description = 'hi there';
    }

}

 
how can I add new tab with visualforce component to opportunity -> Activity

User-added image

I need to get something like

User-added image
on my visualforce page.

how can I create such component ?

I need a custom opportunity event hendler. 
behavior: on user click on button, request calls remote server and fill event location and description fields.
As I understand  it is impossable to integrate such button to existing `Opportunity`->`New Event`
that's why I've created new visualforce page for `quick action` with set of fields which similar to `New Event` component

But what should I do to save opportunity event ?

I need to save custom data set or value somewhere in salesforce. that value wil relates just to current user. So I need something like env variables or global user storage.

If yes. is it possible to make through api access? 

Will happy if someone can help me with that issue.

I'm trying to oerride standart components. but nothing happend. What's going wrong ? NewEvent page keep looking as before

User-added image
I want to save custom new Event object (like in opportunity -> activities). I haven't found any example. Would be great if someone will provide it

 
public with sharing class customOpportunityEvent {

    public Event event{get;set;}


    public customOpportunityEvent() {
        event = new Event();
    }

    public void fillConferenceInfo() {
        event.Subject = 'some Invitation';
        event.Location = 'location';
        event.Description = 'hi there';
    }

}

 
how can I add new tab with visualforce component to opportunity -> Activity

User-added image

I need to save custom data set or value somewhere in salesforce. that value wil relates just to current user. So I need something like env variables or global user storage.

If yes. is it possible to make through api access? 

Will happy if someone can help me with that issue.