QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

ItemManuallyClosed Property

Indicates if the line item has been manually closed.

Syntax

ANSI (Cross Platform)
int GetItemManuallyClosed(int iItemIndex);
int SetItemManuallyClosed(int iItemIndex, int iItemManuallyClosed); Unicode (Windows) INT GetItemManuallyClosed(INT iItemIndex);
INT SetItemManuallyClosed(INT iItemIndex, INT iItemManuallyClosed);

Possible Values

MC_NOT_SET(0), 
MC_MANUALLY_CLOSED(1),
MC_NOT_MANUALLY_CLOSED(2)
- (int)itemManuallyClosed:(int)itemIndex;
- (void)setItemManuallyClosed:(int)itemIndex:(int)newItemManuallyClosed;

Possible Values

MC_NOT_SET(0), 
MC_MANUALLY_CLOSED(1),
MC_NOT_MANUALLY_CLOSED(2)
#define PID_PURCHASEORDER_ITEMMANUALLYCLOSED 19

INQB_EXTERNAL void* INQB_CALL InQB_PurchaseOrder_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
INQB_EXTERNAL int INQB_CALL InQB_PurchaseOrder_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);
INQB_EXTERNAL int INQB_CALL InQB_PurchaseOrder_CheckIndex(void *lpObj, int propid, int arridx);

Default Value

0

Remarks

Indicates if the line item has been manually closed.

If ItemManuallyClosed is mcManuallyClosed, the purchase order line has been closed, even if this item has not been received or its sale canceled. If all the purchase order lines are marked as closed, the purchase order itself is marked as closed as well. You cannot change ItemManuallyClosed to mcNotManuallyClosed after the purchase order line has been fully received. If set to mcNotSet the field is not sent in the request.

Only applicable to Update transactions.

The ItemIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ItemCount property.

This property is not available at design time.

Data Type

Integer

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