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?

2025年02月の質問の中から整理します

Last updated at Posted at 2025-02-02

まとめページに戻る
Trailhead関係 年月で整理に戻る

参照して頂くのは結構ですが、そのまま内容を丸ごとコピーするような行為は控えて欲しいです。一応時間を掛けて作っているので、その点はご考慮願いたいです。

なるべく、回答の中身も転記しておきます。結構な割合で質問者さんが黒歴史を消したいのか質問自体を削除しますので... 最良の答えとしてもらっても即消されることは大変多いです。

1月も相変わらず質問は少ないし回答しても反応はありませんが、自分自身の勉強として回答は続けようと思います。

2025年02月未解決の質問


「エンタイトルメント入門」のハンズオン Challengeが完了できない

トレイルヘッドのお題のページも英語にしていますか?
日本語と英語で指示内容が違うかもしれません

Fundraising Operationsがない?

We couldn't find a page named 'DisplayUserInfo'.

this matter has beeen resolved it was a issue with the way the VF page was named

We updated an account that had 'Match_Billing_Address__c' set to true. We expected the trigger to fire, but it didn’t. Make sure the trigger fires if 'Match_Billing_Address__c' is true.

I was getting this error because the test record did not have a value in the AccountNumber field which caused the insert to fail. I added one, and it passed the check.

trigger AccountAddressTrigger on Account (before insert, before update) {
    for (Account a : Trigger.new) {
        a.AccountNumber = '12345678';
        if (a.Match_Billing_Address__c == true) {
                a.ShippingPostalCode = a.BillingPostalCode;
        }
    }
}

https://trailhead.salesforce.com/trailblazer-community/feed/0D54V00007T4MaoSAF

In the 'Create Task' action, we can’t find the 'Activity Date' field set to a valid date

Try to us another formata for data field, for example< not 2/10/2025 but 2.10.2025

We can’t find one or more of the following fields on the Dynamic Highlights Panel: Title, Account Name, Phone, Email, Contact Owner, Level.

Ok, so my problem was that I had selected Home Phone and not typed phone in quick find and then selected that. This challenge is extremely picky, so make sure everything looks like this:

image.png

We can’t find an OAuth Token from your OAuth 2.0 Web Server flow. Check your external client app configuration, and try authenticating again.

I had the same issue but was able to resolve it by creating a new playground and completing the challenges again.

https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A8vqWSAR

I finally got this to work but the "solution" is still puzzling.

The issue might be if you have > 1 Playground. I performed the exercise on two different Playgrounds. The first failed. So, I created a second playground dedicated to this exercise. I performed the tasks in the second playground AND VERIFIED I selected the correct playground when trying to submit for credit. This failed.

Today, I went bak and did the exercise again. I noticed something on launching the Heroku instance to enter the URL, secret, etc. This auto-populated. When I corrected the consumer keys (which I had saved) consistrnt with the playground, the credit FAILED.

However, I closed all browser windows and restarted accepting the pre-populated keys in Heroku. This seems to work.

The point seems to be that the pre-populated keys are needed even if they are inconsistent with the playgrounds.

重要なのは、プレイグラウンドと一致しない場合でも、事前に設定されたキーが必要であることのようです。

We couldn’t find the Account Annual Revenue greater or equal to $20,000,000 condition in the Yes outcome of the ‘Large Account?’ decision element.

It already was on "No". But I have deleted everything and did it once again from scratch. It worked then.

we could not establish a secure connection due to a network error. Please check your network connectivity and try again. If the problem persists, ask the administrator to confirm that you have the correct permissions enabled. It is also possible that the administrator of your organization has not yet granted you the required permissions. Contact him for assistance

image.png

To solve the problem I recommend trying to activate "API Enabled" and check for the menu "New Salesforce Mobile App Quickstart".

https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000FWxGSSA1

https://trailhead.salesforce.com/trailblazer-community/feed/0D54V00007ZA7qbSAD

We can’t find the expected details for the Headquarters service territory.

I deleted and redid it and it worked. I am assuming it was a typo or extra space/character that caused the issue.

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?