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?

More than 3 years have passed since last update.

【Salesforce】カスタム設定の項目を並べ替えたい

Last updated at Posted at 2022-01-26

動作確認

標準機能では無理。(ページレイアウト的なものは無い)

通常、カスタム設定で項目を作成すると、作成した順番に並ぶが、リリースするとばらける。
しかしばらけるのには法則があり、リリース後はAPI参照名の昇順(A→Z)で並び方が変わる。

実現方法

<英語>
1月 Jan__c
2月 Feb__c
3月 Mar__c

↓リリース

2月 Feb__c
1月 Jan__c
3月 Mar__c

F → J → Mに並び変わる

<数字>
1月 M1__c
2月 M2__c
10月 M10__c

↓リリース

10月 M10__c
1月 M1__c
2月 M2__c

10 → 1 → 2に並び変わる

<数字:桁合わせ>
1月 M01__c
2月 M02__c
10月 M10__c

↓リリース

1月 M01__c
2月 M02__c
10月 M10__c

01 → 02 → 10に並び変わる

参考リンク

なし

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?