Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

You will only need to do this if you are using MySQL, as other databases already default to "READ-COMMITTED".

Run following queries in MySQL.

SET GLOBAL tx_isolation='READ-COMMITTED';
SET SESSION tx_isolation='READ-COMMITTED';

 


You will also need to set the following in your my.cnf/my.ini file.
[mysqld]
transaction-isolation = READ-COMMITTED

Panel
borderColorgreen
borderWidth1
titleBGColor#ddffcc
borderStylesolid
titleDefinition

ID Generator Tool allows one to increase value stored in Environment Variable by one. It is very often used to generate/keep a running number (e.g. application reference number).

...

เครื่องมือตัวสร้าง ID  ช่วยให้ในการเพิ่มค่าที่เก็บไว้ในตัวแปรสภาพแวดล้อมโดยมักจะใช้ในการสร้าง/เก็บหมายเลขที่ทำงานอยู่ (เช่นหมายเลขอ้างอิงแอพลิเคชัน)


Image Added

รูปที่ 1: คุณสมบัติเครื่องมือตัวสร้าง ID

ชื่อคำอธิบาย
Formแบบฟอร์มเป้าหมาย แบบฟอร์มที่เลือกจะถูกใช้สำหรับแอตทริบิวต์ "Field" ด้านล่าง
Field IDฟิลด์ตัวเลือก คุณสามารถระบุรหัสฟิลด์แบบฟอร์มที่จะอัพเดต
Record IDฟิลด์ตัวเลือก คุณสามารถระบุรหัสเรกคอร์ดอย่างชัดเจนมิฉะนั้นจะมีการสันนิษฐานรหัสอินสแตนซ์ของกระบวนการ
Environment Variable Name

ชื่อของตัวแปรสภาพแวดล้อมที่จะใช้เพื่อเก็บหมายเลขที่รันอยู่

Format

กำหนดรูปแบบของค่าที่สร้างขึ้น (เช่น

Figure 1: ID Generator Tool Properties

NameDescriptionFormTarget form. The form selected will be used for "Field ID" attribute below.Field IDOptional field. You may specify a form field ID to be updated.Record IDOptional field. You may specify a record ID explicitly, otherwise, the process instance ID will be assumed.Environment Variable Name

Name of the environment variable to be used to keep the running number.

FormatDetermines the pattern of the generated value (e.g.,

"REF-?????"

will yield

จะให้ผลลัพธ์ "REF-00001")

 


Figure รูปที่ 2: ID Generator Tool Properties คุณสมบัติเครื่องมือตัวสร้าง ID 

ชื่อคำอธิบาย
NameDescription
Workflow Variable
The value generated can be saved into the corresponding workflow variable named here.

ค่าที่สร้างขึ้นสามารถบันทึกลงในตัวแปรลำดับงานที่สอดคล้องกันที่ชื่อที่นี่

Info
titleUsing a non-existent Workflow Variable name
You will get the following warning with the name printed out (e.g. status) in the server log if you attempt to map to a non-existent Workflow Variable.

คุณจะได้รับคำเตือนต่อไปนี้ด้วยชื่อที่พิมพ์ออกมา (เช่นสถานะ) ในล็อกเซิร์ฟเวอร์ถ้าคุณพยายามที่จะแมปไปยังตัวแปรลำดับงานที่ไม่มีอยู่

Code Block
context attribute status does not exist in process context - adding new attributes to the process context is not allowed

 

 

...