Friday, November 7, 2025

Infor SyteLine (CSI) customize Custom Assembly

 

if you are looking for script to test run Infor CSI Custom Assembly you can use below code.


using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using Mongoose.IDO;

using Mongoose.IDO.Protocol;

using System.Globalization;


namespace CODE

{

    [IDOExtensionClass("CODE_People")]


    class CODE_People : ExtensionClassBase

    {

       [IDOMethod(MethodFlags.None, "Infobar")]

        public int GetAge(DateTime reference, DateTime birthday, ref int age, ref string Infobar)

        {

             age = reference.Year - birthday.Year;

            if (reference < birthday.AddYears(age))

                age--;


            Infobar = "คำนวณสำเร็จ";

            return 0;

        }

    }

}


Wednesday, November 5, 2025

Infor CSI: Infor Cloud Printing with Infor Document Management

 

if you found error same like me . you have to go to SyteLine -> Group-> assign permission.

ping me i you need any help. by KM X TEN.


***** Error [11/6/2025 1:22:38 AM] *****

Report [ue_KM_JobJumboTagViewer] could not be saved to print server [MG_IDM_PRINT_SERVER], Error: Invalid logical folder or missing required access permission for user [dev.5@kmmt.co.th] and logical folder [MONGOOSE_ENTERPRISEPRINT]





Sunday, October 26, 2025

ตัวอย่างเอกสาร ยืนยัน เสียอากร เพื่อให้สัญญาสมบูรณ์ทางกฏหมาย


ผมแนบไว้ให้จะได้เตรียมเงินกันได้ถูก และ จะได้ไม่เสียเวลา ก่อนจะมาถึงขึ้นนี้ได้เราต้องเตรียมเอกสารสัญญา และ ทั้งผู้จ้างและผู้ว่าจ้างจะต้องลงนามในสัญญาให้เรียบร้อย   ข้อควรคำนึงให้ดีคือ วันที่สัญญาจะต้องไม่ย้อนหลังเกิน 15 วันไม่งั้นจะโดยเบี้ยปรับ




Thursday, October 2, 2025

Infor CSI Custom Assembly - IDO Extension Class with a Custom As...


คลิปนี้สอนดี   ตั้งแต่เริ่มไปจนถึง import และ ที่สำคัญเน้นตรงไปสร้าง IDO เพราะบางที่เราลืมเลือก และ ป้อน IDO Extend Class and Name Space. Infor CSI Custom Assembly . 

Infor SyteLine (CSI) customize Custom Assembly

  if you are looking for script to test run Infor CSI Custom Assembly you can use below code. using System; using System.Collections.Generic...