0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Google Info' button

Last updated at Posted at 2022-07-08

Trailhead関係 個別の課題別 に戻る

ボタンからリンクをつくるようにお題がまた変わった?

image.png

ダイナミックフォームを設定しているとリンクは表示されない

I tried it out using two playgrounds. I think the dynamic form is applied on the right.

image.png

No it will not support custom links

please refer to the limlitaions of the Dynamic forms
https://help.salesforce.com/articleView?id=dynamic_forms_limitations.htm&type=5

Does dynamic forms support custom links?
https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A95cNSAR

同じ解決策

リンクのボタンだと言っているけど...

Winter 23までのお題はボタンを作ること?

よく見るのですが。何故か誰もうまくいかない不思議なチャレンジです。

これが答えとは思うのですがねぇ。

リンクでなく、ボタンとして作る必要がある。

NOTE :- you need to make Google info as a button not link.

Please check below post with step by step process with screen shot

  1. https://developer.salesforce.com/forums/?id=906F0000000BPIOIA4
  2. https://developer.salesforce.com/forums/?id=906F0000000BRNfIAO

To clear this challange you need do below steps:-

Step 1 :- Create a Button on contact object like below
Step 2 :- Link detail should be like below.

Name :- Google_Info
Button or Link URL :- http://google.com/#q={!Contact.Name}
Display Type :- Detail Page Button

Step 3 :- Add the button on contact page layout. Please select "Contact Layout"
Step 4 :- Then click on Edit and add button on page.
Step 5 : - Save.

Please check below post for screen shot.

  1. https://developer.salesforce.com/forums/?id=906F0000000BRNfIAO

The 'Google Link' custom button was not found

Trailhead challenge wouldn't accept 'Google Info' button

Google info is nowhere to find

Add a Custom Button to a Contact

解説がある

I was in a similar situation and this is what i did to pass the challenge, go to Object Manager>Contact>Button, Links, and Actions>...scroll down the page till you see the "Google Info" link/button....you can either delete again or edit it by changing the name for example to "Apple info", save it.

Then go back and create a new button with the "Google Info" name and follow the instructions in the challenge. That should work.

私は同様の状況にあり、これがチャレンジに合格するために行ったことです。オブジェクトマネージャー>連絡先>ボタン、リンク、およびアクション>...「Google情報」リンク/ボタンが表示されるまでページを下にスクロールします。 ...もう一度削除するか、名前を「Apple info」などに変更して編集し、保存することができます。

次に戻って「Google Info」という名前の新しいボタンを作成し、チャレンジの指示に従います。それはうまくいくはずです。

未解決

未分類

I'm not sure. I'm following the steps in the Lightning Experience Customization but now I see I inadvertently skipped around the Get Started with Lightening Experience trail, so I'm going to go back and do it in order in case I missed something.

NO_ACCESS: User was not authorized for the community

Try modifying below lines in the apex class which is added on the auth providers.

  1. For Partner experience, the code should be:
  • private static final String DEFAULT_ACCOUNTNAME = 'Partners';
  • private static final String EXTERNAL_USER_PROFILE = 'Partners';

2. For Customer experience, it should be:

  • private static final String DEFAULT_ACCOUNTNAME = 'Customers';
  • private static final String EXTERNAL_USER_PROFILE = 'Customers';
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?