• skr00
  • NEWBIE
  • -1 Points
  • Member since 2012

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

Hi all,

 

Under Workflow, why we can't add "Time-Dependent Workflow Actions" when we have opted “Every time a record is created or Edited" under “Evaluation Criteria”?

 

Regards,

Pri...

  • January 17, 2012
  • Like
  • 0

Hi All

 

Need to know the diff. between Private & Global access modifier. What you mean by variable is only visible locally (for Private) & variable is visible to Apex scripts (for global). Private, i understood.

 

• private—the variable is only visible locally. This setting is the default if no access modifier is specified. You can have a class nested within a class. By default, these nested classes are private, meaning they are only visible within the outer class.
• public—the variable is visible within your application.
• global—the variable is visible to all Apex scripts.

 

Regards,

 

Pri...

 

  • January 11, 2012
  • Like
  • 0

<apex:page standardController="Position__c" id="thePage">
<apex:form >
<apex:pageBlock >
<apex:pageMessages ></apex:pageMessages>
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="!save" value="Save"/>
<apex:commandButton action="!cancel" value="Cancel"/>
</apex:pageBlockButtons>
<apex:pageBlockSection columns="1">
<apex:inputField value="{!Position__c.Department__c}">
</apex:inputField>
<apex:inputField value="{!Position__c.Job_Description__c}">
</apex:inputField>
</apex:pageBlockSection>
</apex:pageBlock>

<apex:pageBlock >
<apex:pageBlockTable value="{!Position__c.R00N30000002btlAEAQ__r}" var="JA" title="Job Applications">
<apex:column value="{!JA.Candidate__c}"/>
<apex:column value="{!JA.Candidate_Qualified__c}"/>
</apex:pageBlockTable>
</apex:pageBlock>

</apex:form>
</apex:page>

 

I'm not receiving any error while saving but unable to get the desired output ....any thought on this

 

  • January 06, 2012
  • Like
  • 0

I hv a doubt on Page. 255 regarding the part of code

 

<apex:pageblockTable
value="{!Position__c.Job_Application__r}" var="JA">
<apex:column value="{!JA.Candidate__r.First_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate__r.Last_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate_Qualified__c}">
</apex:column>
</apex:pageblockTable>

 

 

as it shows error

 

Definitely i am missing something on below

 

"<apex:pageblockTable value="{!Position__c.Job_Application__r}" var="JA">"

 

  • January 04, 2012
  • Like
  • 0

Hi All

 

Below is a part of code on Pg. 257 of Developer Guide Advanced Programming.

 

<apex:pageBlock>
<apex:pageblockTable
value="{!Position__c.Job_Application__r}" var="JA">
<apex:column value="{!JA.Candidate__r.First_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate__r.Last_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate_Qualified__c}">
</apex:column>
</apex:pageblockTable>
</apex:pageBlock>

 

Error recvd while saving on under developer mode.

 

 

Just wanted to know if anyone faced the same problem. All the Objects & Fields are created through Code Share Project. Job_Application is a Custom Object (Junction Object) between Position & Candidate Objects.

 

Any solution, much appreciated.

 

Thanks & regards,

Pri..

 

 

 

  • January 03, 2012
  • Like
  • 0

<apex:page standardController="Position__c" id="thePage">
<apex:form >
<apex:pageBlock >
<apex:pageMessages ></apex:pageMessages>
<apex:pageBlockButtons location="bottom">
<apex:commandButton action="!save" value="Save"/>
<apex:commandButton action="!cancel" value="Cancel"/>
</apex:pageBlockButtons>
<apex:pageBlockSection columns="1">
<apex:inputField value="{!Position__c.Department__c}">
</apex:inputField>
<apex:inputField value="{!Position__c.Job_Description__c}">
</apex:inputField>
</apex:pageBlockSection>
</apex:pageBlock>

<apex:pageBlock >
<apex:pageBlockTable value="{!Position__c.R00N30000002btlAEAQ__r}" var="JA" title="Job Applications">
<apex:column value="{!JA.Candidate__c}"/>
<apex:column value="{!JA.Candidate_Qualified__c}"/>
</apex:pageBlockTable>
</apex:pageBlock>

</apex:form>
</apex:page>

 

I'm not receiving any error while saving but unable to get the desired output ....any thought on this

 

  • January 06, 2012
  • Like
  • 0

I hv a doubt on Page. 255 regarding the part of code

 

<apex:pageblockTable
value="{!Position__c.Job_Application__r}" var="JA">
<apex:column value="{!JA.Candidate__r.First_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate__r.Last_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate_Qualified__c}">
</apex:column>
</apex:pageblockTable>

 

 

as it shows error

 

Definitely i am missing something on below

 

"<apex:pageblockTable value="{!Position__c.Job_Application__r}" var="JA">"

 

  • January 04, 2012
  • Like
  • 0

Hi All

 

Below is a part of code on Pg. 257 of Developer Guide Advanced Programming.

 

<apex:pageBlock>
<apex:pageblockTable
value="{!Position__c.Job_Application__r}" var="JA">
<apex:column value="{!JA.Candidate__r.First_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate__r.Last_Name__c}">
</apex:column>
<apex:column value="{!JA.Candidate_Qualified__c}">
</apex:column>
</apex:pageblockTable>
</apex:pageBlock>

 

Error recvd while saving on under developer mode.

 

 

Just wanted to know if anyone faced the same problem. All the Objects & Fields are created through Code Share Project. Job_Application is a Custom Object (Junction Object) between Position & Candidate Objects.

 

Any solution, much appreciated.

 

Thanks & regards,

Pri..

 

 

 

  • January 03, 2012
  • Like
  • 0

Hi All

 

Per FORCE.COM DEVELOPER GUIDE (Advanced Programming Technique for Cloud Computing), Chapter 2: Page 46, Bulet point 7., we need to get the "Location.csv " file from Code Share project. Unable to locate the project in the Code Share. A link to the project (Code Share) is highly appreciated (Not the one: http://developer.force.com/codeshare). If anyone faced the same issue??

 

Regards

DevSKR

  • September 01, 2011
  • Like
  • 0