USP_DATAFORMTEMPLATE_ADD_JOURNALENTRIES

The save procedure used by the add dataform template "Financial Transaction Journal Entry Add Data Form".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier INOUT The output parameter indicating the ID of the record added.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the procedure.
@BATCHJOURNALENTRIES xml IN Journal entries
@CONTEXTID uniqueidentifier IN Input parameter indicating the context ID for the record being added.

Definition

Copy


create procedure dbo.USP_DATAFORMTEMPLATE_ADD_JOURNALENTRIES
(
    @ID uniqueidentifier = null output,
    @CHANGEAGENTID uniqueidentifier = null,
    @BATCHJOURNALENTRIES xml=null,
    @CONTEXTID uniqueidentifier
)
as

set nocount on;

  exec dbo.USP_DATAFORMTEMPLATE_EDIT_JOURNALENTRIES @CONTEXTID, @CHANGEAGENTID, @BATCHJOURNALENTRIES

return 0