0:00:04 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 0:00:04 3 พฤษภาคม 2561 :try to logon with: GS1WS 0:00:04 3 พฤษภาคม 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:04 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 1:00:04 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 1:00:04 3 พฤษภาคม 2561 :try to logon with: GS1WS 1:00:04 3 พฤษภาคม 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:04 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 2:00:03 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 2:00:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 2:00:03 3 พฤษภาคม 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:03 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 3:00:07 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 3:00:07 3 พฤษภาคม 2561 :try to logon with: GS1WS 3:00:07 3 พฤษภาคม 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:07 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 4:00:07 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 4:00:07 3 พฤษภาคม 2561 :try to logon with: GS1WS 4:00:07 3 พฤษภาคม 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:07 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 5:00:06 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 5:00:06 3 พฤษภาคม 2561 :try to logon with: GS1WS 5:00:06 3 พฤษภาคม 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:06 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 6:00:03 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 6:00:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 6:00:03 3 พฤษภาคม 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:03 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 7:00:06 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 7:00:06 3 พฤษภาคม 2561 :try to logon with: GS1WS 7:00:06 3 พฤษภาคม 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:06 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 8:00:06 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 8:00:06 3 พฤษภาคม 2561 :try to logon with: GS1WS 8:00:06 3 พฤษภาคม 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:06 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:00:04 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:00:04 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:00:04 3 พฤษภาคม 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:04 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 9:16:11 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:16:11 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:21:10 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:21:10 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:21:41 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:21:41 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:23:44 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:23:44 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:24:16 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:24:16 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:26:51 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:26:51 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:28:23 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:28:23 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:30:33 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:30:33 3 พฤษภาคม 2561 :try to logon with: GS1WS 9:31:08 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 9:31:08 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:00:03 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:00:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:00:03 3 พฤษภาคม 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:03 3 พฤษภาคม 2561 :There is already an object named 'tempWsGs1_001' in the database. 10:05:52 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:05:52 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:09:36 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:09:36 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:16:28 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:16:28 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:16:58 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:16:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:17:53 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:17:53 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:18:18 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:18:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:30:48 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:30:48 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:31:31 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:31:31 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:31:52 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:31:52 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:32:07 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:32:07 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:32:21 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:32:21 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:32:36 3 พฤษภาคม 2561 :Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index 10:32:36 3 พฤษภาคม 2561 :try to logon with: GS1WS 10:48:02 3 พฤษภาคม 2561 :The server is not operational. 10:48:02 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:00:25 3 พฤษภาคม 2561 :The server is not operational. 11:00:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:03:21 3 พฤษภาคม 2561 :The server is not operational. 11:03:21 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:05:41 3 พฤษภาคม 2561 :The server is not operational. 11:05:41 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:07:42 3 พฤษภาคม 2561 :The server is not operational. 11:07:42 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:09:46 3 พฤษภาคม 2561 :The server is not operational. 11:09:46 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:10:00 3 พฤษภาคม 2561 :The server is not operational. 11:10:00 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:10:20 3 พฤษภาคม 2561 :The server is not operational. 11:10:20 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:11:02 3 พฤษภาคม 2561 :The server is not operational. 11:11:02 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:13:16 3 พฤษภาคม 2561 :The server is not operational. 11:13:16 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:14:53 3 พฤษภาคม 2561 :The server is not operational. 11:14:53 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:16:03 3 พฤษภาคม 2561 :The server is not operational. 11:16:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:16:47 3 พฤษภาคม 2561 :The server is not operational. 11:16:47 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:18:13 3 พฤษภาคม 2561 :The server is not operational. 11:18:13 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:18:24 3 พฤษภาคม 2561 :The server is not operational. 11:18:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:20:29 3 พฤษภาคม 2561 :The server is not operational. 11:20:29 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:21:19 3 พฤษภาคม 2561 :The server is not operational. 11:21:19 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:21:20 3 พฤษภาคม 2561 :The server is not operational. 11:21:20 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:21:58 3 พฤษภาคม 2561 :The server is not operational. 11:21:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:22:56 3 พฤษภาคม 2561 :The server is not operational. 11:22:56 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:26:31 3 พฤษภาคม 2561 :The server is not operational. 11:26:31 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:26:43 3 พฤษภาคม 2561 :The server is not operational. 11:26:43 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:27:52 3 พฤษภาคม 2561 :The server is not operational. 11:27:52 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:28:54 3 พฤษภาคม 2561 :The server is not operational. 11:28:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:29:25 3 พฤษภาคม 2561 :The server is not operational. 11:29:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:32:37 3 พฤษภาคม 2561 :The server is not operational. 11:32:37 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:35:29 3 พฤษภาคม 2561 :The server is not operational. 11:35:29 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:36:18 3 พฤษภาคม 2561 :The server is not operational. 11:36:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:36:58 3 พฤษภาคม 2561 :The server is not operational. 11:36:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:43:43 3 พฤษภาคม 2561 :The server is not operational. 11:43:43 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:44:07 3 พฤษภาคม 2561 :The server is not operational. 11:44:07 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:44:13 3 พฤษภาคม 2561 :The server is not operational. 11:44:13 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:47:58 3 พฤษภาคม 2561 :The server is not operational. 11:47:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:53:18 3 พฤษภาคม 2561 :The server is not operational. 11:53:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:53:26 3 พฤษภาคม 2561 :The server is not operational. 11:53:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:53:53 3 พฤษภาคม 2561 :The server is not operational. 11:53:53 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:56:03 3 พฤษภาคม 2561 :The server is not operational. 11:56:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 11:59:29 3 พฤษภาคม 2561 :The server is not operational. 11:59:29 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:00:24 3 พฤษภาคม 2561 :The server is not operational. 12:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:01:23 3 พฤษภาคม 2561 :The server is not operational. 12:01:23 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:36:54 3 พฤษภาคม 2561 :The server is not operational. 12:36:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:38:59 3 พฤษภาคม 2561 :The server is not operational. 12:38:59 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:40:06 3 พฤษภาคม 2561 :The server is not operational. 12:40:06 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:41:55 3 พฤษภาคม 2561 :The server is not operational. 12:41:55 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:53:09 3 พฤษภาคม 2561 :The server is not operational. 12:53:09 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:54:05 3 พฤษภาคม 2561 :The server is not operational. 12:54:05 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:56:26 3 พฤษภาคม 2561 :The server is not operational. 12:56:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 12:58:13 3 พฤษภาคม 2561 :The server is not operational. 12:58:13 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:00:33 3 พฤษภาคม 2561 :The server is not operational. 13:00:33 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:13:16 3 พฤษภาคม 2561 :The server is not operational. 13:13:16 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:13:35 3 พฤษภาคม 2561 :The server is not operational. 13:13:35 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:45:28 3 พฤษภาคม 2561 :The server is not operational. 13:45:28 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:46:30 3 พฤษภาคม 2561 :The server is not operational. 13:46:30 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:47:09 3 พฤษภาคม 2561 :The server is not operational. 13:47:09 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:48:03 3 พฤษภาคม 2561 :The server is not operational. 13:48:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:56:25 3 พฤษภาคม 2561 :The server is not operational. 13:56:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:58:10 3 พฤษภาคม 2561 :The server is not operational. 13:58:10 3 พฤษภาคม 2561 :try to logon with: GS1WS 13:59:24 3 พฤษภาคม 2561 :The server is not operational. 13:59:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:00:26 3 พฤษภาคม 2561 :The server is not operational. 14:00:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:00:30 3 พฤษภาคม 2561 :The server is not operational. 14:00:30 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:00:54 3 พฤษภาคม 2561 :The server is not operational. 14:00:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:01:20 3 พฤษภาคม 2561 :The server is not operational. 14:01:20 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:01:57 3 พฤษภาคม 2561 :The server is not operational. 14:01:57 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:02:01 3 พฤษภาคม 2561 :The server is not operational. 14:02:01 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:02:26 3 พฤษภาคม 2561 :The server is not operational. 14:02:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:02:49 3 พฤษภาคม 2561 :The server is not operational. 14:02:49 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:03:12 3 พฤษภาคม 2561 :The server is not operational. 14:03:12 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:03:35 3 พฤษภาคม 2561 :The server is not operational. 14:03:35 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:03:59 3 พฤษภาคม 2561 :The server is not operational. 14:03:59 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:04:41 3 พฤษภาคม 2561 :The server is not operational. 14:04:41 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:04:42 3 พฤษภาคม 2561 :The server is not operational. 14:04:42 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:05:07 3 พฤษภาคม 2561 :The server is not operational. 14:05:07 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:05:37 3 พฤษภาคม 2561 :The server is not operational. 14:05:37 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:07:18 3 พฤษภาคม 2561 :The server is not operational. 14:07:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:08:01 3 พฤษภาคม 2561 :The server is not operational. 14:08:01 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:08:22 3 พฤษภาคม 2561 :The server is not operational. 14:08:22 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:09:39 3 พฤษภาคม 2561 :The server is not operational. 14:09:39 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:11:46 3 พฤษภาคม 2561 :The server is not operational. 14:11:46 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:14:32 3 พฤษภาคม 2561 :The server is not operational. 14:14:32 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:15:03 3 พฤษภาคม 2561 :The server is not operational. 14:15:03 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:16:13 3 พฤษภาคม 2561 :The server is not operational. 14:16:13 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:29:58 3 พฤษภาคม 2561 :The server is not operational. 14:29:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:33:49 3 พฤษภาคม 2561 :The server is not operational. 14:33:49 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:50:04 3 พฤษภาคม 2561 :The server is not operational. 14:50:04 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:50:33 3 พฤษภาคม 2561 :The server is not operational. 14:50:33 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:52:55 3 พฤษภาคม 2561 :The server is not operational. 14:52:55 3 พฤษภาคม 2561 :try to logon with: GS1WS 14:54:54 3 พฤษภาคม 2561 :The server is not operational. 14:54:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:00:26 3 พฤษภาคม 2561 :The server is not operational. 15:00:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:22:25 3 พฤษภาคม 2561 :The server is not operational. 15:22:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:23:15 3 พฤษภาคม 2561 :The server is not operational. 15:23:15 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:26:20 3 พฤษภาคม 2561 :The server is not operational. 15:26:20 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:27:19 3 พฤษภาคม 2561 :The server is not operational. 15:27:19 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:28:30 3 พฤษภาคม 2561 :The server is not operational. 15:28:30 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:31:58 3 พฤษภาคม 2561 :The server is not operational. 15:31:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:32:21 3 พฤษภาคม 2561 :The server is not operational. 15:32:21 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:35:36 3 พฤษภาคม 2561 :The server is not operational. 15:35:36 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:42:31 3 พฤษภาคม 2561 :The server is not operational. 15:42:31 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:51:59 3 พฤษภาคม 2561 :The server is not operational. 15:51:59 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:52:40 3 พฤษภาคม 2561 :The server is not operational. 15:52:40 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:52:57 3 พฤษภาคม 2561 :The server is not operational. 15:52:57 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:54:18 3 พฤษภาคม 2561 :The server is not operational. 15:54:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 15:55:30 3 พฤษภาคม 2561 :The server is not operational. 15:55:30 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:00:24 3 พฤษภาคม 2561 :The server is not operational. 16:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:01:37 3 พฤษภาคม 2561 :The server is not operational. 16:01:37 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:13:40 3 พฤษภาคม 2561 :The server is not operational. 16:13:40 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:15:06 3 พฤษภาคม 2561 :The server is not operational. 16:15:06 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:33:19 3 พฤษภาคม 2561 :The server is not operational. 16:33:19 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:40:36 3 พฤษภาคม 2561 :The server is not operational. 16:40:36 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:47:29 3 พฤษภาคม 2561 :The server is not operational. 16:47:29 3 พฤษภาคม 2561 :try to logon with: GS1WS 16:57:34 3 พฤษภาคม 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 16:58:51 3 พฤษภาคม 2561 :Server was unable to process request. ---> Cannot open database "RDtmp" requested by the login. The login failed. 17:00:25 3 พฤษภาคม 2561 :The server is not operational. 17:00:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 17:00:26 3 พฤษภาคม 2561 :The server is not operational. 17:00:26 3 พฤษภาคม 2561 :try to logon with: GS1WS 17:00:54 3 พฤษภาคม 2561 :The server is not operational. 17:00:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 18:00:24 3 พฤษภาคม 2561 :The server is not operational. 18:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 18:34:37 3 พฤษภาคม 2561 :The server is not operational. 18:34:37 3 พฤษภาคม 2561 :try to logon with: GS1WS 18:46:14 3 พฤษภาคม 2561 :The server is not operational. 18:46:14 3 พฤษภาคม 2561 :try to logon with: GS1WS 19:00:25 3 พฤษภาคม 2561 :The server is not operational. 19:00:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 20:00:24 3 พฤษภาคม 2561 :The server is not operational. 20:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 21:00:25 3 พฤษภาคม 2561 :The server is not operational. 21:00:25 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:00:24 3 พฤษภาคม 2561 :The server is not operational. 22:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:09:43 3 พฤษภาคม 2561 :The server is not operational. 22:09:43 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:11:23 3 พฤษภาคม 2561 :The server is not operational. 22:11:23 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:13:49 3 พฤษภาคม 2561 :The server is not operational. 22:13:49 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:21:28 3 พฤษภาคม 2561 :The server is not operational. 22:21:28 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:22:21 3 พฤษภาคม 2561 :The server is not operational. 22:22:21 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:24:58 3 พฤษภาคม 2561 :The server is not operational. 22:24:58 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:32:22 3 พฤษภาคม 2561 :The server is not operational. 22:32:22 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:32:50 3 พฤษภาคม 2561 :The server is not operational. 22:32:50 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:35:12 3 พฤษภาคม 2561 :The server is not operational. 22:35:12 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:36:54 3 พฤษภาคม 2561 :The server is not operational. 22:36:54 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:38:18 3 พฤษภาคม 2561 :The server is not operational. 22:38:18 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:39:05 3 พฤษภาคม 2561 :The server is not operational. 22:39:05 3 พฤษภาคม 2561 :try to logon with: GS1WS 22:42:27 3 พฤษภาคม 2561 :The server is not operational. 22:42:27 3 พฤษภาคม 2561 :try to logon with: GS1WS 23:00:24 3 พฤษภาคม 2561 :The server is not operational. 23:00:24 3 พฤษภาคม 2561 :try to logon with: GS1WS