在任何报告生成屏幕(前端)上,在填写所需数据的表单后,在提交时,我们会调用一些生成报告的过程。 但是在为报告生成发送此数据之前,我有一个表格,其中必须插入输入的表格数据。 这必须使用自治事务过程来完成。请考虑以下示例表并建议。
Example:
Table in which logs are inserted : rep_log_tabl (user_id, app_id, cur_date, param1, param2, param3,.... param10)
Table which has app_id details: rep_app_tabl (app_id, field_name, X,X,X,X)
Table which has user_details : rep_user_detl (user_id,X,X,X,X,X)
Example form:
From Date: 1/1/2016 (Text)
To Date: 1/15/2016 (Text)
Type: Actual / Latest (drop down field)
and the table rep_log_tabl holds data like below:
user_id | app_id | cur_date | param1 | param2 | param3 | param4 | . . . . | param10 |
---------------------------------------------------------------------------------------------------------
U1234 | AXX-01 | 1/27/2016 | 1/1/2016| 1/15/2016| Actual | null | . . . . | null |
App_id and user_id is dependent on some parnt group from which the user logs in.