0:00:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:00:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 0:00:54 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 0:00:54 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 0:35:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:35:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 0:46:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:46:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 1:00:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 1:00:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 1:00:48 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 1:00:48 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 2:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 2:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 2:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 2:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 3:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 3:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 3:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 3:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 3:03:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 3:03:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 4:00:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 4:00:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 4:00:51 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 4:00:51 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 5:00:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 5:00:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 5:00:52 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 5:00:52 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 6:00:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 6:00:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 6:00:51 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 6:00:51 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 7:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 7:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 7:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 7:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:00:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:00:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:00:54 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 8:00:54 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:08:40 20 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 8:12:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:12:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:16:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:16:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:19:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:19:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:22:21 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:22:21 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:24:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:24:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:27:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:27:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:30:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:30:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:36:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:36:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:09 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:09 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:09 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:09 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:37:09 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:37:09 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:49:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:49:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:52:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:52:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:54:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:54:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:56:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:56:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 8:58:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:58:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:00:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:00:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:00:46 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 9:00:46 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:01:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:01:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:41:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:41:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:50:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:50:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:52:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:52:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:53:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:53:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 9:57:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:57:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:00:50 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 10:00:50 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 10:21:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:21:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:24:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:24:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:26:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:26:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:26:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:26:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 10:42:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:42:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 11:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 11:07:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:07:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:28:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:28:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:34:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:34:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:41:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:41:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:42:09 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:42:09 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:42:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:42:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:43:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:43:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:44:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:44:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:45:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:45:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:46:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:46:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:47:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:47:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:49:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:49:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 11:56:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 11:56:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:00:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:00:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 12:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 12:04:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:04:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:10:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:10:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:11:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:11:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:16:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:16:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:17:40 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:17:40 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:24:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:24:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:25:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:25:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:26:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:26:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 12:27:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 12:27:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:00:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:00:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:00:53 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 13:00:53 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 13:10:17 20 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 13:29:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:29:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:31:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:31:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:34:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:34:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:37:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:37:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:39:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:39:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:41:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:41:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:43:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:43:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:45:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:45:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:46:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:46:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:47:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:47:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:48:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:48:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:50:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:50:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:51:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:51:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:54:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:54:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:55:10 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:55:10 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:55:40 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:55:40 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:55:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:55:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:56:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:56:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:10 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:10 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 13:57:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 13:57:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:00:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:00:49 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 14:00:49 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 14:01:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:01:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:03:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:03:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:04:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:04:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:05:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:05:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:06:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:06:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:08:56 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:08:56 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:12:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:12:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:12:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:12:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:14:40 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:14:40 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:15:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:15:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:19:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:19:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:28:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:28:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:29:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:29:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:31:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:31:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:32:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:32:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:35:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:35:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:44:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:44:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:50:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:50:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:53:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:53:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:55:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:55:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:57:35 20 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 14:58:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:58:31 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:31 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:58:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:58:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:58:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:58:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 14:59:54 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 14:59:54 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:00:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:00:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:00:46 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 15:00:46 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 15:00:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:00:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:01:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:01:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:03:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:03:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:06:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:06:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:08:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:08:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:11:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:11:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:12:29 20 กุมภาพันธ์ 2561 :There was no endpoint listening at https://rdws.rd.go.th/serviceRD3/vatserviceRD3.asmx that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details. 15:13:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:13:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:16:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:16:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:17:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:17:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:18:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:18:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:19:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:19:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:23:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:23:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:35:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:35:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:37:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:37:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:37:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:37:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:37:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:37:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:37:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:37:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:42:12 20 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:42:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:42:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:44:48 20 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:46:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:46:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:49:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:49:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:52:00 20 กุมภาพันธ์ 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 15:56:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:56:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:58:00 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:58:00 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:59:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:59:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 15:59:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 15:59:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 16:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 16:04:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:04:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:07:53 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:07:53 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:10:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:10:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:12:19 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:12:19 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:12:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:12:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:03 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:03 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:04 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:04 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:05 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:05 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:06 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:06 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:17:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:17:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:19:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:19:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:21:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:21:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:29 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:29 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:25:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:25:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:33 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:33 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:35 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:35 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:36 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:36 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:37 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:37 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:38 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:38 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:39 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:39 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:40 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:40 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:40 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:40 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:41 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:41 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:42 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:42 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:31:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:31:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:33:28 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:33:28 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:40:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:40:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:45:30 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:45:30 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:47:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:47:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:47:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:47:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:48:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:48:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:49 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:49 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:49:51 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:49:51 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:44 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:44 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:45 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:45 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:51:48 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:51:48 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:52:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:52:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:56:11 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:56:11 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:23 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:23 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:24 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:24 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:25 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:25 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 16:57:26 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 16:57:26 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 17:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 17:00:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:00:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:12 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:12 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:13 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:13 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:14 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:14 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:15 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:15 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:16 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:16 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:04:18 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:04:18 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:05:43 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:05:43 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:13:55 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:13:55 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 17:14:52 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 17:14:52 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:00:47 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:00:47 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:00:47 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 18:00:47 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 18:03:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:03:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:05:17 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:05:17 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:06:02 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:06:02 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 18:42:20 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 18:42:20 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:50 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:00:50 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:00:50 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 19:00:50 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 19:45:08 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:45:08 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:48:57 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:48:57 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:50:27 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:50:27 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:51:58 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:51:58 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 19:54:32 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 19:54:32 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:00:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:00:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:00:46 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 20:00:46 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 20:07:01 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:07:01 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:08:07 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:08:07 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:08:34 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:08:34 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 20:08:59 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 20:08:59 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 21:00:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 21:00:46 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 21:00:46 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 23:00:46 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:00:46 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS 23:00:46 20 กุมภาพันธ์ 2561 :getGS1changed=/*SELECT MB_MEMBER.MEMBER_CODE, MB_PRENAME.PRENAME_TH, MB_COMP_PERSON.COMP_PERSON_NAME_TH, MB_PRENAME.PRENAME_EN, MB_COMP_PERSON.COMP_PERSON_NAME_EN, MB_COMP_PERSON.TAX_ID, MB_MEMBER.REGIST_DATE, MB_MEMBER.MEMBER_MAIN_TYPE_CODE, MB_MEMBER.MEMBER_TYPE_CODE, MB_MEMBER.MEMBER_STATUS_CODE, MB_MEMBER_RETIRE.APPROVE_DATE FROM MB_MEMBER INNER JOIN MB_COMP_PERSON ON MB_MEMBER.COMP_PERSON_CODE = MB_COMP_PERSON.COMP_PERSON_CODE INNER JOIN MB_MEMBER_RETIRE ON MB_MEMBER.REGIST_CODE = MB_MEMBER_RETIRE.REGIST_CODE LEFT OUTER JOIN MB_PRENAME ON MB_COMP_PERSON.PREN_CODE = MB_PRENAME.PRENAME_CODE WHERE (MB_MEMBER.MEMBER_MAIN_GROUP_CODE = '300') AND (MB_MEMBER_RETIRE.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) ORDER BY MB_MEMBER_RETIRE.APPROVE_DATE*/ --declare @YYYYMMDD_FROM varchar(max) = '20171101' --declare @YYYYMMDD_TO varchar(max) = '20171201' create table tempWsGs1_001 ( id int, tax_id varchar(max) ) create table tempWsGs1_002 ( MEMBER_CODE varchar(max) , TAX_ID varchar(max) , BDB_CODE varchar(max) , MEMBER_MAIN_TYPE_CODE varchar(max) , MEMBER_MAIN_TYPE_NAME varchar(max) , MEMBER_TYPE_CODE varchar(max) , MEMBER_TYPE_NAME varchar(max) , BUSSINESS_TYPE_TH varchar(max) , BUSSINESS_TYPE_EN varchar(max) , PRENAME_TH varchar(max) , COMP_PERSON_NAME_TH varchar(max) , PRENAME_EN varchar(max) , COMP_PERSON_NAME_EN varchar(max) , ADDR_TH varchar(max) , ADDR_EN varchar(max) , ZIP_CODE_TH varchar(max) , ZIP_CODE_EN varchar(max) , TELEPHONE_TH varchar(max) , TELEPHONE_EN varchar(max) , EMAIL_TH varchar(max) , EMAIL_EN varchar(max) , STATUS varchar(max) , REGIST_DATE varchar(max) , MEMBER_DATE varchar(max) , UPDATE_DATE varchar(max) , CompanyPrefix varchar(max) ) insert into tempWsGs1_001 select distinct ROW_NUMBER() over (order by r.approve_date) as id, c.TAX_ID as tax_id from MB_MEMBER m,MB_COMP_PERSON c,MB_MEMBER_RETIRE r where r.REGIST_CODE=m.REGIST_CODE and m.MEMBER_MAIN_GROUP_CODE='300' and m.COMP_PERSON_CODE=c.COMP_PERSON_CODE AND (r.APPROVE_DATE BETWEEN dbo.fnc_StrToDateTime(@YYYYMMDD_FROM + '000000') AND dbo.fnc_StrToDateTime(@YYYYMMDD_TO + '235959')) declare @id int declare @totalRows int = (select count(*) from tempWsGs1_001) declare @currentRow int = 0 declare @BussinessTypeTH VARCHAR(max) declare @BussinessTypeEN VARCHAR(max) while @currentRow < @totalRows begin set @id = @currentRow+1 declare @TAX_ID varchar(max) set @TAX_ID = (select top 1 tax_id from tempWsGs1_001 where id=@id) insert into tempWsGs1_002 select * from fnc_GetGS1MemberInfoForWebServiceByTaxID(@TAX_ID) set @currentRow = @currentRow +1 end drop table tempWsGs1_001 select * from tempWsGs1_002 drop table tempWsGs1_002 23:00:46 20 กุมภาพันธ์ 2561 :There is already an object named 'tempWsGs1_001' in the database. 23:52:22 20 กุมภาพันธ์ 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 23:52:22 20 กุมภาพันธ์ 2561 :try to logon with: GS1WS