Search found 7 matches

by NvM
Tue Aug 19, 2014 1:13 pm
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

Maybe I could give you an SQL-Statement, which creates the table structure. Other thing to know is, that every system here is working with english versions. But this - in combination with german region settings - should not make trouble, right?
by NvM
Tue Aug 19, 2014 11:05 am
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

I made a test with your SQL-statment. The only thing is changed is one more "(" and ")": Your source: SELECT Belegnummer, Belegart FROM KHKVKBelege WHERE (Periode = 2014006) AND ((Belegart = 'Sofortrechnung' OR Belegart = 'Direktrechnung' OR Belegart = 'Rechnung')) My source: SEL...
by NvM
Tue Aug 19, 2014 8:49 am
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

To copy fields does not work well in Management Studio:

Code: Select all

Periode	int	Checked
Belegart	varchar(50)	Checked
by NvM
Mon Aug 18, 2014 3:02 pm
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

Thanks for your help. Here are the fields and datatypes for KHKVKBelege: Mandant smallint Unchecked TransferID int Unchecked Transferart varchar(40) Unchecked BelID int Checked Belegtyp smallint Checked Zeitpunkt datetime Checked Information text Checked Dateiinhalt text Checked Parameter text Check...
by NvM
Mon Aug 18, 2014 11:24 am
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

In Management Studio (2008 R2) everything works well. The statement is correct (field value "2014006 is correct).
by NvM
Mon Aug 18, 2014 10:43 am
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

Re: SQL

;***************************** ;* RoboTask Task file ;* Do not edit in text editor! ;***************************** [Root] ActionAfterRun=INTEGER|0 Actions=FOLDER Automat=INTEGER|-1 CatID=INTEGER|0 Comment=STRINGLIST ContinueOnError=INTEGER|0 ExternalName=STRING|"Task3" Hide=INTEGER|0 ID=I...
by NvM
Mon Aug 18, 2014 9:36 am
Forum: General Discussion
Topic: SQL
Replies: 13
Views: 47123

SQL

Hello together, I want to use SQL-Statements in my RoboTasks. It seems to be a problem, if I use statements with some where-clauses. This version for example works: SELECT Belegnummer, Belegart FROM KHKVKBelege WHERE (Belegart = 'Sofortrechnung' OR Belegart = 'Direktrechnung' OR Belegart = 'Rechnung...