QuickBooks Integrator 2020 C++ Edition

Questions / Feedback?

PayPeriod Property

Payroll property: Indicates how often employees are paid.

Syntax

ANSI (Cross Platform)
int GetPayPeriod();
int SetPayPeriod(int iPayPeriod); Unicode (Windows) INT GetPayPeriod();
INT SetPayPeriod(INT iPayPeriod);

Possible Values

PP_NOT_SET(0), 
PP_DAILY(1),
PP_WEEKLY(2),
PP_BIWEEKLY(3),
PP_SEMIMONTHLY(4),
PP_MONTHLY(5),
PP_QUARTERLY(6),
PP_YEARLY(7)
@property (nonatomic,readwrite,assign,getter=payPeriod,setter=setPayPeriod:) int payPeriod;
- (int)payPeriod;
- (void)setPayPeriod:(int)newPayPeriod;

Possible Values

PP_NOT_SET(0), 
PP_DAILY(1),
PP_WEEKLY(2),
PP_BIWEEKLY(3),
PP_SEMIMONTHLY(4),
PP_MONTHLY(5),
PP_QUARTERLY(6),
PP_YEARLY(7)
#define PID_EMPLOYEE_PAYPERIOD 16

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

Default Value

0

Remarks

Indicates how often employees are paid. The default value is whatever the QuickBooks user has set in the QuickBooks Employee Preferences. This property is required for an Update request.

Data Type

Integer

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