jen
06/25/2021, 11:48 PMjen
06/25/2021, 11:48 PMAndrew
06/26/2021, 1:44 AMSELECT ACCOUNT.id AS acct_id,
ACCOUNT.acctnumber AS acct_code,
SUM(TransactionAccountingLine.netamount) AS acct_balance
FROM TRANSACTION,
ACCOUNT,
TransactionAccountingLine,
transactionLine
WHERE TransactionAccountingLine.ACCOUNT = ACCOUNT.ID(+)
AND transactionLine.TRANSACTION = TransactionAccountingLine.TRANSACTION
AND transactionLine.ID = TransactionAccountingLine.transactionline
AND TRUNC(TRANSACTION.trandate) <= TO_DATE('2021-01-31', 'YYYY-MM-DD')
AND TRANSACTION.ID = transactionLine.TRANSACTION
AND ACCOUNT.isinactive = 'F'
AND TRANSACTION.posting = 'T'
AND ACCOUNT.ID IS NOT NULL
AND ACCOUNT.issummary = 'F'
GROUP BY (ACCOUNT.id, ACCOUNT.acctnumber)
Anthony (NimbusLabs)
06/26/2021, 3:26 PMAlan Fitch
06/27/2021, 7:49 AMUNION ALL
on the same statement . Do I have to perform the whole query again? Can I alias it somehow?tdietrich
06/27/2021, 9:44 AMSELECT
BUILTIN.DF( Status ) AS StatusName,
COUNT( * ) AS TransactionCount,
SUM( ForeignTotal ) AS TotalAmount
FROM
Transaction
WHERE
( Type = 'SalesOrd' )
GROUP BY
ROLLUP( BUILTIN.DF( Status ) )
The result is a summary row appended to the result set, and looks like this.Diogo
07/01/2021, 2:53 PMKevin McKee
07/01/2021, 9:54 PMKevin McKee
07/01/2021, 9:59 PMSELECT
Transaction.TranID,
Transaction.TranDate AS date,
Transaction.duedate AS due_date,
Transaction.foreigntotal as total,
Transaction.foreignamountunpaid AS amount_paid,
Transaction.foreignamountpaid AS remaining_balance,
BUILTIN.DF( Transaction.Status ) AS Status,
FROM
Transaction
INNER JOIN Entity ON
( Entity.ID = Transaction.Entity )
WHERE
Transaction.Type = 'CustInvc' AND Entity.Id = 23268
Kevin McKee
07/01/2021, 10:05 PMKevin McKee
07/01/2021, 10:06 PMKevin McKee
07/01/2021, 10:06 PMAlan Fitch
07/02/2021, 1:29 PMSimon
07/02/2021, 2:30 PMSimon
07/02/2021, 2:42 PMSimon
07/02/2021, 3:24 PMSimon
07/06/2021, 12:57 PMAndrew
07/07/2021, 11:21 AMLoïc Beaujean
07/08/2021, 12:26 PMSimon
07/09/2021, 1:16 PMSimon
07/09/2021, 5:33 PMAaron Lozier
07/13/2021, 4:09 PM{
"custentity_date_field": "7/13/2021 11:00:00"
}
Returns the error:
Unable to parse value '7/13/2021 11:00:00' (String) from the DateTime,ZonedDateTime field (custentity_date_field).
I have tried several different formats...michoel
07/13/2021, 11:49 PMSimon
07/14/2021, 12:25 AMSimon
07/14/2021, 2:44 AMmichoel
07/14/2021, 3:13 AMtransactionline.mainline = 'T'
instead of grouping?Alan Fitch
07/14/2021, 3:46 AMSELECT * FROM (SELECT tranid FROM transaction where type='SalesOrd' group by tranid) ORDER BY tranid
Diogo
07/15/2021, 10:56 AMSELECT * FROM Item WHERE Subsidiary = '1'
I get an empty response. And I have items associated with the Subsidiary Id 1.
Am I missing something?XochisSketches
07/15/2021, 2:58 PMDiogo
07/15/2021, 4:04 PM