Difference between revisions of "Translations:Automate Update data/32/en"

From TaticView
Jump to: navigation, search
(Importing a new version from external source)
(Importing a new version from external source)
 
Line 1: Line 1:
'''@ECHO OFF'''
+
'''@ECHO OFF'''
  '''call C:\TaticView\tvcli -cmd import_file -user jonathan@sadig.com -file "C:\Users\jonathan\Documents\TaticView\Import Files\sales.xlsx" -datamart 674 -wait
+
  '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\sales.xlsx" -datamart 674 -wait
 
  '''if %errorlevel% == 0 (
 
  '''if %errorlevel% == 0 (
 
  '''echo SALES updated successfully!
 
  '''echo SALES updated successfully!
Line 6: Line 6:
 
  '''echo Problems updating SALES!
 
  '''echo Problems updating SALES!
 
  ''')
 
  ''')
  '''call C:\TaticView\tvcli -cmd import_file -user jonathan@sadig.com -file "C:\Users\jonathan\Documents\TaticView\Import Files\rh.xlsx" -datamart 673 -wait
+
  '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\hr.xlsx" -datamart 673 -wait
 
  '''if %errorlevel% == 0 (
 
  '''if %errorlevel% == 0 (
   '''echo RH updated successfully!
+
   '''echo HR updated successfully!
 
  ''') else (
 
  ''') else (
   '''echo Problems updating RH!
+
   '''echo Problems updating HR!
 
  ''')'''
 
  ''')'''

Latest revision as of 19:12, 16 July 2021

Information about message (contribute)

This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.

Message definition (Automate Update data)
 '''@ECHO OFF'''
 '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\sales.xlsx" -datamart 674 -wait
 '''if %errorlevel% == 0 (
  '''echo SALES updated successfully!
 ''') else (
  '''echo Problems updating SALES!
 ''')
 '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\hr.xlsx" -datamart 673 -wait
 '''if %errorlevel% == 0 (
   '''echo HR updated successfully!
 ''') else (
   '''echo Problems updating HR!
 ''')'''
Translation '''@ECHO OFF'''
 '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\sales.xlsx" -datamart 674 -wait
 '''if %errorlevel% == 0 (
  '''echo SALES updated successfully!
 ''') else (
  '''echo Problems updating SALES!
 ''')
 '''call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\hr.xlsx" -datamart 673 -wait
 '''if %errorlevel% == 0 (
   '''echo HR updated successfully!
 ''') else (
   '''echo Problems updating HR!
 ''')'''
@ECHO OFF
call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\sales.xlsx" -datamart 674 -wait
if %errorlevel% == 0 (
	echo SALES updated successfully!
) else (
	echo Problems updating SALES!
)
call C:\TaticView\tvcli -cmd import_file -user my@email.com -file "C:\TaticView\Import Files\hr.xlsx" -datamart 673 -wait
if %errorlevel% == 0 (
  	echo HR updated successfully!
) else (
  	echo Problems updating HR!
)