• SO
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 3
    Replies

OK, 63 views and no replies - hmm, seems like I am the only one who stumbled upon this problem!? Now, does anyone know who/where should I contact to address this issue? I am not a customer, I just downloaded the developer edition - is there any support available for us? I'd appreciate any help.

 

 

Hi Fellow Certified Developers,

 

I am a certified developer and  received an email with the link to the course "ONLINE PT-DEV-420" - when I log in and click on 'go to content'  to start the course, I see the following:

"Do not close this page or navigate from this page while you are working with online content. Some content may rely on this window to save your progress.

When you have completed the content, you can relaunch the content or use the menus or the links below to navigate elsewhere."

 

And nothing else. Anybody else had trouble launching the course? I am on Windows, using firefox.

 Thanks,

SO

 

Message Edited by SO on 07-13-2009 06:08 PM
  • July 11, 2009
  • Like
  • 0

Hello There,

 

I am looking for an opportunity as a salesforce consultant or administrator(flexible about the location). I have4+ years of experience as an Application Developer and recently

received my certification as force.com developer and and preparing to take the

administraotr exam soon. I have been enjoying learning about the salesforce.com

configuration and platform and would like to get involved in projects. Please

reply here if you have opportunities for an entry-level  position so we can get in touch.

 

Thank you for your time. Hope to hear from you.
  • May 10, 2009
  • Like
  • 0

Hi All,

 

I am pretty new to force.com platform and in the process of learning. With that, here is my question below:

 

I have an approval process and the steps got changed by somebody other than the admin. I need to find out who made the changes to the approval process steps. Where do I track the changes made to the approval process? Thanks for your response in advance.

 

SO 

Message Edited by SO on 03-24-2009 07:20 AM
  • March 24, 2009
  • Like
  • 0

This s-control doesn't work and I can't figure out why.  You can click on the custom link and it just takes you to a white screen and then does nothing.  The opportunity doesn't get updated either.

 

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Executed Contract Received</title>
<script src="https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js" type="text/javascript"></script>
<script>
function initPage() {
//Initialize the connection to salesforce.com by setting the sessionid and the
//soap endpoint in the init call
sforceClient.setLoginUrl("https://www.salesforce.com/services/Soap/u/7.0");
sforceClient.registerInitCallback(startUp);
sforceClient.init("{!API.Session_ID}", "{!API.Partner_Server_URL_70}", false);
}

function startUp() {

var Type="{!Opportunity.Type}";
var Status="{!Opportunity.Export_Status__c}";
var Profile="{!$User.ProfileId}";
//if(Profile = "00e30000000g5na"){
// var retUrl = "https://na1.salesforce.com/" + "{!Opportunity.Id}";
// window.parent.parent.location.href = retUrl;
// alert("You do not have the proper permissions to mark this opportunity as received!");


if ((Type == "Merchants@ Platinum") || (Type == "Merchants@ Gold") || (Type == "Merchants@ Upgrade")) {
if (Status == "Exported"){
var retUrl = "https://na1.salesforce.com/" + "{!Opportunity.Id}";
window.parent.parent.location.href = retUrl;
alert("This opportunity has already been exported!");
}
else{

//set as Ready for export
var myObj = new Sforce.Dynabean("Opportunity");
myObj.set("id", "{!Opportunity.Id}");
myObj.set("Export_Status__c", "Ready");
var saveResults = sforceClient.Update([myObj]);
var retUrl = "https://na1.salesforce.com/{!Opportunity.Id}";
window.parent.parent.location.href = retUrl;
}
}
else if ((Type == "Amendment") || (Type == "Platinum Renewal") || (Type=="Gold Renewal")) {
if ("{!Opportunity.Master_Opportunity__c}" == "") {
var retUrl = "https://na1.salesforce.com/" + "{!Opportunity.Id}";
window.parent.parent.location.href = retUrl;
alert("This opportunity is missing the Master Opportunity field! Please refer to Sales Ops.");
}
else {
//create remedy ticket
var holdback = "%0D%0AReturn Holdback: {!Opportunity.ReturnHoldback__c}%0D%0A";

//get rev shares from contract
var qr = sforceClient.Query("Select Category__c, Product_Rev_Share__c, Gift_Wrap_Rev_Share__c, Shipping_Rev_Share__c from Revenue_Share__c Where Contract__c = '{!Opportunity.Contract_ID__c}' ");
alert(qr);
var fees = "Category+++++++++ Product | Shipping | Giftwrap%0D%0A-----------------------------------------------------------------------%0D%0A";
for (var i=0;i<qr.records.length;i++) {
var revshare = qr.records[i];
var category = revshare.get("Category__c");
var product = revshare.get("Product_Rev_Share__c");
var shipping = revshare.get("Shipping_Rev_Share__c");
var giftwrap = revshare.get("Gift_Wrap_Rev_Share__c");
var fees = fees + category + "++++++" + product + " | " + shipping + " | " + giftwrap + "%0D%0A";
}

//get contract info
var qr = sforceClient.Query("Select Effective_Date__c, SpecialTerms,Description from Contract Where ID = '{!Opportunity.Contract_ID__c}' ");
alert (qr);
for (var i=0;i<qr.records.length;i++) {
var contract = qr.records[i];
var effective = "Effective Date: " +contract.get("Effective_Date__c") + "%0D%0A";
var terms = "Special Terms: " + contract.get("SpecialTerms") + "%0D%0A";
var descr = "Description:" + contract.get("Description") + "%0D%0A";
var descrclean = descr.replace("&", "and");
}

//find all affected storefronts
var masteropp = "{!Opportunity.Master_Opportunity__c}";
var qr = sforceClient.Query("Select Production_Customer_ID__c, Name from Opportunity Where ID = '{!Opportunity.Master_Opportunity__c}'");
alert(qr);
var storefronts = "%0D%0A%0D%0AAffected Storefronts:%0D%0A%0D%0AProd Cust ID +++++ Opportunity Name%0D%0A-------------------------------------------------------------------------------------------------%0D%0A";
for (var i=0;i<qr.records.length;i++) {
var storefront = qr.records[i];
var prodid = storefront.get("Production_Customer_ID__c");
var name = storefront.get("Name");
var storefronts = storefronts + prodid + "+++++" + name + "%0D%0A";
}

//document.write(qr);
// document.write("%0D%0AEffective Date - " + effective+ "%0D%0A%0D%0ASpecial Terms - " + terms + "%0D%0A");
// document.write(storefronts);

//get original opp
//get names and prod ids from all related opps %0D%0A


//document.write("This is where we would create a remedy ticket");

if (Type=="Tax Amendment"){
var retUrl = "https://tt.amazon.com/new?impact=4&category=Website&type=IWS3&item=Tax+Enablement&assigned_group=IWS-Tax-Manual&assigned_individual=tax-engine-bz&problem_location=&case_type=Trouble+Ticket&short_description={!Opportunity.Type}+Request+for%3A+{!Opportunity.Account}&details={!Opportunity.Type}+Request+for%3A+{!Opportunity.Account}&240000007=" + fees + holdback + effective + terms +descrclean + storefronts;&cc_list=&vendor_id=&quantity=&purchase_order_id=&asin=&isd=&upc=&title=&binding=&stock_number=&ship_origin=&invoice_number=&physical_location=&tracking_number=&picture_file_imdex_location=&bol_number=;
}
else
{
var retUrl = "https://tt.amazon.com/new?impact=4&category=Partners&type=Merchant+Engagement&item=Fee+Changes&assigned_group=Merchant+Engagement&assigned_individual=lmirth&problem_location=&case_type=Trouble+Ticket&short_description={!Opportunity.Type}+Request+for%3A+{!Opportunity.Account}&details={!Opportunity.Type}+Request+for%3A+{!Opportunity.Account}&240000007=" + fees + holdback + effective + terms +descrclean + storefronts;&cc_list=&vendor_id=&quantity=&purchase_order_id=&asin=&isd=&upc=&title=&binding=&stock_number=&ship_origin=&invoice_number=&physical_location=&tracking_number=&picture_file_imdex_location=&bol_number=;
}
var myObj = new Sforce.Dynabean("Opportunity");
myObj.set("id", "{!Opportunity.Id}");
myObj.set("Export_Status__c", "Remedy");
var saveResults = sforceClient.Update([myObj]);

window.location.href = retUrl;
}
}


else {
//warn that type is not correct
var retUrl = "https://na1.salesforce.com/" + "{!Opportunity.Id}";
window.parent.parent.location.href = retUrl;
alert("This opportunity has an unrecognized Type!");
}

}

</script>
</head>
<body onload="initPage()">
</body>
</html>

We have a unique opportunity for a SFDC user interested in becoming an Admin.

 

Our client, an industry leader, is looking for a Sales Specialist. This person will initially update and cleanse current contact/account data in SFDC. Other front-end responsibilities include building Reports and Dashboards. This is a rare opportunity to receive free hands-on training to learn the back-end and become an Admin.  SFDC responsibilities will grow over time.  Respectable company with 500+ users across multiple divisions.

 

Interviews will be conducted weeks of 5/11 and 5/18.

 

Position is based in the South Bay.

 

For immediate consideration, please submit your information online at www.HireOn-Demand.com--  Job Seeker-->Full-Service Recruiting--> Submit resume.

 

Hire On-Demand specializes in the placement of experienced Salesforce.com Administrators, Developers and Implementation Consultants.

  • May 11, 2009
  • Like
  • 0

Hi All,

 

I am pretty new to force.com platform and in the process of learning. With that, here is my question below:

 

I have an approval process and the steps got changed by somebody other than the admin. I need to find out who made the changes to the approval process steps. Where do I track the changes made to the approval process? Thanks for your response in advance.

 

SO 

Message Edited by SO on 03-24-2009 07:20 AM
  • March 24, 2009
  • Like
  • 0