LoginSignup
0
0

2022年07月の質問の中から整理します

Last updated at Posted at 2022-07-02

まとめページに戻る

2022年07月未解決の質問
2022年07月何故かベストアンサーをつけてくれない質問

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

Could not find required Filter criteria 'Related Position: Department equals Position: Department'.

This article was helpful. Department data type was incorrect, I changed it to correct one.
image.png

we can't find a filter where the 'Billing City' is 'San Francisco'.

The campingList JavaScript controller isn't setting the 'newItem' value provider with a blank Camping_Item__c sObject to reset the form.

I have successfully completed this challenge, if any one faces same issue then please consider the YouTube video link mentioned above. Last time I have missed one "_" at "Camping_Item__c", so the error comimg.

私はこの課題を無事に完了しました。同じ問題が発生した場合は、上記の YouTube ビデオ リンクを検討してください。前回は「Camping_Item__c」の「_」が一つ抜けていたので、エラーが出ました。

ERROR PipelineCallServlet|520317175|Sites-cdi-us-Site|AfterpayRedirect-HandleResponse|PipelineCall|pYngS1Y8oO system.core Sites-cdi-us-Site STOREFRONT pYngS1Y8oO SosafqdwyGJkAAAK-0-00 877392115102661632 - Exception occurred during request processing: QuotaLimitExceededException Limit for quota 'api.dw.net.HTTPClient.send()' exceeded. Limit is 8, actual is 9.

While I was getting this error, I believe the real error was related to something else. Setting an email variable to a null value and maybe it was having cascading effects downstream. I fixed that and it seems to have resolved this issue as well.

このエラーが発生していましたが、実際のエラーは何か他のものに関連していたと思います。メール変数を null 値に設定すると、ダウンストリームにカスケード効果が発生した可能性があります。私はそれを修正し、この問題も解決したようです。

I'm a little leary about downloading the Identity Provider Certificate.

invalid currency code in NumberFormat() error in "Add Business Logic" unit

削除されている

image.png

Internal Salesforce.com Error

"Using the Apex Wire Adapter" error: "TypeError: getAccountList.emit is not a function"

Try this

import getAccountList from '@salesforce/apex/AccountController.getAccountList';

jest.mock(
  '@salesforce/apex/AccountController.getAccountList',
  ()=>{
    const { createApexTestWireAdapter } = require("@salesforce/sfdx-lwc-jest");
    return {
      default: createApexTestWireAdapter(jest.fn()),
    };
  },
  {virtual: true}
);

In the test class, execute the following emit ()

getAccountList.emit(mockGetAccountList);

ClientInputError : LineEnding is invalid on user data. Current LineEnding setting is CRLF

Found the solution lower down, error from using a Windows OS on the supplied csv file.
Solution: Change lineEnding from CRLF to LF in the Create Job POST

{
"operation" : "insert",
"object" : "Account",
"contentType" : "CSV",
"lineEnding" : "LF"
}

This object containing this lookup has a summary field in another object. Remove the summary usage and try again

I had the same problem, and fixed it as follows, I switched to salesforce classic, I looked for the object that had deleted the field> I went to "Fields" and down there I clicked on "Deleted fields", I found the roll-up summary fields that had deleted it there and clicked on Erased, done that, the problem no longer occurred. https://help.salesforce.com/articleView?id=sf.fields_manage_deleted_fields_classic.htm&type=5

https://developer.salesforce.com/forums/?id=9060G0000005bQ7QAI

パスと変更セットの問題

image.png

For anyone who runs into this same problem, it was because when I moved from Sandbox to production I didn't move any profiles with it, so some fields were not accessible. Once I made sure all fields on the custom object were visible to me as Admin, it worked. Then after testing I made it available to other profiles as well.

これと同じ問題に遭遇した人にとっては、サンドボックスから本番環境に移行したときにプロファイルを移行しなかったため、一部のフィールドにアクセスできなかったことが原因でした. カスタム オブジェクトのすべてのフィールドが管理者として表示されることを確認すると、機能しました。次に、テストした後、他のプロファイルでも利用できるようにしました。

We couldn't find an Approval Post Template for opportunities named 'Opportunity Approvals'.

Thanks for reaching out! I got a good night's sleep and reread the module instructions. It turned out to be a simple category error. Earlier, I was mistakenly trying to create an Approval Process when I should have been creating a Post Template. When I created the Post Template, everything went smoothly!

古い回答で気になったもの

image.png

Set X-Frame-Options response header

DENY : Reject display

SAMEORIGIN : Allows pages to be displayed only within the same domain

ALLOW-FROM :uri Allows page display only for the specified URI

www.google.com is SAMEORIGIN

It's a source server setting, so I don't think it's possible on the Web tab.

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