我有自定义课程extends
RunbaseBatch
。在run
方法中,我想获得BatchJob RecId
。我尝试使用这些代码行:
this.batchInfo().parmBatch();
// or
this.batchInfo().parmBatch().BatchJobId;
但在这两种情况下,方法都会检索空值。有没有办法获得这些信息?我在哪里可以获取这些数据?
答案 0 :(得分:2)
查看静态方法BatchHeader::getCurrentBatchHeader
(MSDN)
它返回一个类BatchHeader
的对象,其属性parmBatchHeaderId
应该包含您想要的信息。