• Edward chan
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 11
    Questions
  • 23
    Replies

Hi,
How can I adjust the below column to show the current OrganizationId of my cloud?

<apex:column headerValue="test">
<apex:outputText > value="getOrganizationId()"</apex:outputText>
</apex:column>

Hi,
Do you have more details to this method/event
products.add

 

which does appear below, from the Merchandise tutorial of Developer force?

 

public DisplayMerchandise[] getProducts() {
if (products == null) {
products = new DisplayMerchandise[]{};
for (Merchandise__c item :
[SELECT id, name, description__c, price__c
FROM Merchandise__c
WHERE Total_Inventory__c > 0]) {
products.add(new DisplayMerchandise(item));
}
}
return products;
}

 

Many Thanks & Best Regards,
Edward Chan

Hi,
I did do the change below in Store Front specfically for 'Wee Jet' below
http://dl.dropbox.com/u/40211031/t5.jpg

 

But after the change in Store Front, I really see no change to the 'Total inventory' below for Wee Jet. Why?
http://dl.dropbox.com/u/40211031/t6.png

 

Many Thanks & Best Regards,
Edward Chan

Hi,
According to the steps for Merchandise tutorial from Developer force, do you think the following part is designated for the use of the customers or the inside users of the corporation?
http://dl.dropbox.com/u/40211031/t4.jpg

 

Many Thanks & Best Regards,
Edward Chan

Hi,
I want to copy one existing report from one folder to another. Is it to export the original one first? If yes, how can we further capture the exported source into one other folder? Can I have the details of this?

 

Many Thanks & Best Regards,
Edward Chan

Hi,
In the report, can we have "Conditional Highlighting" (highlighted below), against one normal column (not an aggregate one)?
http://dl.dropbox.com/u/40211031/t1.jpg

Hi,
I know there should be one Back-end place in which the records are stored. Is there one direct way to retrieve the records?


Many Thanks & Best Regards,
Edward Chan

Hi,
Here are the codes I have:

1 public class StoreFront {
2 public PageReference shop() {
3 public String message;
4 message = 'You bought: ';
5 for (DisplayMerchandise p: products) {
6 if (p.count > 0) {
7 message += p.merchandise.name + ' (' + p.count + ') ';
8 }
9 }
10 return null;
11 }
...

and here is the error
Error: Compile Error: Illegal modifier on local variable at line 3 column 15


why?

Hi,
Can you please help resolve this problem I've got?
http://dl.dropbox.com/u/40211031/t396.png

Hi,
I don't know how to edit the relevant page when I am doing the below steps.

"1. Just as you did when you created the page, add the text /apex/CountSheet to the URL for your Salesforce instance.
2. Modify the attributes of the <apex:page> tag and enter the following code to remove the standard stylesheet, the header,
and the sidebar.
<apex:page standardStylesheets="false" showHeader="false" sidebar="false">
3. Now you need to tell the page where to find the stylesheet, so add a new line below the first <apex:page> tag and type
<apex:
4. The editor has code insight, which gives you a drop-down list of the elements that are available in this context. Start typing
stylesheet and when you see apex:stylesheet, select it.
...
"

Hi,
Can I have the clear definitions of these tables?
campaign
,task
,profile
,opportunity

Hi,
Do you have more details to this method/event
products.add

 

which does appear below, from the Merchandise tutorial of Developer force?

 

public DisplayMerchandise[] getProducts() {
if (products == null) {
products = new DisplayMerchandise[]{};
for (Merchandise__c item :
[SELECT id, name, description__c, price__c
FROM Merchandise__c
WHERE Total_Inventory__c > 0]) {
products.add(new DisplayMerchandise(item));
}
}
return products;
}

 

Many Thanks & Best Regards,
Edward Chan

Hi,
I did do the change below in Store Front specfically for 'Wee Jet' below
http://dl.dropbox.com/u/40211031/t5.jpg

 

But after the change in Store Front, I really see no change to the 'Total inventory' below for Wee Jet. Why?
http://dl.dropbox.com/u/40211031/t6.png

 

Many Thanks & Best Regards,
Edward Chan

Hi,
According to the steps for Merchandise tutorial from Developer force, do you think the following part is designated for the use of the customers or the inside users of the corporation?
http://dl.dropbox.com/u/40211031/t4.jpg

 

Many Thanks & Best Regards,
Edward Chan

Hi,
I want to copy one existing report from one folder to another. Is it to export the original one first? If yes, how can we further capture the exported source into one other folder? Can I have the details of this?

 

Many Thanks & Best Regards,
Edward Chan

Hi,
In the report, can we have "Conditional Highlighting" (highlighted below), against one normal column (not an aggregate one)?
http://dl.dropbox.com/u/40211031/t1.jpg

Hi,
I know there should be one Back-end place in which the records are stored. Is there one direct way to retrieve the records?


Many Thanks & Best Regards,
Edward Chan