• Ed_Ingber
  • NEWBIE
  • 35 Points
  • Member since 2012

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

Trying to modify the text formatting in the Screens by overriding a default setting of the CSS class. As an experiment, just trying to set text color to red. Found the class name using Chrome's Developer Tools. (Also modified the buttons, successfully based on an example given on the message board here.)

 

Text doesn't change to red - what am I missing?

 

Thanks!

Ed

 

<apex:page >

<style type="text/css">
.bPageBlock .pbBottomButtons .pbButtonb .btn { 
  color: #808080;
  display: inline;
  float: left;
  font: bold 16px arial, sans-serif;
  height: 24px;
}
</style>

<p style="color: #808080; font-size: 175%; font-weight: bolder; margin-top: 0.3em; margin-bottom: 0.2em">
  DH Interface Designer
</p>

<style type="text/css">
.theflow {
  color: #ff0000;
}
</style>
 
<div id="theflow">
  <flow:interview name="GP3_FLOW_9_1_12" buttonLocation="bottom" />
</div>
 
</apex:page><apex:page >

<style type="text/css">
.bPageBlock .pbBottomButtons .pbButtonb .btn { 
  color: #808080;
  display: inline;
  float: left;
  font: bold 16px arial, sans-serif;
  height: 24px;
}
</style>

<p style="color: #808080; font-size: 175%; font-weight: bolder; margin-top: 0.3em; margin-bottom: 0.2em">
  DH Interface Designer
</p>

<style type="text/css">
.theflow {
  color: #ff0000;
}
</style>
 
<div id="theflow">
  <flow:interview name="GP3_FLOW_9_1_12" buttonLocation="bottom" />
</div>
 
</apex:page>

 

I'm updating a record from Visual Workflow. Works okay logged in as System Administrator, but get the following error (to my email address) when logged in as another user with a different profile. The profile permissions make the Interface object CRUDable by that other user.

 

Thanks,

Ed

 

Encountered unhandled fault when running process GP3_FLOW_9_1_12/301d0000000L1ex exception by user/organization: 00Dd0000000cDCu/{4}

interaction.dal.exception.DALExecutionFault: ; nested exception is: 
common.exception.ApiQueryException: sObject type 'Interface__c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
(There was a problem executing your command.) > CREATE

caused by element : Data update.Create_Interface_Record

caused by: interaction.dal.exception.DALExecutionFault: ; nested exception is: 
common.exception.ApiQueryException: sObject type 'Interface__c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
(There was a problem executing your command.) > CREATE

Salesforce Error ID: 1949644703-1276 (30292538)

 

 

 

 

Conventional "Workflow Rules" can execute actions when a record matches the criteria. How can you execute similar actions using Visual Workflows - specifically,

  • send an email alert,
  • create a task,
  • send an outbound message (SOAP call)

Browsed through the entire board but didn't see any examples - presumably these things would be done with Apex plugins.

 

Thanks!

Ed 

Trying to modify the text formatting in the Screens by overriding a default setting of the CSS class. As an experiment, just trying to set text color to red. Found the class name using Chrome's Developer Tools. (Also modified the buttons, successfully based on an example given on the message board here.)

 

Text doesn't change to red - what am I missing?

 

Thanks!

Ed

 

<apex:page >

<style type="text/css">
.bPageBlock .pbBottomButtons .pbButtonb .btn { 
  color: #808080;
  display: inline;
  float: left;
  font: bold 16px arial, sans-serif;
  height: 24px;
}
</style>

<p style="color: #808080; font-size: 175%; font-weight: bolder; margin-top: 0.3em; margin-bottom: 0.2em">
  DH Interface Designer
</p>

<style type="text/css">
.theflow {
  color: #ff0000;
}
</style>
 
<div id="theflow">
  <flow:interview name="GP3_FLOW_9_1_12" buttonLocation="bottom" />
</div>
 
</apex:page><apex:page >

<style type="text/css">
.bPageBlock .pbBottomButtons .pbButtonb .btn { 
  color: #808080;
  display: inline;
  float: left;
  font: bold 16px arial, sans-serif;
  height: 24px;
}
</style>

<p style="color: #808080; font-size: 175%; font-weight: bolder; margin-top: 0.3em; margin-bottom: 0.2em">
  DH Interface Designer
</p>

<style type="text/css">
.theflow {
  color: #ff0000;
}
</style>
 
<div id="theflow">
  <flow:interview name="GP3_FLOW_9_1_12" buttonLocation="bottom" />
</div>
 
</apex:page>

 

I'm updating a record from Visual Workflow. Works okay logged in as System Administrator, but get the following error (to my email address) when logged in as another user with a different profile. The profile permissions make the Interface object CRUDable by that other user.

 

Thanks,

Ed

 

Encountered unhandled fault when running process GP3_FLOW_9_1_12/301d0000000L1ex exception by user/organization: 00Dd0000000cDCu/{4}

interaction.dal.exception.DALExecutionFault: ; nested exception is: 
common.exception.ApiQueryException: sObject type 'Interface__c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
(There was a problem executing your command.) > CREATE

caused by element : Data update.Create_Interface_Record

caused by: interaction.dal.exception.DALExecutionFault: ; nested exception is: 
common.exception.ApiQueryException: sObject type 'Interface__c' is not supported. If you are attempting to use a custom object, be sure to append the '__c' after the entity name. Please reference your WSDL or the describe call for the appropriate names.
(There was a problem executing your command.) > CREATE

Salesforce Error ID: 1949644703-1276 (30292538)

 

 

 

 

Conventional "Workflow Rules" can execute actions when a record matches the criteria. How can you execute similar actions using Visual Workflows - specifically,

  • send an email alert,
  • create a task,
  • send an outbound message (SOAP call)

Browsed through the entire board but didn't see any examples - presumably these things would be done with Apex plugins.

 

Thanks!

Ed