• Nikvm257
  • NEWBIE
  • 50 Points
  • Member since 2011

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 8
    Replies

Hello Gurus,

 

I want to schedule a report but when the report runs it should run with a different user.

I  know this functionality is available ...but don't know how to do that 

 

Thanks in advance !!

 

Hello guys,

 

This is a general question which i am not sure in which section shall I post .

 

But still ...

I am Salesforce Admin in my orgnisation. We get remedy tickts to perform changes in some existing standered / custom objects in SFDC.

when I do the change my name appear in the modified by field. But there is no  filed on the object level to maintain the remedy ticket number just to let me know why I did the change?

 

So now what could be solution over this ?

Can I maintian any sort of documentation ?

 

if yes can someone give me some kind of template ?

is there a place on SFDC where I can go and add this informatio.

 

Thanks in advance!

-Nikhil

 

Hello Guys ,

 

I am very new to cloud devlopment.

I am working on some vforce code devlopment.

I need to understand what is pagereference 

 

I have read the documentation but still couldn't clear myself.

 

So can  someone help me eunderstand in a layman terms what is the meaning of

 

}

public PageReference test() {
        return something; 
Thanks in advance !

Hello Guys,

 

I want to redirect the user to "Create Opportunity" page.

I have Account Id  using which I can get contact Id and app it to the page 

 

Please let me know also how to autofill the values in some of the text filds 

 

Thanks 

Hello Guys ,

 

I am using the stad controllr of account on my vforce.

I want to access/display  account's contact's ID 

 

sO I tried <apex:outputLabel value="{!account.contact.id}"/>

 

I got an error invalid field contact for SObject Account.

 

Let me know how to do that 

 

Thanks is advance!

 

-Nikhil 

Hello Gurus,

 

I am a beginner in SFDC.

I am trying to build a simpleprogram  with APEX and vforce

Having attched GUI.

 

The program will have an inputt where user will enter account name

 

Press on Search button. Then a list will be displayed with a account details.(this is done using APEX + SOQL + exten to std contoler )

 

When user will cliclk on Go link it should take him to account dispaly page (I am stuck here)

 

I have written below code

 

<apex:page standardController="Account" extensions="FirstExtClass" >

<apex:form id="MyForm">
    <apex:pageBlock title="Search Criteria">
        <apex:pageBlockSection columns="1">
            <apex:outputText value="Account Name"/>
            <apex:inputText value="{!acctName}"/>
        </apex:pageBlockSection>
        <apex:pageBlockButtons >
            <apex:commandButton value="Search" action="{!dosearch}" reRender="SearchResult, acctDetails, errors" />
        </apex:pageBlockButtons>
    </apex:pageBlock>

    <apex:pageBlock id="SearchResult" title="Search Results" >
        <apex:messages id="errors"/>

        <apex:pageBlockTable value="{!SearchResult}" var="acct" >
            <apex:column value="{!acct.Name}">
                <apex:facet name="header">Account Name</apex:facet>
            </apex:column>

            <apex:column value="{!acct.id}">
                <apex:facet name="header">Id </apex:facet>
            </apex:column>

            <apex:column >  
                <apex:facet name="header">Action </apex:facet>    
                <apex:outputLink value="na12.salesforce.com/">   
                Go           
                <apex:param name="id" value="{!acct.id}"/>
                </apex:outputLink>
            </apex:column>
        </apex:pageBlockTable>

    </apex:pageBlock>

</apex:form>

</apex:page>

 

 

but when I press on Go button I get ERROR URL no loger exist.

Pleae guid me!

Thanks in advance

 

-Nikhil

 

 

 

Hello Gurus

 

Please let me know if it is possible to get the object Id of say Account object using some prome / code line in vforce

 

What i m talking about 

if below is the link

https://cs4.salesforce.com/001300000099rPu

 

for Account XYZ then how can I get 001300000099rPu this Id in vforce

 

like

fu( Account1 ) = ID

 

Thanks in advance!

 

 

 

 

 

 

 

Hello Gurus,

 

I have just started devlopment using vforce 

I am trying to devlop a simple app 

1) User will enter an ID(Account object)  on the page

 

2)when the user will click on go link  the page should be redirected to the account details.

 

In the below code I have hard coded th Id 

I want to do the same dynamically 

 

<apex:page ><apex:pageBlock >        <apex:pageBlockSection >        <apex:form id="MyForm">    <B>Please Enter an Account Number : </b>  <apex:inputText id="AccountNo" />   <apex:outputLink value="https://cs4.salesforce.com/apex/hello">   Go   <apex:param name="id"  value="001300000099rPu" />   </apex:outputLink>
        </apex:form>
    </apex:pageBlockSection>
</apex:pageBlock></apex:page>

 

Thanks lot in advance!

 

 

 

Hello guys,

 

This is a general question which i am not sure in which section shall I post .

 

But still ...

I am Salesforce Admin in my orgnisation. We get remedy tickts to perform changes in some existing standered / custom objects in SFDC.

when I do the change my name appear in the modified by field. But there is no  filed on the object level to maintain the remedy ticket number just to let me know why I did the change?

 

So now what could be solution over this ?

Can I maintian any sort of documentation ?

 

if yes can someone give me some kind of template ?

is there a place on SFDC where I can go and add this informatio.

 

Thanks in advance!

-Nikhil

 

Hello Guys,

 

I want to redirect the user to "Create Opportunity" page.

I have Account Id  using which I can get contact Id and app it to the page 

 

Please let me know also how to autofill the values in some of the text filds 

 

Thanks 

Hello Guys ,

 

I am using the stad controllr of account on my vforce.

I want to access/display  account's contact's ID 

 

sO I tried <apex:outputLabel value="{!account.contact.id}"/>

 

I got an error invalid field contact for SObject Account.

 

Let me know how to do that 

 

Thanks is advance!

 

-Nikhil 

Hello Gurus,

 

I am a beginner in SFDC.

I am trying to build a simpleprogram  with APEX and vforce

Having attched GUI.

 

The program will have an inputt where user will enter account name

 

Press on Search button. Then a list will be displayed with a account details.(this is done using APEX + SOQL + exten to std contoler )

 

When user will cliclk on Go link it should take him to account dispaly page (I am stuck here)

 

I have written below code

 

<apex:page standardController="Account" extensions="FirstExtClass" >

<apex:form id="MyForm">
    <apex:pageBlock title="Search Criteria">
        <apex:pageBlockSection columns="1">
            <apex:outputText value="Account Name"/>
            <apex:inputText value="{!acctName}"/>
        </apex:pageBlockSection>
        <apex:pageBlockButtons >
            <apex:commandButton value="Search" action="{!dosearch}" reRender="SearchResult, acctDetails, errors" />
        </apex:pageBlockButtons>
    </apex:pageBlock>

    <apex:pageBlock id="SearchResult" title="Search Results" >
        <apex:messages id="errors"/>

        <apex:pageBlockTable value="{!SearchResult}" var="acct" >
            <apex:column value="{!acct.Name}">
                <apex:facet name="header">Account Name</apex:facet>
            </apex:column>

            <apex:column value="{!acct.id}">
                <apex:facet name="header">Id </apex:facet>
            </apex:column>

            <apex:column >  
                <apex:facet name="header">Action </apex:facet>    
                <apex:outputLink value="na12.salesforce.com/">   
                Go           
                <apex:param name="id" value="{!acct.id}"/>
                </apex:outputLink>
            </apex:column>
        </apex:pageBlockTable>

    </apex:pageBlock>

</apex:form>

</apex:page>

 

 

but when I press on Go button I get ERROR URL no loger exist.

Pleae guid me!

Thanks in advance

 

-Nikhil

 

 

 

Hello Gurus

 

Please let me know if it is possible to get the object Id of say Account object using some prome / code line in vforce

 

What i m talking about 

if below is the link

https://cs4.salesforce.com/001300000099rPu

 

for Account XYZ then how can I get 001300000099rPu this Id in vforce

 

like

fu( Account1 ) = ID

 

Thanks in advance!

 

 

 

 

 

 

 

Hello Gurus,

 

I have just started devlopment using vforce 

I am trying to devlop a simple app 

1) User will enter an ID(Account object)  on the page

 

2)when the user will click on go link  the page should be redirected to the account details.

 

In the below code I have hard coded th Id 

I want to do the same dynamically 

 

<apex:page ><apex:pageBlock >        <apex:pageBlockSection >        <apex:form id="MyForm">    <B>Please Enter an Account Number : </b>  <apex:inputText id="AccountNo" />   <apex:outputLink value="https://cs4.salesforce.com/apex/hello">   Go   <apex:param name="id"  value="001300000099rPu" />   </apex:outputLink>
        </apex:form>
    </apex:pageBlockSection>
</apex:pageBlock></apex:page>

 

Thanks lot in advance!