Overview
Thetab_conceptos table stores all payroll concepts that can be applied to employee payroll. Each concept represents either an earning (devengado) or deduction (deducción) with specific calculation rules, payment periods, and legal requirements.
Table Definition
Column Reference
Unique identifier for each payroll concept (01-99). Primary key.
Name of the payroll concept. Must be at least 5 characters long.Constraint:
LENGTH(nom_concepto) >= 5Operation indicator:
TRUE: Addition (Devengado/Earning)FALSE: Subtraction (Deducción/Deduction)
Payment period indicator:
'Q': Quincenal (Bi-weekly)'M': Mensual (Monthly)
Indicates if this concept represents the net payment:
TRUE: This is the NETO PAGADO (net paid) conceptFALSE: Regular concept
Percentage value if the concept is calculated as a percentage of salary. Set to 0 if not applicable.Constraint:
val_porcent >= 0Examples:- EPS (Health): 4%
- AFP (Pension): 4%
- Overtime rates: 25%, 75%, 100%, 150%
Fixed value if the concept has a permanent fixed amount. Set to 0 if not applicable. Can be modified by users.Constraint:
val_fijo >= 0Example: “Bonificación por chismoso” = 100,000 COPLegal requirement indicator:
TRUE: Mandatory by Colombian lawFALSE: Optional/company-specific benefit
Constraints
Primary Key
- id_concepto: Unique concept identifier (2 digits)
Check Constraints
- nom_concepto: Minimum 5 characters
- ind_perio_pago: Must be ‘Q’ (quincenal) or ‘M’ (mensual)
- val_porcent: Must be >= 0
- val_fijo: Must be >= 0
Default Values
- ind_perio_pago: ‘Q’ (quincenal)
- neto_pagado: FALSE
Sample Data
The table includes various types of payroll concepts:Mandatory Earnings (Devengados Obligatorios)
Mandatory Deductions (Deducciones Obligatorias)
Net Payment Concept
Optional Earnings (Devengados No Obligatorios)
Optional Deductions
Concept Types
By Operation
| Type | ind_operacion | Description |
|---|---|---|
| Devengado (Earning) | TRUE | Adds to total salary |
| Deducción (Deduction) | FALSE | Subtracts from salary |
By Payment Period
| Period | ind_perio_pago | Frequency |
|---|---|---|
| Quincenal | Q | Bi-weekly (every 15 days) |
| Mensual | M | Monthly |
By Legal Status
| Status | ind_legal | Description |
|---|---|---|
| Obligatorio | TRUE | Required by Colombian labor law |
| No Obligatorio | FALSE | Optional company benefit |
Colombian Overtime Rates
The system includes standard Colombian overtime percentages:| Concept | Percentage | Description |
|---|---|---|
| Horas Extras Diurnas | 25% | Daytime overtime |
| Horas Extras Nocturna | 75% | Nighttime overtime |
| Horas Extras Festivas Diurnas | 100% | Holiday daytime overtime |
| Horas Extras Festivas Nocturnas | 150% | Holiday nighttime overtime |
Usage Examples
Query All Earnings
Query Mandatory Monthly Concepts
Query Percentage-Based Concepts
Related Tables
- tab_pmtros: References concepts for salary (id_concep_sb) and transport (id_concep_at)
- tab_novedades: Links concepts to employee novelties
- tab_nomina: Links concepts to final payroll calculations
Notes
The EPS and AFP deductions (4% each) are mandatory monthly contributions required by Colombian labor law.
Overtime percentages are calculated as additional payment on top of the base hourly rate. For example, 25% overtime means the worker receives 125% of their normal hourly rate.