• Sahu Anuj
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 4
    Replies
Hi All,

I am unable to add flow in my community, I am not getting any option to add flow as a component.

User-added image

I have enabled the flow permission for guest user as well. Still no flow is visible for the Guest profile despite of having an active flow.
User-added image
User-added image
 
Hi All,
I added the similiarBoat component thrice on the Boat record page, but every time I am getting record based on Type. Even in my logs the value in 'Type'.
Any suggestions would be helpful.
Attaching my code for reference.JS CodeHTML Code

Hi All,

Do I have to everytime authorize an org after restarting vs code. I did in the morning and now not showing any org.

User-added image

Hi All,

I want to create a report/export (spreadsheet) for all the jobs related to inactive users.

Can anyone guide me how to do this.

Thanks in advance!

Anuj

Hi All,

I am unable to add flow in my community, I am not getting any option to add flow as a component.

User-added image

I have enabled the flow permission for guest user as well. Still no flow is visible for the Guest profile despite of having an active flow.
User-added image
User-added image
 

Hi All,

Do I have to everytime authorize an org after restarting vs code. I did in the morning and now not showing any org.

User-added image

Hi All,

I want to create a report/export (spreadsheet) for all the jobs related to inactive users.

Can anyone guide me how to do this.

Thanks in advance!

Anuj

The Challenge for this (https://developer.salesforce.com/en/trailhead/force_com_programmatic_beginner/visualforce_fundamentals/visualforce_variables_expressions)Trailhead unit asks us to create a VisualForce page named "myHelloWorldVF" that displays the first name of the logged-in user.

Here is the VF I am using:
<apex:page>
{!$User.FirstName}
</apex:page>
(note: I have also tried wrapping the binding inside tags like <div>, <p>, <apex:outputText>, etc with no luck. I also tried minimizing the rendered output by including sidebar="false" standardStylesheets="false" showHeader="false")

The error returned in Trailhead after clicking "Check Challenge" is:
"Challenge not yet complete... here's what's wrong: 
The Visualforce page did not fit the criteria. The first name of the loged in user was not output using dynamic global variables." 

I am not aware of a different global var within VF for getting User attributes.

Anyone have luck with getting this one to pass?
  • October 28, 2014
  • Like
  • 0