끄적끄적

고정 헤더 영역

글 제목

메뉴 레이어

끄적끄적

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (55)
    • IT (55)
      • 머신러닝 (5)
      • SAP(ABAP) (6)
      • RPA(UiPath) (34)
      • 논문리뷰 (2)
      • 기타 (5)
      • python (1)
      • Salesforce (2)
    • 일상 (0)
      • 기타 (0)

검색 레이어

끄적끄적

검색 영역

컨텐츠 검색

UiPath

  • [RPA] DataTable 관련 함수

    2021.04.29 by Adonis_

  • [RPA] Data table 분할

    2021.04.22 by Adonis_

  • [RPA] UiPath studio / Assistant 설치 (20.10 버전)

    2020.12.22 by Adonis_

  • [RPA] DB Connection

    2019.12.26 by Adonis_

  • [RPA] Orchestrator - Non Working Days 판단

    2019.12.13 by Adonis_

  • [RPA] Get Job Activity 에러처리

    2019.12.05 by Adonis_

  • [RPA] Studio X란?

    2019.11.21 by Adonis_

  • [RPA] 날짜함수

    2019.11.04 by Adonis_

[RPA] DataTable 관련 함수

1. 컬럼값 중복제거 후 호출 dtData = dtData.DefaultView.ToTable(True, "col name") true : 중복제거, false : 해당 컬럼값만 호출 2. data table 특정 열 -> array 변환 arr = (From row In dtData.AsEnumerable() Select Convert.Tostring(row("col name"))).ToArray 3. Data Table Column명 (From row in MyDT.Columns.Cast(of DataColumn) Select row.ColumnName ).ToArray 4. Data Table에서 특정값으로 시작하는 Column Index (From row in MyDT.Columns.Cast(of..

IT/RPA(UiPath) 2021. 4. 29. 11:03

[RPA] Data table 분할

목표 원하는 크기만큼 dataTable 분리하기 Variables dtInput : 분할대상 테이블 unit : 테이블 분할 단위 arrDataTable : 분할된 데이터 테이블을 할당할 배열 ※ 방법1 ① arrDataTable 생성 - if condition : dtInput.Rows.Count mod unit = 0 - True : arrDataTable = new DataTable(dtInput.Rows.Count \ unit-1){} - False : arrDataTable = new DataTable(dtInput.Rows.Count \ unit){} ② 데이터 분할 (dtTemp) dtTemp = dtInput.AsEnumerable.Skip(unit*idx).Take(unit).CopyTo..

IT/RPA(UiPath) 2021. 4. 22. 01:30

[RPA] UiPath studio / Assistant 설치 (20.10 버전)

Studio설치 -v20.10.2 : download.uipath.com/versions/20.10.2/UiPathStudio.msi -v20. 4.3 : download.uipath.com/versions/20.4.3/UiPathStudio.msi 설치했는데도 불구하고 Assistant가 안보일때 C:\Program Files (x86)\UiPath\Studio\UiPathAssistant\UiPath.Assistant.exe 실행 Studio 최초 실행 시 License정보 기입하면 Assistant, BOT 자동 연결됩니다. 혹시 연결안되시는 분들은 아래 내용 참고하시기 바랍니다. Assistant - Orchestrator 연동 Assistant > 상단 Preferences > Orchestra..

IT/RPA(UiPath) 2020. 12. 22. 13:26

[RPA] DB Connection

설치파일 1. MS SQL Server step1. MS SQL Server 다운로드 https://www.microsoft.com/en-us/sql-server/sql-server-downloads SQL Server Downloads | Microsoft Get started with Microsoft SQL Server downloads. Choose a SQL Server trial, edition, tool, or connector that best meets your data and workload needs. www.microsoft.com step2. Developer 버전 다운로드 - 설치유형 : 기본(B) - 인스턴스 이름 : Server=localhost; Database=master..

IT/RPA(UiPath) 2019. 12. 26. 16:51

[RPA] Orchestrator - Non Working Days 판단

목표 Studio에서 Orchestrator Non Working Days 정보 호출하기 변수 선언 변수명 타입 response String JObj JObject AccessToken String Orchestrator - Non-Working Days 설정 Setting > Non-Working Days 탭에서 저장하며, tenant 단위로 구분됨 1. Access tocken 요청 1.1 HTTP Request [ HTTP Request Activity ] EndPoint : Orchestrator주소/api/accont/authenticate 예 ) "https://demo.uipath.com/api/account/authenticate" Method : POST BodyFormat : appli..

IT/RPA(UiPath) 2019. 12. 13. 16:26

[RPA] Get Job Activity 에러처리

Error message : Get Jobs: Operation returned an invalid status code 'Forbidden' Orchestrator에서 Robot Role에 Jobs, Processes, Environment의 View role이 있는지 확인 후 없으면 update 하고 재시도 https://docs.uipath.com/activities/docs/get-jobs Get Jobs `UiPath.Core.Activities.GetJobs` Retrieves a list of Orchestrator jobs according to a custom filter, using the Orchestrator API. You can also specify the number of j..

IT/RPA(UiPath) 2019. 12. 5. 09:06

[RPA] Studio X란?

Studio X란? - Studio가 RPA Devs를 위한것이라면, Stduio X는 현업용으로 개발된 툴 - Studio의 activity가 660~670개 정도지만 Studio X는 60개의 Acitivity로 MS호환 기능이 다수 포진되어 있다. - 아래 이미지를 참고하자면 복잡성 있는 공통 반복 업무는 개발자가 개발하며, Bot이 수행한 결과를 현업이 받아서 단순반복 업무를 해소하고자 Studio X를 사용한다. Studio에서 Studio X로 변경하는 방법 Settings > License and Profile > View or Change Profile (Community 10.1버전) Studio와 Studio X 구현 예시 엑셀의 데이터를 하나씩 출력하고자함 엑셀데이터 Studio X ..

IT/RPA(UiPath) 2019. 11. 21. 15:10

[RPA] 날짜함수

1. 날짜표현 입력값 출력값 System.DateTime.Now.ToString 11/04/2019 14:45:26 System.DateTime.Now.ToString("yyyy-MM-dd hh:mm:ss") 2019-11-04 02:46:17 System.DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") 2019-11-04 14:46:42 DateTime.Parse(now.ToString).ToString("D",new CultureInfo("ko")) 2019년 11월 4일 월요일 now.ToString("yyyy년 MM월 dd일 ddd") 2019년 11월 04일 Mon now.ToString("yyyy년 MM월 dd일 dddd") 2019년 11월 04일 Monday..

IT/RPA(UiPath) 2019. 11. 4. 14:47

추가 정보

인기글

최신글

페이징

이전
1 2
다음
TISTORY
끄적끄적 © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바