Automatic Posting of Journals after importing through DMF
Here is the code that will post the journals that are imported using DMF (in my case).
Select the class DMFEntityBase and write the code below in the PostTargetProcess method
Code to be written in the PostTargetProcess method
///
/// Executes the logic once after processing the target data.
///
/// Select the class DMFEntityBase and write the code below in the PostTargetProcess method
Code to be written in the PostTargetProcess method
///
/// Executes the logic once after processing the target data.
///
/// A table buffer.
///
public void postTargetProcess(DMFDefinitionGroupExecution _dmfDefinitionGroupExecution)
{
//
PriceDiscAdmTable priceDiscTable;
PriceDiscAdmCheckPost priceDiscAdmCheckPost;
PriceDiscAdmName priceDiscAdmName;
PriceDiscJournalNum PriceDiscJournalNum;
/* while select priceDiscAdmName
{
select reverse firstOnly priceDiscTable
where priceDiscTable.JournalName == priceDiscAdmName.JournalName;*/
while select priceDiscTable
{
if(priceDiscTable.RecId && priceDiscTable.Posted == NoYes::No)
{
priceDiscAdmCheckPost = new PriceDiscAdmCheckPost(false);//To make sure of the posting
priceDiscAdmCheckPost.initJournalNum(priceDiscTable.journalnum);
priceDiscAdmCheckPost.run();
}
//
}
}
Comments
Post a Comment