Salesforceオブジェクト項目一覧の取得
1573 ワード
・要件
Salesforceオブジェクト項目一覧はワンタッチで取得する。
・対応案
ワンタッチできないが、ステップで取得方法は検討した。
①開発コンソールで、下記を実行する
Map<String, Schema.SObjectField> mapFields = Schema.getGlobalDescribe().get('Account').getDescribe().fields.getMap();
for (String fieldName: mapFields.keyset()){
System.debug('fieldName_Label:' +mapFields.get(fieldname)
+ ',' + mapFields.get(fieldname).getDescribe().getType()
+ ',' + mapFields.get(fieldname).getDescribe().getLabel()
);
}
上記ログをクリックし、ロカールに保存する
例:c:\tmp\apex-07_Accout.log
②PowerShellで一括抽出
(select-string '\|fieldName_Label' apex-07_Accout.log ) | foreach-object -Begin{new-item -type file -force a.csv} -Process { $b = $_ -replace '.*?Label\:'
''; write-output $b |out-file a.csv -append } -End{ get-content a.csv | sort-object | get-unique > Account.csv }
結果(Name,Type,Label)
AccountNumber,STRING,Account Number
AccountSource,PICKLIST,Account Source
......
Author And Source
この問題について(Salesforceオブジェクト項目一覧の取得), 我々は、より多くの情報をここで見つけました https://qiita.com/chunqiangHu/items/97aeb28c9f52e84e0494著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .