QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

Adjustment Property

Indicates whether this Journal Entry is an adjustment or not.

Syntax

ANSI (Cross Platform)
int GetAdjustment();
int SetAdjustment(int iAdjustment); Unicode (Windows) INT GetAdjustment();
INT SetAdjustment(INT iAdjustment);

Possible Values

JEA_NOT_SET(0), 
JEA_IS_ADJUSTMENT(1),
JEA_IS_NOT_ADJUSTMENT(2)
@property (nonatomic,readwrite,assign,getter=adjustment,setter=setAdjustment:) int adjustment;
- (int)adjustment;
- (void)setAdjustment:(int)newAdjustment;

Possible Values

JEA_NOT_SET(0), 
JEA_IS_ADJUSTMENT(1),
JEA_IS_NOT_ADJUSTMENT(2)
#define PID_JOURNALENTRY_ADJUSTMENT 1

INQB_EXTERNAL void* INQB_CALL InQB_JournalEntry_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INQB_EXTERNAL int INQB_CALL InQB_JournalEntry_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

When a change is an "adjustment," the original information is retained, usually so an accountant can see the effects of the adjustment. The use of this property requires QBXMLVersion to be 3.0 or greater.

Data Type

Integer

Copyright (c) 2021 /n software inc. - All rights reserved.
QuickBooks Integrator 2020 C++ Edition - Version 20.0 [Build 7941]