Search In This Blog

Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

2021-03-09

Salesforce開発便利なChrome拡張機能

Salesforce Inspector

レコードデータ、メータデータへ直接アクセスできる。データの確認には便利です。


Force.com LOGINS

複数のアカウントを管理できる。


GoFullPage

画面キャプチャーをとる。

2016-08-18

Eclipse with Force.com IDE

Prerequisites
  • Eclipse
  • JDK, Runtime Environment 7 or later
Step 1.
Launch Eclipse, Help > Install New Software, click Add

Step 2.
Set Name as "Force.com IDE"
Set Location as "http://media.developerforce.com/force-ide/eclipse42"
Then click OK

Step 3.
At least select Force.com IDE from the download list. If you don't konw which one is needed, select all. Then click Next
If you want an older version, uncheck the "Show only the latest versions of available software".

Step 4.
Click Next in Install Details dialog. Then accept the terms and click Finish. When Eclipse finished installation, you will be prompted to restart Eclipse.

Step 5.
You can check is Force.com installed successful by Eclipse > Window > Perspective > Open Perspective > Other. If you can see Force.com in list, it means success.

Step 6.
Select Force.com and click OK. You can start to develop now.

2016-08-16

Solve MavensMate LOGIN_MUST_USE_SECURITY_TOKEN error

You may happened to LOGIN_MUST_USE_SECURITY_TOKEN error when you use MavensMate.

It is because the access is out of trusted networks. You can find the solution in warning.

Login to Salesforce, My Settings > Personal > Reset My Security Token > Reset Security Token

2016-08-15

How to develop SFDC project with Sublime Text and MavebsMate

To develop SFDC project with Sublime Text 2/3, you need to make some preparations.

Step 1.
In Mac:
Use Command+Shift+P to open 'Package Control' or Menu bar > Sublime Text > Preferences > Package Control

In Windows:
Menu bar > Preferences > Package Control

Step 2.
Input 'Package Control: Install Package', pull enter key.

Step 3.
Search 'Maven' and install it.

Step 4.
MavensMate > Settings > User
Find '"mm_workspace"' and set your workspace folder like:
"mm_workspace" : [
         "/my/workspace",
         "/my/other/workspace",
         // Input path to your workspace folder
]
Then save.

Step 5.
MavensMate > Project > New Project
Input your organization information and Create Project.

If you happened to 'LOGIN_MUST_USE_SECURITY_TOKEN' error, check here.