View source | Discuss this page | Page history | Printable version   

ERP/3.0/Developers Guide/Reference/Entity Model/RequestProcessor

RequestProcessor

The Request Processor Tab allows you to define processes that you want to occur and the frequency and timing of these processes. If no other user is found, the items are assigned to the supervisor.

To the database table (R_RequestProcessor) of this entity.

Back to the entity model.

Properties

Note:

Property Column Constraints Type Description
id* R_RequestProcessor_ID Mandatory
Max Length: 32
java.lang.String
client AD_Client_ID Mandatory ADClient A Client is a company or a legal entity. You cannot share data between Clients.
organization AD_Org_ID Mandatory Organization An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.
active IsActive Mandatory java.lang.Boolean There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reporting. There are two reasons for de-activating and not deleting records:

(1) The system requires the record for auditing purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are existing invoices for it. By de-activating the Business Partner you prevent it from being used in future transactions.

creationDate Created Mandatory java.util.Date The Created field indicates the date that this record was created.
createdBy CreatedBy Mandatory ADUser The Created By field indicates the user who created this record.
updated Updated Mandatory java.util.Date The Updated field indicates the date that this record was updated.
updatedBy UpdatedBy Mandatory ADUser The Updated By field indicates the user who updated this record.
name# Name Mandatory
Max Length: 60
java.lang.String A more descriptive identifier (that does need to be unique) of a record/document that is used as a default search option along with the search key (that is unique and mostly shorter). It is up to 60 characters in length.
description Description Max Length: 255 java.lang.String A description is limited to 255 characters.
frequency Frequency Mandatory java.lang.Long The frequency is used in conjunction with the frequency type in determining an event. Example: If the Frequency Type is Week and the Frequency is 2 - it is every two weeks.
frequencyType FrequencyType Mandatory
Max Length: 60
java.lang.String The frequency type is used for calculating the date of the next event.
lastRunDate DateLastRun java.util.Date The Date Last Run indicates the last time that a process was run.
dateNextRun DateNextRun java.util.Date The Date Next Run indicates the next time this process will run.
processNow Processing java.lang.Boolean When this field is set as 'Y' a process is being performed on this record.
alertAfterDaysOverdue OverdueAlertDays Mandatory java.lang.Long Send an email alert after the item is overdue. If set to zero, no alert is sent.
escalateAfterDaysOverdue OverdueAssignDays Mandatory java.lang.Long The item will be escalated and assigned to the supervisor after the number of days overdue.
supervisor Supervisor_ID Mandatory ADUser The Supervisor indicates who will be used for forwarding and escalating issues for this user.
requestProcessorRouteList List of RequestProcessorRoute

Java Entity Class

 
/*
 *************************************************************************
 * The contents of this file are subject to the Openbravo  Public  License
 * Version  1.1  (the  "License"),  being   the  Mozilla   Public  License
 * Version 1.1  with a permitted attribution clause; you may not  use this
 * file except in compliance with the License. You  may  obtain  a copy of
 * the License at http://www.openbravo.com/legal/license.html
 * Software distributed under the License  is  distributed  on  an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific  language  governing  rights  and  limitations
 * under the License.
 * The Original Code is Openbravo ERP.
 * The Initial Developer of the Original Code is Openbravo SLU
 * All portions are Copyright (C) 2008-2010 Openbravo SLU
 * All Rights Reserved.
 * Contributor(s):  ______________________________________.
 ************************************************************************
*/
package org.openbravo.model.common.interaction;
 
import org.openbravo.base.structure.ActiveEnabled;
import org.openbravo.base.structure.BaseOBObject;
import org.openbravo.base.structure.ClientEnabled;
import org.openbravo.base.structure.OrganizationEnabled;
import org.openbravo.base.structure.Traceable;
import org.openbravo.model.ad.access.User;
import org.openbravo.model.ad.system.Client;
import org.openbravo.model.common.enterprise.Organization;
 
import java.lang.Boolean;
import java.lang.Long;
import java.lang.String;
 
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * Entity class for entity RequestProcessor (stored in table R_RequestProcessor).
 *
 * NOTE: This class should not be instantiated directly. To instantiate this
 * class the {@link org.openbravo.base.provider.OBProvider} should be used.
 */
public class RequestProcessor extends BaseOBObject implements Traceable,
    ClientEnabled, OrganizationEnabled, ActiveEnabled {
    private static final long serialVersionUID = 1L;
    public static final String TABLE_NAME = "R_RequestProcessor";
    public static final String RequestProcessor = "RequestProcessor";
    public static final String PROPERTY_ID = "id";
    public static final String PROPERTY_CLIENT = "client";
    public static final String PROPERTY_ORGANIZATION = "organization";
    public static final String PROPERTY_ACTIVE = "active";
    public static final String PROPERTY_CREATIONDATE = "creationDate";
    public static final String PROPERTY_CREATEDBY = "createdBy";
    public static final String PROPERTY_UPDATED = "updated";
    public static final String PROPERTY_UPDATEDBY = "updatedBy";
    public static final String PROPERTY_NAME = "name";
    public static final String PROPERTY_DESCRIPTION = "description";
    public static final String PROPERTY_FREQUENCY = "frequency";
    public static final String PROPERTY_FREQUENCYTYPE = "frequencyType";
    public static final String PROPERTY_LASTRUNDATE = "lastRunDate";
    public static final String PROPERTY_DATENEXTRUN = "dateNextRun";
    public static final String PROPERTY_PROCESSNOW = "processNow";
    public static final String PROPERTY_ALERTAFTERDAYSOVERDUE =
        "alertAfterDaysOverdue";
    public static final String PROPERTY_ESCALATEAFTERDAYSOVERDUE =
        "escalateAfterDaysOverdue";
    public static final String PROPERTY_SUPERVISOR = "supervisor";
    public static final String PROPERTY_REQUESTPROCESSORROUTELIST =
        "requestProcessorRouteList";
 
    public RequestProcessor() {
        setDefaultValue(PROPERTY_ACTIVE, true);
        setDefaultValue(PROPERTY_PROCESSNOW, false);
        setDefaultValue(PROPERTY_REQUESTPROCESSORROUTELIST,
            new ArrayList<Object>());
    }
 
    @Override
    public String getEntityName() {
        return RequestProcessor;
    }
 
    public String getId() {
        return (String) get(PROPERTY_ID);
    }
 
    public void setId(String id) {
        set(PROPERTY_ID, id);
    }
 
    public Client getClient() {
        return (Client) get(PROPERTY_CLIENT);
    }
 
    public void setClient(Client client) {
        set(PROPERTY_CLIENT, client);
    }
 
    public Organization getOrganization() {
        return (Organization) get(PROPERTY_ORGANIZATION);
    }
 
    public void setOrganization(Organization organization) {
        set(PROPERTY_ORGANIZATION, organization);
    }
 
    public Boolean isActive() {
        return (Boolean) get(PROPERTY_ACTIVE);
    }
 
    public void setActive(Boolean active) {
        set(PROPERTY_ACTIVE, active);
    }
 
    public Date getCreationDate() {
        return (Date) get(PROPERTY_CREATIONDATE);
    }
 
    public void setCreationDate(Date creationDate) {
        set(PROPERTY_CREATIONDATE, creationDate);
    }
 
    public User getCreatedBy() {
        return (User) get(PROPERTY_CREATEDBY);
    }
 
    public void setCreatedBy(User createdBy) {
        set(PROPERTY_CREATEDBY, createdBy);
    }
 
    public Date getUpdated() {
        return (Date) get(PROPERTY_UPDATED);
    }
 
    public void setUpdated(Date updated) {
        set(PROPERTY_UPDATED, updated);
    }
 
    public User getUpdatedBy() {
        return (User) get(PROPERTY_UPDATEDBY);
    }
 
    public void setUpdatedBy(User updatedBy) {
        set(PROPERTY_UPDATEDBY, updatedBy);
    }
 
    public String getName() {
        return (String) get(PROPERTY_NAME);
    }
 
    public void setName(String name) {
        set(PROPERTY_NAME, name);
    }
 
    public String getDescription() {
        return (String) get(PROPERTY_DESCRIPTION);
    }
 
    public void setDescription(String description) {
        set(PROPERTY_DESCRIPTION, description);
    }
 
    public Long getFrequency() {
        return (Long) get(PROPERTY_FREQUENCY);
    }
 
    public void setFrequency(Long frequency) {
        set(PROPERTY_FREQUENCY, frequency);
    }
 
    public String getFrequencyType() {
        return (String) get(PROPERTY_FREQUENCYTYPE);
    }
 
    public void setFrequencyType(String frequencyType) {
        set(PROPERTY_FREQUENCYTYPE, frequencyType);
    }
 
    public Date getLastRunDate() {
        return (Date) get(PROPERTY_LASTRUNDATE);
    }
 
    public void setLastRunDate(Date lastRunDate) {
        set(PROPERTY_LASTRUNDATE, lastRunDate);
    }
 
    public Date getDateNextRun() {
        return (Date) get(PROPERTY_DATENEXTRUN);
    }
 
    public void setDateNextRun(Date dateNextRun) {
        set(PROPERTY_DATENEXTRUN, dateNextRun);
    }
 
    public Boolean isProcessNow() {
        return (Boolean) get(PROPERTY_PROCESSNOW);
    }
 
    public void setProcessNow(Boolean processNow) {
        set(PROPERTY_PROCESSNOW, processNow);
    }
 
    public Long getAlertAfterDaysOverdue() {
        return (Long) get(PROPERTY_ALERTAFTERDAYSOVERDUE);
    }
 
    public void setAlertAfterDaysOverdue(Long alertAfterDaysOverdue) {
        set(PROPERTY_ALERTAFTERDAYSOVERDUE, alertAfterDaysOverdue);
    }
 
    public Long getEscalateAfterDaysOverdue() {
        return (Long) get(PROPERTY_ESCALATEAFTERDAYSOVERDUE);
    }
 
    public void setEscalateAfterDaysOverdue(Long escalateAfterDaysOverdue) {
        set(PROPERTY_ESCALATEAFTERDAYSOVERDUE, escalateAfterDaysOverdue);
    }
 
    public User getSupervisor() {
        return (User) get(PROPERTY_SUPERVISOR);
    }
 
    public void setSupervisor(User supervisor) {
        set(PROPERTY_SUPERVISOR, supervisor);
    }
 
    @SuppressWarnings("unchecked")
    public List<RequestProcessorRoute> getRequestProcessorRouteList() {
        return (List<RequestProcessorRoute>) get(PROPERTY_REQUESTPROCESSORROUTELIST);
    }
 
    public void setRequestProcessorRouteList(
        List<RequestProcessorRoute> requestProcessorRouteList) {
        set(PROPERTY_REQUESTPROCESSORROUTELIST, requestProcessorRouteList);
    }
}

Retrieved from "http://wiki.openbravo.com/wiki/ERP/3.0/Developers_Guide/Reference/Entity_Model/RequestProcessor"

This page has been accessed 763 times. This page was last modified on 15 April 2011, at 22:21. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.