diff --git a/.settings/org.eclipse.buildship.core.prefs b/.settings/org.eclipse.buildship.core.prefs index e889521..f51cc63 100644 --- a/.settings/org.eclipse.buildship.core.prefs +++ b/.settings/org.eclipse.buildship.core.prefs @@ -1,2 +1,13 @@ +arguments= +auto.sync=false +build.scans.enabled=false +connection.gradle.distribution=GRADLE_DISTRIBUTION(VERSION(8.0.2)) connection.project.dir= eclipse.preferences.version=1 +gradle.user.home= +java.home= +jvm.arguments= +offline.mode=false +override.workspace.settings=true +show.console.view=true +show.executions.view=true diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..18ad895 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,4 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=11 +org.eclipse.jdt.core.compiler.compliance=11 +org.eclipse.jdt.core.compiler.source=11 diff --git a/README.md b/README.md index 36aa9c8..ad8b58e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,14 @@ -# ADempiere Template Project +# ADempiere Mobile Changes + +A project to make dictionary changes from ADempiere and reuse some entities inside mobile application + + +## Badges + +Add badges from somewhere like: [shields.io](https://shields.io/) + +[![GPLv3 License](https://img.shields.io/badge/License-GPL%20v3-yellow.svg)](https://opensource.org/licenses/) -Fill it with a comment about project. ## Requirements - [JDK 11 or later](https://adoptium.net/) @@ -8,26 +16,55 @@ Fill it with a comment about project. ### Packages Names -you should change the follows packages for your own implementation, just change the word `template` by your implementation +The main package name is `org.spin.mobile` by your implementation ```Java -org.spin.template.model.validator -org.spin.template.setup -org.spin.template.util +org.spin.mobile.model.validator +org.spin.mobile.setup +org.spin.mobile.util ``` ### Model Validators -Change the `org.spin.template.model.validator.Validator` by your implementation, example: `org.spin.template.model.validator.MyOwnFunctionality` +Change the `org.spin.mobile.model.validator.Validator` by your implementation, example: `org.spin.mobile.model.validator.MyOwnFunctionality` ### Model Deploy class -Change the `org.spin.template.setup.Deploy` by your implementation, example: `org.spin.template.setup.MyOwnSetupForDeploy` +Change the `org.spin.mobile.setup.Deploy` by your implementation, example: `org.spin.mobile.setup.MyOwnSetupForDeploy` ### Model Util class for core changes -Change the `org.spin.template.util.Changes` by your implementation, example: `org.spin.template.util.MyOwnChanges` +Change the `org.spin.mobile.util.Changes` by your implementation, example: `org.spin.mobile.util.MyOwnChanges` + +## Core Changes + +The main core changes is some elements and columns added to identify mobile entities. + +### Entity Type + +- Code: `MOBILE` +- Name: `Spin Contribution (Mobile Support)` +- Model Package: `org.spin.mobile.model` + +### Elements + +- DB Column Name: `MOBILE_IsMobile` +- Name: `Mobile Feature` +- Type: `Yes-No` + +### Column Changes + +- Table: `AD_Form` + - `MOBILE_IsMobile` + - `MOBILE_Slug` + - `MOBILE_ImageURL` + +- Table: `AD_User` + - `MOBILE_IsMobile` +- Table: `AD_Role` + - `MOBILE_IsMobile` + ## Binary Project -You can get all binaries from github [here](https://central.sonatype.com/artifact/io.github.adempiere/adempiere-template-project/1.0.0). +You can get all binaries from github [here](https://central.sonatype.com/artifact/io.github.adempiere/adempiere-mobile-changes/1.0.0). All contruction is from github actions @@ -44,13 +81,13 @@ Is very easy. - Gradle ```Java -implementation 'io.github.adempiere:adempiere-template-project:1.0.0' +implementation 'io.github.adempiere:adempiere-mobile-changes:1.0.0' ``` - SBT ``` -libraryDependencies += "io.github.adempiere" % "adempiere-template-project" % "1.0.0" +libraryDependencies += "io.github.adempiere" % "adempiere-mobile-changes" % "1.0.0" ``` - Apache Maven @@ -58,7 +95,7 @@ libraryDependencies += "io.github.adempiere" % "adempiere-template-project" % "1 ``` io.github.adempiere - adempiere-template-project + adempiere-mobile-changes 1.0.0 ``` \ No newline at end of file diff --git a/build.gradle b/build.gradle index a4449bc..9668c44 100644 --- a/build.gradle +++ b/build.gradle @@ -51,7 +51,7 @@ version = System.getenv("ADEMPIERE_LIBRARY_VERSION") ?: "local-1.0.0" jar { manifest { attributes( - "Implementation-Title": "ADempiere Template Management", + "Implementation-Title": "ADempiere Mobile Changes", "Implementation-Version": version, "EntityType": entityType ) @@ -73,12 +73,12 @@ publishing { publications { mavenJava(MavenPublication) { groupId = group - artifactId = 'adempiere-template-project' + artifactId = 'adempiere-mobile-changes' version = version from components.java pom { - name = 'ADempiere Template Project' - description = 'Fill it with project description' + name = 'ADempiere Mobile Changes' + description = 'A project to make dictionary changes from ADempiere and reuse some entities inside mobile application' url = 'http://adempiere.io/' licenses { license { @@ -94,9 +94,9 @@ publishing { } } scm { - connection = 'scm:git:git://github.com/adempiere/adempiere-template-project.git' - developerConnection = 'scm:git:ssh://github.com/adempiere/adempiere-template-project.git' - url = 'http://github.com/adempiere/adempiere-template-project' + connection = 'scm:git:git://github.com/adempiere/adempiere-mobile-changes.git' + developerConnection = 'scm:git:ssh://github.com/adempiere/adempiere-mobile-changes.git' + url = 'http://github.com/adempiere/adempiere-mobile-changes' } } } diff --git a/settings.gradle b/settings.gradle index 08b1454..dd8f100 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1 @@ -rootProject.name = 'adempiere-template-project' \ No newline at end of file +rootProject.name = 'adempiere-mobile-changes' \ No newline at end of file diff --git a/src/main/java/org/spin/template/model/validator/Validator.java b/src/main/java/org/spin/mobile/model/validator/Validator.java similarity index 95% rename from src/main/java/org/spin/template/model/validator/Validator.java rename to src/main/java/org/spin/mobile/model/validator/Validator.java index b4fb42b..2521c30 100644 --- a/src/main/java/org/spin/template/model/validator/Validator.java +++ b/src/main/java/org/spin/mobile/model/validator/Validator.java @@ -12,7 +12,7 @@ * You should have received a copy of the GNU General Public License * * along with this program. If not, see . * ************************************************************************************/ -package org.spin.template.model.validator; +package org.spin.mobile.model.validator; import org.adempiere.core.domains.models.I_C_Order; import org.adempiere.core.domains.models.I_C_OrderLine; @@ -23,7 +23,7 @@ import org.compiere.model.ModelValidator; import org.compiere.model.PO; import org.compiere.util.CLogger; -import org.spin.template.util.Changes; +import org.spin.mobile.util.Changes; /** * Write here your change comment @@ -86,7 +86,7 @@ public String docValidate(PO entity, int timing) { MDocType documentType = MDocType.get(entity.getCtx(), order.getC_DocTypeTarget_ID()); if(order.isSOTrx() && !order.isReturnOrder() - && documentType.get_ValueAsBoolean(Changes.COLUMNNAME_ColumAddedToCore)) { + && documentType.get_ValueAsBoolean(Changes.COLUMNNAME_MOBILE_IsMobile)) { } } diff --git a/src/main/java/org/spin/template/setup/Deploy.java b/src/main/java/org/spin/mobile/setup/Deploy.java similarity index 97% rename from src/main/java/org/spin/template/setup/Deploy.java rename to src/main/java/org/spin/mobile/setup/Deploy.java index 87534a6..d906fce 100644 --- a/src/main/java/org/spin/template/setup/Deploy.java +++ b/src/main/java/org/spin/mobile/setup/Deploy.java @@ -14,13 +14,13 @@ * All Rights Reserved. * * Contributor(s): Yamel Senih www.erpya.com * *****************************************************************************/ -package org.spin.template.setup; +package org.spin.mobile.setup; import java.util.Properties; import org.compiere.model.Query; import org.adempiere.core.domains.models.X_AD_ModelValidator; -import org.spin.template.model.validator.Validator; +import org.spin.mobile.model.validator.Validator; import org.spin.util.ISetupDefinition; /** diff --git a/src/main/java/org/spin/template/util/Changes.java b/src/main/java/org/spin/mobile/util/Changes.java similarity index 83% rename from src/main/java/org/spin/template/util/Changes.java rename to src/main/java/org/spin/mobile/util/Changes.java index d9b448c..fadd03a 100644 --- a/src/main/java/org/spin/template/util/Changes.java +++ b/src/main/java/org/spin/mobile/util/Changes.java @@ -15,7 +15,7 @@ * All Rights Reserved. * * Contributor(s): Yamel Senih www.erpya.com * *****************************************************************************/ -package org.spin.template.util; +package org.spin.mobile.util; /** * Add here all changes for core and statci methods @@ -23,6 +23,10 @@ * @author Yamel Senih, ysenih@erpya.com, ERPCyA http://www.erpya.com */ public class Changes { - /** Colum added to core */ - public static final String COLUMNNAME_ColumAddedToCore = "ColumAddedToCore"; + /** Is Mobile Feature */ + public static final String COLUMNNAME_MOBILE_IsMobile = "MOBILE_IsMobile"; + /** Form Slug */ + public static final String COLUMNNAME_MOBILE_Slug = "MOBILE_Slug"; + /** Image URL */ + public static final String COLUMNNAME_MOBILE_ImageURL = "MOBILE_ImageURL"; } diff --git a/xml/migration/10330_ERPYA_Add_Entity_Type_MOBILE.xml b/xml/migration/10330_ERPYA_Add_Entity_Type_MOBILE.xml new file mode 100644 index 0000000..4c9bd5b --- /dev/null +++ b/xml/migration/10330_ERPYA_Add_Entity_Type_MOBILE.xml @@ -0,0 +1,26 @@ + + + + + + + 272afb75-d76a-4df3-9847-6bee75c862f5 + 100 + 2024-03-05 17:17:18.157 + false + Spin Contribution (Mobile Support) + org.spin.mobile.model + true + Contribution by E.R.P Consultores y Asociados, C.A + MOBILE + Spin Contribution (Mobile support definitions) + 100 + 2024-03-05 17:17:18.157 + + 0 + 50161 + 0 + + + + diff --git a/xml/migration/10340_ERPYA_Mobile_Definitions.xml b/xml/migration/10340_ERPYA_Mobile_Definitions.xml new file mode 100644 index 0000000..fbfb3a1 --- /dev/null +++ b/xml/migration/10340_ERPYA_Mobile_Definitions.xml @@ -0,0 +1,11929 @@ + + + + + + 997dfd84-92c4-4eaa-9c21-35efea29bbfa + 100 + 2024-03-05 17:38:16.153 + Mobile Feature + + + + + Mobile Feature + true + Use this flag to determine if a entity is member of mobile setup + 1 + MOBILE + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:38:16.153 + MOBILE_IsMobile + + 20 + 0 + 62234 + 0 + + + + + 9471b43d-de16-4bf9-9ee8-f0207e6c2f94 + 100 + 2024-03-05 17:38:17.357 + Mobile Feature + + + + + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:38:17.357 + 0 + es_MX + 62234 + 0 + + + + + Característica Móvil + Característica Móvil + Use ésta bandera para determinar si una entidad es miembro de una configuración móvil + Característica Móvil define si una entidad es usada en alguna aplicación móvil + es_MX + 62234 + + + + + + 0 + + + 26751c05-fa69-4e8d-bbf4-32347b740d72 + 100 + 2024-03-05 17:40:41.667 + 0 + true + + + Mobile Feature + + true + false + N + true + false + false + false + false + false + N + false + false + true + true + true + + Use this flag to determine if a entity is member of mobile setup + + 1 + MOBILE + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + N + 100 + 2024-03-05 17:40:41.667 + + MOBILE_IsMobile + + + 376 + + 20 + + 0 + + 62234 + 100951 + 0 + + + + + + e941eb54-d877-416d-a9d2-89faa92d4ace + 100 + 2024-03-05 17:40:43.143 + Mobile Feature + false + true + 100 + 2024-03-05 17:40:43.143 + 0 + es_MX + 100951 + 0 + + + + + 527dc2b1-5a8d-45fd-a863-437a93bce692 + 100 + 2024-03-05 17:41:04.161 + 0 + 120 + 120 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 17:41:04.161 + + 302 + + + 0 + + 103507 + + + + 100951 + 0 + + + + + e321b049-9ef0-4adb-a1d5-e79940218898 + 100 + 2024-03-05 17:41:05.251 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:41:05.251 + 0 + es_MX + 103507 + 0 + + + + + + 0 + + + 5c26233d-c85e-4169-864a-caa40bccddab + 100 + 2024-03-05 17:41:43.187 + 0 + true + + + Mobile Feature + + true + false + N + true + false + false + false + false + false + N + false + false + true + true + true + + Use this flag to determine if a entity is member of mobile setup + + 1 + MOBILE + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + N + 100 + 2024-03-05 17:41:43.187 + + MOBILE_IsMobile + + + 156 + + 20 + + 0 + + 62234 + 100952 + 0 + + + + + + c55fce5b-fd3e-4ae4-9c4a-12aa2759ec0b + 100 + 2024-03-05 17:41:44.516 + Mobile Feature + false + true + 100 + 2024-03-05 17:41:44.516 + 0 + es_MX + 100952 + 0 + + + + + e66967d0-a50f-4832-99b3-0de8ca4a8cfa + 100 + 2024-03-05 17:41:55.414 + 0 + 420 + 420 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 17:41:55.414 + + 119 + + + 0 + + 103508 + + + + 100952 + 0 + + + + + e4c06b13-66e2-4147-9308-a49a4de1d5df + 100 + 2024-03-05 17:41:56.661 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:41:56.661 + 0 + es_MX + 103508 + 0 + + + + + + 0 + + + 05ff38e5-c44e-41ea-8dbe-27233126c143 + 100 + 2024-03-05 17:42:22.433 + 0 + true + + + Mobile Feature + + true + false + N + true + false + false + false + false + false + N + false + false + true + true + true + + Use this flag to determine if a entity is member of mobile setup + + 1 + MOBILE + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + N + 100 + 2024-03-05 17:42:22.433 + + MOBILE_IsMobile + + + 114 + + 20 + + 0 + + 62234 + 100953 + 0 + + + + + + 72c78194-31d2-417b-9823-37f8dec423c3 + 100 + 2024-03-05 17:42:23.856 + Mobile Feature + false + true + 100 + 2024-03-05 17:42:23.856 + 0 + es_MX + 100953 + 0 + + + + + 0149fee6-9860-443a-a45b-584b20f3a808 + 100 + 2024-03-05 17:42:35.222 + 0 + 450 + 450 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 17:42:35.222 + + 118 + + + 0 + + 103509 + + + + 100953 + 0 + + + + + f9c4f6e9-1e1e-4e95-9c4e-037800273348 + 100 + 2024-03-05 17:42:36.501 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:42:36.501 + 0 + es_MX + 103509 + 0 + + + + + + + M + ffa2cb19-085d-4b36-aec7-9da3ed6373a3 + 100 + 2024-03-05 17:50:46.174 + false + Mobile Form + true + false + false + true + The Forms Window defines any window which is not automatically generated. For System Admin use only. + MOBILE + Special Forms + 100 + 2024-03-05 17:50:46.174 + 53806 + 0 + + + + 0 + + + + + f81824fc-d273-4c6a-9f8d-35aa36b8d0c0 + 100 + 2024-03-05 17:50:47.611 + Mobile Form + false + true + The Forms Window defines any window which is not automatically generated. For System Admin use only. + Special Forms + 100 + 2024-03-05 17:50:47.611 + 53806 + 0 + es_MX + 0 + + + + + Formas para Móvil + Formulario especial para aplicación Móvil + 53806 + es_MX + + + + + Ésta ventana permite definir ventanas específicas para aplicaciones móviles + 53806 + es_MX + + + + + + 369ca7a4-1eda-4976-8c18-cc2adec50b64 + 100 + 2024-03-05 17:52:04.142 + 0 + 10 + + false + + + Form + false + false + true + false + true + false + false + true + + + The Forms Tab defines any window which is not automatically generated. For System Admin use only. + false + MOBILE + + Special Form + 100 + 2024-03-05 17:52:04.142 + + 53806 + 376 + 55214 + + 0 + + + + + + 0 + + + + + fc313803-2cf3-4c3d-91a5-d46bd833921d + 100 + 2024-03-05 17:52:05.45 + Form + false + true + The Forms Tab defines any window which is not automatically generated. For System Admin use only. + Special Form + 100 + 2024-03-05 17:52:05.45 + + 55214 + 0 + es_MX + 0 + + + + + 4e64b300-4f35-4131-b5e3-de2830dc9ace + 100 + 2024-03-05 17:52:05.593 + + 0 + 0 + + + Special Form + false + false + false + + false + false + false + false + true + false + true + false + true + + + The Special Form field identifies a unique Special Form in the system. + MOBILE + + 14 + Special Form + + 100 + 2024-03-05 17:52:05.593 + + 55214 + + + 0 + + 103510 + + + + 4596 + 0 + + + + + 70d5c014-0237-4d1a-8dda-50e80d2a5d1f + 100 + 2024-03-05 17:52:06.698 + Special Form + false + true + The Special Form field identifies a unique Special Form in the system. + Special Form + 100 + 2024-03-05 17:52:06.698 + 0 + es_MX + 103510 + 0 + + + + + 78021a00-83b2-4785-a7d3-6f5b4c59efbf + 100 + 2024-03-05 17:52:06.834 + + 0 + 10 + + + Client + false + false + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 17:52:06.834 + + 55214 + + + 0 + + 103511 + + + + 4597 + 0 + + + + + db35edec-09a6-47b6-8a62-8740eecccca3 + 100 + 2024-03-05 17:52:07.944 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 17:52:07.944 + 0 + es_MX + 103511 + 0 + + + + + d13d7a82-69ad-45e1-b1f8-6df211d2b80f + 100 + 2024-03-05 17:52:08.072 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 17:52:08.072 + + 55214 + + + 0 + + 103512 + + + + 4598 + 0 + + + + + 59bf4ff0-7b42-41dc-ac04-71330707b368 + 100 + 2024-03-05 17:52:09.114 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 17:52:09.114 + 0 + es_MX + 103512 + 0 + + + + + 802a3485-b7ac-438d-a471-01d345ba5031 + 100 + 2024-03-05 17:52:09.242 + 1 + 0 + 30 + + + Name + false + false + false + + false + false + false + false + true + true + true + true + true + + + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + MOBILE + + 60 + Alphanumeric identifier of the entity + + 100 + 2024-03-05 17:52:09.242 + + 55214 + + + 0 + + 103513 + + + + 4604 + 0 + + + + + 66472a4b-dfcd-4b5c-955e-b74def5acfcf + 100 + 2024-03-05 17:52:10.34 + Name + false + true + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + Alphanumeric identifier of the entity + 100 + 2024-03-05 17:52:10.34 + 0 + es_MX + 103513 + 0 + + + + + 46bfd9a7-1439-4f12-a61f-738b2be81c3a + 100 + 2024-03-05 17:52:10.472 + + 0 + 40 + + + Description + false + false + false + + false + false + false + false + true + true + true + true + true + + + A description is limited to 255 characters. + MOBILE + + 60 + Optional short description of the record + + 100 + 2024-03-05 17:52:10.472 + + 55214 + + + 0 + + 103514 + + + + 4605 + 0 + + + + + 3b2fd055-045d-4a2d-8195-d97991009b43 + 100 + 2024-03-05 17:52:11.592 + Description + false + true + A description is limited to 255 characters. + Optional short description of the record + 100 + 2024-03-05 17:52:11.592 + 0 + es_MX + 103514 + 0 + + + + + e85781d0-1083-4711-bf43-b693ba53a295 + 100 + 2024-03-05 17:52:11.728 + + 0 + 50 + + + Comment/Help + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Help field contains a hint, comment or help about the use of this item. + MOBILE + + 60 + Comment or Hint + + 100 + 2024-03-05 17:52:11.728 + + 55214 + + + 0 + + 103515 + + + + 4606 + 0 + + + + + 29eca2e3-1ca6-4ffe-be87-5616492a6081 + 100 + 2024-03-05 17:52:12.796 + Comment/Help + false + true + The Help field contains a hint, comment or help about the use of this item. + Comment or Hint + 100 + 2024-03-05 17:52:12.796 + 0 + es_MX + 103515 + 0 + + + + + 06ce0f95-11c8-4d58-a310-d484f1e23231 + 100 + 2024-03-05 17:52:12.922 + + 0 + 60 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 17:52:12.922 + + 55214 + + + 0 + + 103516 + + + + 4599 + 0 + + + + + 57db2266-0df5-44ef-b175-7767b4e3aa64 + 100 + 2024-03-05 17:52:14.054 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 17:52:14.054 + 0 + es_MX + 103516 + 0 + + + + + c4dd69f7-2206-4350-b401-3512a93a2a02 + 100 + 2024-03-05 17:52:14.18 + + 0 + 70 + + + Beta Functionality + true + false + false + + false + false + false + false + true + true + true + true + true + + + Beta functionality is not fully tested or completed. + MOBILE + + 1 + This functionality is considered Beta + + 100 + 2024-03-05 17:52:14.18 + + 55214 + + + 0 + + 103517 + + + + 12738 + 0 + + + + + bd821f85-371a-4c7d-8335-ca7460be481d + 100 + 2024-03-05 17:52:15.274 + Beta Functionality + false + true + Beta functionality is not fully tested or completed. + This functionality is considered Beta + 100 + 2024-03-05 17:52:15.274 + 0 + es_MX + 103517 + 0 + + + + + 98c1a1bb-79c6-4d9c-b1a5-e8b84cdfa644 + 100 + 2024-03-05 17:52:15.413 + + 0 + 80 + + + Entity Type + false + false + false + + false + false + false + false + true + true + true + false + true + + + The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. + +For customizations, copy the entity and select "User"! + MOBILE + + 20 + Dictionary Entity Type; Determines ownership and synchronization + + 100 + 2024-03-05 17:52:15.413 + + 55214 + + + 0 + + 103518 + + + + 7708 + 0 + + + + + 5933e455-e703-4f56-b594-e9404ecddf3a + 100 + 2024-03-05 17:52:16.591 + Entity Type + false + true + The Entity Types "Dictionary", "Adempiere" and "Application" might be automatically synchronized and customizations deleted or overwritten. + +For customizations, copy the entity and select "User"! + Dictionary Entity Type; Determines ownership and synchronization + 100 + 2024-03-05 17:52:16.591 + 0 + es_MX + 103518 + 0 + + + + + fa876f50-48a6-48d9-b776-e9b1142703b2 + 100 + 2024-03-05 17:52:16.719 + + 0 + 90 + + + Data Access Level + false + false + false + + false + false + false + false + true + true + true + true + true + + + Indicates the access level required for this record or process. + MOBILE + + 14 + Access Level required + + 100 + 2024-03-05 17:52:16.718 + + 55214 + + + 0 + + 103519 + + + + 5791 + 0 + + + + + 6382a7cc-f2e5-4471-a24b-7befa3b15b1b + 100 + 2024-03-05 17:52:18.203 + Data Access Level + false + true + Indicates the access level required for this record or process. + Access Level required + 100 + 2024-03-05 17:52:18.203 + 0 + es_MX + 103519 + 0 + + + + + 9508b427-12f4-41a8-bba9-bfc62d7bf960 + 100 + 2024-03-05 17:52:18.479 + + 0 + 100 + + + Classname + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Classname identifies the Java classname used by this report or process. + MOBILE + + 40 + Java Classname + + 100 + 2024-03-05 17:52:18.479 + + 55214 + + + 0 + + 103520 + + + + 4607 + 0 + + + + + 9dde46ac-e22a-4197-b103-b1ae1be9feb4 + 100 + 2024-03-05 17:52:19.599 + Classname + false + true + The Classname identifies the Java classname used by this report or process. + Java Classname + 100 + 2024-03-05 17:52:19.599 + 0 + es_MX + 103520 + 0 + + + + + 525ba726-ee87-4025-931d-9734fb124aca + 100 + 2024-03-05 17:52:19.741 + + 0 + 110 + + + jsp URL + false + false + false + + false + false + false + false + true + true + true + true + true + + + For the Web UI, define the URL to perform the function (usually a jsp). The URL also can be external to the system. + MOBILE + + 40 + Web URL of the jsp function + + 100 + 2024-03-05 17:52:19.74 + + 55214 + + + 0 + + 103521 + + + + 13022 + 0 + + + + + 88b81674-edce-42f9-87f3-b9853711755f + 100 + 2024-03-05 17:52:21.044 + jsp URL + false + true + For the Web UI, define the URL to perform the function (usually a jsp). The URL also can be external to the system. + Web URL of the jsp function + 100 + 2024-03-05 17:52:21.044 + 0 + es_MX + 103521 + 0 + + + + + 68d5d91b-0930-4389-8cae-82e0b12e3fe8 + 100 + 2024-03-05 17:52:21.283 + 0 + 120 + 120 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 17:52:21.283 + + 55214 + + + 0 + + 103522 + + + + 100951 + 0 + + + + + 5c6f1e27-ce3f-425f-bc23-d74424420b8f + 100 + 2024-03-05 17:52:22.346 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 17:52:22.346 + 0 + es_MX + 103522 + 0 + + + + + + de7fd08e-6f63-4d48-be6b-3db068e34041 + 100 + 2024-03-05 17:52:22.521 + 1 + 20 + + false + + + Translation + true + false + true + false + false + false + false + true + + + + false + MOBILE + + + 100 + 2024-03-05 17:52:22.521 + + 53806 + 377 + 55215 + + 0 + + + + + + 0 + + + + + 086ef742-864c-4059-a629-b11f7ef38f8c + 100 + 2024-03-05 17:52:23.887 + Translation + false + true + + + 100 + 2024-03-05 17:52:23.887 + + 55215 + 0 + es_MX + 0 + + + + + 15ea6d68-0719-4674-b807-c7fa25b8652a + 100 + 2024-03-05 17:52:24.051 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 17:52:24.051 + + 55215 + + + 0 + + 103523 + + + + 4610 + 0 + + + + + f7dc6aec-647d-4c4b-af1f-a8e5a09745b6 + 100 + 2024-03-05 17:52:25.19 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 17:52:25.19 + 0 + es_MX + 103523 + 0 + + + + + c5fefa6c-6690-4c4a-be70-8b6e5b1901cd + 100 + 2024-03-05 17:52:25.334 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 17:52:25.334 + + 55215 + + + 0 + + 103524 + + + + 4611 + 0 + + + + + 11475a89-ca3b-42cd-b991-e5835405fb7e + 100 + 2024-03-05 17:52:26.38 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 17:52:26.38 + 0 + es_MX + 103524 + 0 + + + + + 987f583b-3656-4412-bd36-6a2c7d3f4a85 + 100 + 2024-03-05 17:52:26.596 + + 0 + 30 + + + Special Form + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Special Form field identifies a unique Special Form in the system. + MOBILE + + 14 + Special Form + + 100 + 2024-03-05 17:52:26.596 + + 55215 + + + 0 + + 103525 + + + + 4608 + 0 + + + + + 03b121b1-00d4-44ce-b641-86f0361ab304 + 100 + 2024-03-05 17:52:27.612 + Special Form + false + true + The Special Form field identifies a unique Special Form in the system. + Special Form + 100 + 2024-03-05 17:52:27.612 + 0 + es_MX + 103525 + 0 + + + + + 29e75b1d-164e-4bfc-83bb-d1f7999688d1 + 100 + 2024-03-05 17:52:27.748 + + 0 + 40 + + + Language + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Language identifies the language to use for display and formatting + MOBILE + + 14 + Language for this entity + + 100 + 2024-03-05 17:52:27.747 + + 55215 + + + 0 + + 103526 + + + + 4609 + 0 + + + + + df385000-36b4-4dc5-9d15-21e3fca44a87 + 100 + 2024-03-05 17:52:28.79 + Language + false + true + The Language identifies the language to use for display and formatting + Language for this entity + 100 + 2024-03-05 17:52:28.79 + 0 + es_MX + 103526 + 0 + + + + + 5989acef-ac74-4d33-94c2-e31b8a3e01ad + 100 + 2024-03-05 17:52:28.933 + + 0 + 50 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 17:52:28.933 + + 55215 + + + 0 + + 103527 + + + + 4612 + 0 + + + + + 658ad185-2c33-40b0-afed-8bd1be8717b2 + 100 + 2024-03-05 17:52:30.144 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 17:52:30.144 + 0 + es_MX + 103527 + 0 + + + + + 6a26a4af-2952-4896-954d-b36dff373259 + 100 + 2024-03-05 17:52:30.313 + + 0 + 60 + + + Translated + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Translated checkbox indicates if this column is translated. + MOBILE + + 1 + This column is translated + + 100 + 2024-03-05 17:52:30.313 + + 55215 + + + 0 + + 103528 + + + + 4620 + 0 + + + + + 3fa7c53f-c30e-4a21-837c-302680ce56de + 100 + 2024-03-05 17:52:31.315 + Translated + false + true + The Translated checkbox indicates if this column is translated. + This column is translated + 100 + 2024-03-05 17:52:31.315 + 0 + es_MX + 103528 + 0 + + + + + f61eee2c-23cd-4cea-9050-656cd92e709a + 100 + 2024-03-05 17:52:31.463 + + 0 + 70 + + + Name + false + false + false + + false + false + false + false + true + true + true + true + true + + + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + MOBILE + + 60 + Alphanumeric identifier of the entity + + 100 + 2024-03-05 17:52:31.462 + + 55215 + + + 0 + + 103529 + + + + 4617 + 0 + + + + + 87386fdc-4d0c-4bee-8d86-350d257fa7f9 + 100 + 2024-03-05 17:52:32.542 + Name + false + true + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + Alphanumeric identifier of the entity + 100 + 2024-03-05 17:52:32.542 + 0 + es_MX + 103529 + 0 + + + + + 0baa911c-76a2-4ea8-aadc-96c67fe19a4f + 100 + 2024-03-05 17:52:32.699 + + 0 + 80 + + + Description + false + false + false + + false + false + false + false + true + true + true + true + true + + + A description is limited to 255 characters. + MOBILE + + 60 + Optional short description of the record + + 100 + 2024-03-05 17:52:32.699 + + 55215 + + + 0 + + 103530 + + + + 4618 + 0 + + + + + 6e7ae11b-8a84-4c06-a3d1-a7f1ea11c66d + 100 + 2024-03-05 17:52:34.15 + Description + false + true + A description is limited to 255 characters. + Optional short description of the record + 100 + 2024-03-05 17:52:34.15 + 0 + es_MX + 103530 + 0 + + + + + 8a9dea50-f8fe-4985-906c-4bc0f789b5b7 + 100 + 2024-03-05 17:52:34.296 + + 0 + 90 + + + Comment/Help + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Help field contains a hint, comment or help about the use of this item. + MOBILE + + 60 + Comment or Hint + + 100 + 2024-03-05 17:52:34.296 + + 55215 + + + 0 + + 103531 + + + + 4619 + 0 + + + + + 87def4ff-19eb-4165-b536-914f37b2704d + 100 + 2024-03-05 17:52:35.765 + Comment/Help + false + true + The Help field contains a hint, comment or help about the use of this item. + Comment or Hint + 100 + 2024-03-05 17:52:35.765 + 0 + es_MX + 103531 + 0 + + + + + + eaf69377-0a71-4af0-be7b-6c7e4810556d + 100 + 2024-03-05 17:52:35.94 + 1 + 30 + + false + + + Access + false + false + false + false + true + false + false + true + + + The Forms Access Tab defines the access rules for this form + false + MOBILE + + Form Access + 100 + 2024-03-05 17:52:35.94 + + 53806 + 378 + 55216 + + 0 + + + + + 4623 + 0 + + + + + 14254e57-d2ee-4e35-a8e6-7bf13ffee672 + 100 + 2024-03-05 17:52:37.172 + Access + false + true + The Forms Access Tab defines the access rules for this form + Form Access + 100 + 2024-03-05 17:52:37.172 + + 55216 + 0 + es_MX + 0 + + + + + 59c5023f-b55f-4313-9e18-fc3cb7067bd3 + 100 + 2024-03-05 17:52:37.342 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 17:52:37.342 + + 55216 + + + 0 + + 103532 + + + + 4625 + 0 + + + + + cbf6866d-861e-4fe4-829e-c4e0ecbabb54 + 100 + 2024-03-05 17:52:38.737 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 17:52:38.737 + 0 + es_MX + 103532 + 0 + + + + + 3b6470e9-c4ad-4b3a-8605-e6d34abd5fc0 + 100 + 2024-03-05 17:52:38.924 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 17:52:38.924 + + 55216 + + + 0 + + 103533 + + + + 4626 + 0 + + + + + 75e6d454-22f8-46ea-afae-a72acf1095a3 + 100 + 2024-03-05 17:52:41.225 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 17:52:41.225 + 0 + es_MX + 103533 + 0 + + + + + b259fb06-6f4c-49cc-a73a-3366ce137fea + 100 + 2024-03-05 17:52:41.381 + + 0 + 30 + + + Special Form + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Special Form field identifies a unique Special Form in the system. + MOBILE + + 14 + Special Form + + 100 + 2024-03-05 17:52:41.381 + + 55216 + + + 0 + + 103534 + + + + 4623 + 0 + + + + + daac185f-1e2c-4bc9-87e1-8868add36795 + 100 + 2024-03-05 17:52:42.433 + Special Form + false + true + The Special Form field identifies a unique Special Form in the system. + Special Form + 100 + 2024-03-05 17:52:42.433 + 0 + es_MX + 103534 + 0 + + + + + 25c17aee-4b1a-4a46-a543-be508e89306c + 100 + 2024-03-05 17:52:42.624 + 1 + 0 + 40 + + + Role + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 14 + Responsibility Role + + 100 + 2024-03-05 17:52:42.624 + + 55216 + + + 0 + + 103535 + + + + 4624 + 0 + + + + + b9e7e2a4-9c9a-40b5-8807-4ceec5fe1694 + 100 + 2024-03-05 17:52:44.028 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 17:52:44.028 + 0 + es_MX + 103535 + 0 + + + + + 0ed3c463-bac6-4dc6-97a5-d74c49c7a5df + 100 + 2024-03-05 17:52:44.184 + + 0 + 50 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 17:52:44.184 + + 55216 + + + 0 + + 103536 + + + + 4627 + 0 + + + + + 25439874-b9db-428f-a5f9-da19c1e8f935 + 100 + 2024-03-05 17:52:45.59 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 17:52:45.59 + 0 + es_MX + 103536 + 0 + + + + + ca3cca78-8231-414f-8250-3086e0b21809 + 100 + 2024-03-05 17:52:45.737 + + 0 + 60 + + + Read Write + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Read Write indicates that this field may be read and updated. + MOBILE + + 1 + Field is read / write + + 100 + 2024-03-05 17:52:45.737 + + 55216 + + + 0 + + 103537 + + + + 4632 + 0 + + + + + d4fd6ced-145c-4b52-bad5-e9d364a1dc7c + 100 + 2024-03-05 17:52:46.801 + Read Write + false + true + The Read Write indicates that this field may be read and updated. + Field is read / write + 100 + 2024-03-05 17:52:46.801 + 0 + es_MX + 103537 + 0 + + + + + Forma + La pestaña Forma define una ventana que no es automáticamente generada. Solo para uso del administrador del sistema. + Forma Especial + + + + + AD_Form.MOBILE_IsMobile='Y' + + + + + Form + Special Form + + + + + Forma + La pestaña Forma define una ventana que no es automáticamente generada. Solo para uso del administrador del sistema. + Forma Especial + 55214 + es_MX + + + + + 0 + false + + + + + Traducción + 55215 + es_MX + + + + + 0 + false + + + + + 0 + false + + + + + 100 + + + + + 014a538b-6f5e-474b-94d8-f7ce9e5a5d64 + 100 + 2024-03-05 18:04:10.084 + Slug + + + + + Slug + true + This slug is for path from mobile app + 255 + MOBILE + Window Slug + 100 + 2024-03-05 18:04:10.084 + MOBILE_Slug + + 10 + 0 + 62235 + 0 + + + + + 671c6925-1f19-4da0-99d6-54faed197fa9 + 100 + 2024-03-05 18:04:11.07 + Slug + + + + + Slug + false + true + This slug is for path from mobile app + Window Slug + 100 + 2024-03-05 18:04:11.07 + 0 + es_MX + 62235 + 0 + + + + + Código de Ruta + Código de Ruta + Éste código de ruta se usa para indexar la ventana en la aplicación móvil + Código de Ruta en la Ventana + es_MX + 62235 + + + + + 0190a7a3-85f8-42a9-ba4c-87ea073a1e91 + 100 + 2024-03-05 18:05:47.058 + Image URL + + + + + Image URL + true + Image URL of window + 600 + MOBILE + Image URL + 100 + 2024-03-05 18:05:47.058 + MOBILE_ImageURL + + 40 + 0 + 62236 + 0 + + + + + 28f2630f-fda6-41e5-915f-691a6e256ab9 + 100 + 2024-03-05 18:05:47.892 + Image URL + + + + + Image URL + false + true + Image URL of window + Image URL + 100 + 2024-03-05 18:05:47.892 + 0 + es_MX + 62236 + 0 + + + + + + true + + b1cb5828-f13f-4149-8002-ba6cc520f180 + 100 + 10 + 255 + + + 62235 + 100 + 376 + + 0 + 0 + MOBILE + 0 + true + false + false + true + + N + false + + true + This slug is for path from mobile app + MOBILE_Slug + + 0 + + + + false + N + true + false + + + false + false + Slug + false + 100954 + + 2024-03-05 18:06:02.652 + + 2024-03-05 18:06:02.652 + + true + Window Slug + + + + + bcbdca99-a281-4fde-ab3a-2e2e146d9d86 + 100 + 2024-03-05 18:06:04.141 + Slug + false + true + 100 + 2024-03-05 18:06:04.141 + 0 + es_MX + 100954 + 0 + + + + + + true + + 64989517-33a6-4038-a1cc-555e603e0f0f + 100 + 40 + 600 + + + 62236 + 100 + 376 + + 0 + 0 + MOBILE + 0 + true + false + false + true + + N + false + + true + Image URL of window + MOBILE_ImageURL + + 0 + + + + false + N + true + false + + + false + false + Image URL + false + 100955 + + 2024-03-05 18:06:13.834 + + 2024-03-05 18:06:13.834 + + true + Image URL + + + + + 1cf6781a-8ed9-479d-8793-312c36115086 + 100 + 2024-03-05 18:06:15.069 + Image URL + false + true + 100 + 2024-03-05 18:06:15.069 + 0 + es_MX + 100955 + 0 + + + + + ebd17671-7174-4629-a42c-f0283596b09a + 100 + 2024-03-05 18:06:24.159 + + 0 + 0 + + + Image URL + false + false + false + + false + false + false + false + true + true + true + true + true + + + Image URL of window + MOBILE + + 600 + Image URL + + 100 + 2024-03-05 18:06:24.159 + + 55214 + + + 0 + + 103538 + + + + 100955 + 0 + + + + + 103d99a6-e820-4821-b64b-1adbf4873f5c + 100 + 2024-03-05 18:06:25.554 + Image URL + false + true + Image URL of window + Image URL + 100 + 2024-03-05 18:06:25.554 + 0 + es_MX + 103538 + 0 + + + + + 29bf4d8f-17a9-423b-8318-05a1c1b9e6f7 + 100 + 2024-03-05 18:06:25.738 + + 0 + 0 + + + Immutable Universally Unique Identifier + false + false + false + + false + false + false + false + true + false + true + true + true + + + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + MOBILE + + 36 + Immutable Universally Unique Identifier + + 100 + 2024-03-05 18:06:25.738 + + 55214 + + + 0 + + 103539 + + + + 84325 + 0 + + + + + c2d97cd7-dbb9-47a4-a117-b3c61e932b04 + 100 + 2024-03-05 18:06:26.859 + Immutable Universally Unique Identifier + false + true + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + Immutable Universally Unique Identifier + 100 + 2024-03-05 18:06:26.859 + 0 + es_MX + 103539 + 0 + + + + + 93f01b1e-48da-44d1-b9f0-fbef816751e4 + 100 + 2024-03-05 18:06:27.118 + + 0 + 0 + + + Slug + false + false + false + + false + false + false + false + true + true + true + true + true + + + This slug is for path from mobile app + MOBILE + + 255 + Window Slug + + 100 + 2024-03-05 18:06:27.117 + + 55214 + + + 0 + + 103540 + + + + 100954 + 0 + + + + + 3a8aa922-3c53-46b9-be5d-e0cd593238f0 + 100 + 2024-03-05 18:06:28.832 + Slug + false + true + This slug is for path from mobile app + Window Slug + 100 + 2024-03-05 18:06:28.832 + 0 + es_MX + 103540 + 0 + + + + + 30 + + + + + 40 + + + + + 50 + + + + + 60 + + + + + 70 + + + + + 80 + + + + + 90 + + + + + 100 + + + + + 110 + + + + + 120 + + + + + true + Y + + + + + Y + + + + + + + M + 579cfbe1-54af-4948-a90b-e061ab98d1b2 + 100 + 2024-03-05 18:21:28.585 + false + Mobile Role + true + false + false + true + The Role Window allows you to define the different roles that users of this system will have. Roles control access to windows, tasks, reports, etc. For a client an Administrator and User role are predefined. You may add additional roles to control access for specific functionality or data. +You can add users to the role. +Note that access information is cached and requires re-login or reset of cache. + MOBILE + Maintain User Responsibilities + 100 + 2024-03-05 18:21:28.585 + 53807 + 0 + + + + 0 + + + + + faa10044-cf7f-438a-91fa-278ce69046c5 + 100 + 2024-03-05 18:21:29.6 + Mobile Role + false + true + The Role Window allows you to define the different roles that users of this system will have. Roles control access to windows, tasks, reports, etc. For a client an Administrator and User role are predefined. You may add additional roles to control access for specific functionality or data. +You can add users to the role. +Note that access information is cached and requires re-login or reset of cache. + Maintain User Responsibilities + 100 + 2024-03-05 18:21:29.6 + 53807 + 0 + es_MX + 0 + + + + + Rol + La ventana de rol permite definir los roles diferentes que los usuarios de este sistema tendrán. Los roles controlan el acceso a las ventanas, tareas, informes, etc. Para una compañía un rol de administrador y de usuario son predefinidos. Es posible adicionar roles para controlar el acceso a funcionalidad específica o datos. Los usuarios son adicionados a los roles + Mantener Responsabilidades del Usuario + 53807 + es_MX + + + + + + b739b26b-bd0e-4bb1-8bb4-cd3bd3fe6c31 + 100 + 2024-03-05 18:23:33.361 + 0 + 10 + + false + + + Role + false + false + true + false + true + false + false + true + + N + Define the role and add the client and organizations the role has access to. You can give users access to this role and modify the access of this role to windows, forms, processes and reports as well as tasks. <br> +If the Role User Level is Manual, the assigned acces rights are not automatically updated (e.g. if a role has a restricted number of Windows/Processes it can access). You need to add organizational access unless the role has access to all organizations. The SuperUser and the user creating a new role are assigned to the role automatically. <br> +If you select an Organization Tree, the user has access to the leaves of summary organizations. +Note: You cannot change the System Administrator role. + false + MOBILE + + Define responsibility roles + 100 + 2024-03-05 18:23:33.361 + + 53807 + 156 + 55217 + + 0 + + + + + + 0 + + + + + eaeb827f-d123-43ad-be73-70c18aaa82aa + 100 + 2024-03-05 18:23:34.772 + Role + false + true + Define the role and add the client and organizations the role has access to. You can give users access to this role and modify the access of this role to windows, forms, processes and reports as well as tasks. <br> +If the Role User Level is Manual, the assigned acces rights are not automatically updated (e.g. if a role has a restricted number of Windows/Processes it can access). You need to add organizational access unless the role has access to all organizations. The SuperUser and the user creating a new role are assigned to the role automatically. <br> +If you select an Organization Tree, the user has access to the leaves of summary organizations. +Note: You cannot change the System Administrator role. + Define responsibility roles + 100 + 2024-03-05 18:23:34.772 + + 55217 + 0 + es_MX + 0 + + + + + 8f952102-9845-4ffa-9a83-736fb3baac8a + 100 + 2024-03-05 18:23:44.818 + + 0 + 0 + + + Role + false + false + false + + false + false + false + false + true + false + true + false + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 14 + Responsibility Role + + 100 + 2024-03-05 18:23:44.818 + + 55217 + + + 0 + + 103541 + + + + 531 + 0 + + + + + a6aac37a-4f6a-4104-b31a-02293138f4da + 100 + 2024-03-05 18:23:45.842 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 18:23:45.842 + 0 + es_MX + 103541 + 0 + + + + + 22d5084e-2447-4eec-9f04-5fcee7a407cb + 100 + 2024-03-05 18:23:45.975 + + 0 + 10 + + + Client + false + false + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:23:45.974 + + 55217 + + + 0 + + 103542 + + + + 537 + 0 + + + + + 46e6aaf1-96a8-4c71-996a-5b15eeeab47d + 100 + 2024-03-05 18:23:47.319 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:23:47.319 + 0 + es_MX + 103542 + 0 + + + + + b0d2bc6e-35ba-4d9f-af5c-20594ac84a0a + 100 + 2024-03-05 18:23:47.438 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:23:47.438 + + 55217 + + + 0 + + 103543 + + + + 538 + 0 + + + + + 99c9dbaa-d820-4823-aa20-6a6ba32cccc2 + 100 + 2024-03-05 18:23:48.805 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:23:48.805 + 0 + es_MX + 103543 + 0 + + + + + 7cdf9476-5b8c-4d68-81eb-e9dad4ad2baa + 100 + 2024-03-05 18:23:48.918 + 1 + 0 + 30 + + + Name + false + false + false + + false + false + false + false + true + true + true + true + true + + + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + MOBILE + + 60 + Alphanumeric identifier of the entity + + 100 + 2024-03-05 18:23:48.918 + + 55217 + + + 0 + + 103544 + + + + 532 + 0 + + + + + a78b20f8-ff34-4844-b67a-695832e7dc7f + 100 + 2024-03-05 18:23:49.734 + Name + false + true + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + Alphanumeric identifier of the entity + 100 + 2024-03-05 18:23:49.734 + 0 + es_MX + 103544 + 0 + + + + + 669560d2-515e-4a8e-80df-bc6b0eec0316 + 100 + 2024-03-05 18:23:49.865 + + 0 + 40 + + + Description + false + false + false + + false + false + false + false + true + true + true + true + true + + + A description is limited to 255 characters. + MOBILE + + 60 + Optional short description of the record + + 100 + 2024-03-05 18:23:49.865 + + 55217 + + + 0 + + 103545 + + + + 533 + 0 + + + + + 40df9d42-ff91-4cda-a6a9-ccf125dec412 + 100 + 2024-03-05 18:23:51.277 + Description + false + true + A description is limited to 255 characters. + Optional short description of the record + 100 + 2024-03-05 18:23:51.277 + 0 + es_MX + 103545 + 0 + + + + + c11e025d-0dd6-4539-a010-26149eb16a83 + 100 + 2024-03-05 18:23:51.393 + + 0 + 50 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:23:51.393 + + 55217 + + + 0 + + 103546 + + + + 716 + 0 + + + + + 840be7b5-0260-4ee2-bb29-8169b454965c + 100 + 2024-03-05 18:23:52.411 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:23:52.411 + 0 + es_MX + 103546 + 0 + + + + + 62985323-7f97-4c5c-bfbd-dba3ab380f65 + 100 + 2024-03-05 18:23:52.525 + + 0 + 60 + + + User Level + false + false + false + + false + false + false + false + true + true + true + true + true + + + The User Level field determines if users of this Role will have access to System level data, Organization level data, Client level data or Client and Organization level data. + MOBILE + + 14 + System Client Organization + + 100 + 2024-03-05 18:23:52.525 + + 55217 + + + 0 + + 103547 + + + + 534 + 0 + + + + + 58f41b27-f9f1-45a5-af2f-bde9e54aba3d + 100 + 2024-03-05 18:23:53.616 + User Level + false + true + The User Level field determines if users of this Role will have access to System level data, Organization level data, Client level data or Client and Organization level data. + System Client Organization + 100 + 2024-03-05 18:23:53.616 + 0 + es_MX + 103547 + 0 + + + + + 56385443-e50c-47ea-9bd6-e538e4b9b7a0 + 100 + 2024-03-05 18:23:53.733 + + 0 + 70 + + + Manual + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Manual check box indicates if the process will done manually. + MOBILE + + 1 + This is a manual process + + 100 + 2024-03-05 18:23:53.733 + + 55217 + + + 0 + + 103548 + + + + 9593 + 0 + + + + + 0d39887c-f3ff-4227-87c5-929c6634dc35 + 100 + 2024-03-05 18:23:54.984 + Manual + false + true + The Manual check box indicates if the process will done manually. + This is a manual process + 100 + 2024-03-05 18:23:54.984 + 0 + es_MX + 103548 + 0 + + + + + 07996883-d2ca-488b-82b5-2e35e77d9f19 + 100 + 2024-03-05 18:23:55.084 + + 0 + 80 + + + Currency + false + false + false + + false + false + false + false + true + true + true + true + true + + + Indicates the Currency to be used when processing or reporting on this record + MOBILE + + 14 + The Currency for this record + + 100 + 2024-03-05 18:23:55.084 + + 55217 + + + 0 + + 103549 + 134 + + + 2046 + 0 + + + + + bff061d8-a240-403d-a31f-8fddd8a0f6ea + 100 + 2024-03-05 18:23:55.979 + Currency + false + true + Indicates the Currency to be used when processing or reporting on this record + The Currency for this record + 100 + 2024-03-05 18:23:55.979 + 0 + es_MX + 103549 + 0 + + + + + 4ee0354b-82b6-4630-95ba-9bd829d8261a + 100 + 2024-03-05 18:23:56.193 + + 0 + 90 + + + Approval Amount + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Approval Amount field indicates the amount limit this Role has for approval of documents. + MOBILE + + 26 + The approval amount limit for this role + + 100 + 2024-03-05 18:23:56.193 + + 55217 + + + 0 + + 103550 + + + + 2047 + 0 + + + + + 247999de-6c1b-4c41-8b10-65d9a0af0116 + 100 + 2024-03-05 18:23:57.503 + Approval Amount + false + true + The Approval Amount field indicates the amount limit this Role has for approval of documents. + The approval amount limit for this role + 100 + 2024-03-05 18:23:57.503 + 0 + es_MX + 103550 + 0 + + + + + 0e901f00-c8bd-4aa0-ab4c-9b6ecc2e4dab + 100 + 2024-03-05 18:23:57.619 + + 0 + 100 + + + Approve own Documents + false + false + false + + false + false + false + false + true + true + true + true + true + + + If a user cannot approve their own documents (orders, etc.), it needs to be approved by someone else. + MOBILE + + 1 + Users with this role can approve their own documents + + 100 + 2024-03-05 18:23:57.619 + + 55217 + + + 0 + + 103551 + + + + 11581 + 0 + + + + + 3ca1dd4e-8fd8-4b26-bd9d-68c4f9699ec7 + 100 + 2024-03-05 18:23:58.675 + Approve own Documents + false + true + If a user cannot approve their own documents (orders, etc.), it needs to be approved by someone else. + Users with this role can approve their own documents + 100 + 2024-03-05 18:23:58.675 + 0 + es_MX + 103551 + 0 + + + + + c2200e89-8bdb-4963-8cfb-aaa4db8903f9 + 100 + 2024-03-05 18:23:58.797 + + 0 + 110 + + + UserDiscount + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 22 + + + 100 + 2024-03-05 18:23:58.797 + + 55217 + + + 0 + + 103552 + + + + 52067 + 0 + + + + + 499757f8-4b4a-4f88-bfe7-da20ee7d0759 + 100 + 2024-03-05 18:23:59.752 + UserDiscount + false + true + + + 100 + 2024-03-05 18:23:59.752 + 0 + es_MX + 103552 + 0 + + + + + e0dc2ead-81eb-4b6a-b9fe-7070334c61ef + 100 + 2024-03-05 18:23:59.911 + + 0 + 120 + + + Supervisor + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Supervisor indicates who will be used for forwarding and escalating issues for this user - or for approvals. + MOBILE + + 26 + Supervisor for this user/organization - used for escalation and approval + + 100 + 2024-03-05 18:23:59.911 + + 55217 + + + 0 + + 103553 + + + + 10561 + 0 + + + + + 4184ec76-ba6f-4e7e-b5c7-35cf8d23c304 + 100 + 2024-03-05 18:24:01.095 + Supervisor + false + true + The Supervisor indicates who will be used for forwarding and escalating issues for this user - or for approvals. + Supervisor for this user/organization - used for escalation and approval + 100 + 2024-03-05 18:24:01.095 + 0 + es_MX + 103553 + 0 + + + + + 80374b67-63d5-489c-aba6-2b5985154348 + 100 + 2024-03-05 18:24:01.223 + + 0 + 130 + + + Menu Tree + false + false + false + + false + false + false + false + true + true + true + true + true + + + Menu access tree + MOBILE + + 14 + Tree of the menu + + 100 + 2024-03-05 18:24:01.223 + + 55217 + + + 0 + + 103554 + 135 + + + 6575 + 0 + + + + + 90a45734-9c93-49e6-8f8e-9d1d88e94e87 + 100 + 2024-03-05 18:24:02.245 + Menu Tree + false + true + Menu access tree + Tree of the menu + 100 + 2024-03-05 18:24:02.245 + 0 + es_MX + 103554 + 0 + + + + + 50c75a7f-be85-4bcd-8d96-1198499da4fb + 100 + 2024-03-05 18:24:02.446 + + 0 + 140 + + + Overwrite Price Limit + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Price List allows to enforce the Price Limit. If set, a user with this role can overwrite the price limit (i.e. enter any price). + MOBILE + + 1 + Overwrite Price Limit if the Price List enforces the Price Limit + + 100 + 2024-03-05 18:24:02.445 + + 55217 + + + 0 + + 103555 + + + + 13027 + 0 + + + + + e45489b4-4a14-4c09-b773-0f01932e8f9a + 100 + 2024-03-05 18:24:03.586 + Overwrite Price Limit + false + true + The Price List allows to enforce the Price Limit. If set, a user with this role can overwrite the price limit (i.e. enter any price). + Overwrite Price Limit if the Price List enforces the Price Limit + 100 + 2024-03-05 18:24:03.586 + 0 + es_MX + 103555 + 0 + + + + + 5596b42d-e2ba-4028-9e35-bfb312bd2c07 + 100 + 2024-03-05 18:24:03.749 + + 0 + 150 + + + Preference Level + false + false + false + + false + false + false + false + true + true + true + true + true + + + Preferences allow you to define default values. If set to None, you cannot set any preference nor value preference. Only if set to Client, you can see the Record Info Change Log. + MOBILE + + 14 + Determines what preferences the user can set + + 100 + 2024-03-05 18:24:03.749 + + 55217 + + + 0 + + 103556 + + + + 13026 + 0 + + + + + a8d497e1-21b7-4509-a199-16d8e6e1849f + 100 + 2024-03-05 18:24:05.2 + Preference Level + false + true + Preferences allow you to define default values. If set to None, you cannot set any preference nor value preference. Only if set to Client, you can see the Record Info Change Log. + Determines what preferences the user can set + 100 + 2024-03-05 18:24:05.2 + 0 + es_MX + 103556 + 0 + + + + + 6f0a2eac-201e-4ebf-b9ca-ea614e1c190f + 100 + 2024-03-05 18:24:05.338 + + 0 + 160 + + + Maintain Change Log + true + false + false + + false + false + false + false + true + true + true + true + true + + + If selected, a log of all changes is maintained. + MOBILE + + 1 + Maintain a log of changes + + 100 + 2024-03-05 18:24:05.338 + + 55217 + + + 0 + + 103557 + + + + 13025 + 0 + + + + + 768d96cb-f4c3-49cd-a481-2aec769913d2 + 100 + 2024-03-05 18:24:06.301 + Maintain Change Log + false + true + If selected, a log of all changes is maintained. + Maintain a log of changes + 100 + 2024-03-05 18:24:06.301 + 0 + es_MX + 103557 + 0 + + + + + 52fc27c8-21da-4f2b-a86a-f76d6c8ff781 + 100 + 2024-03-05 18:24:06.428 + + 0 + 170 + + + Show Accounting + false + false + false + + false + false + false + false + true + true + true + true + true + + + This allows to prevent access to any accounting information. + MOBILE + + 1 + Users with this role can see accounting information + + 100 + 2024-03-05 18:24:06.428 + + 55217 + + + 0 + + 103558 + + + + 9887 + 0 + + + + + 159ba8eb-2806-4430-963b-445fcbc09819 + 100 + 2024-03-05 18:24:07.688 + Show Accounting + false + true + This allows to prevent access to any accounting information. + Users with this role can see accounting information + 100 + 2024-03-05 18:24:07.688 + 0 + es_MX + 103558 + 0 + + + + + 8c447437-2b74-4c66-9c3a-e18c1ce85996 + 100 + 2024-03-05 18:24:07.822 + + 0 + 180 + + + Access all Orgs + true + false + false + + false + false + false + false + true + true + true + true + true + + + When selected, the role has access to all organizations of the client automatically. This also increases performance where you have many organizations. + MOBILE + + 1 + Access all Organizations (no org access control) of the client + + 100 + 2024-03-05 18:24:07.822 + + 55217 + + + 0 + + 103559 + + + + 12800 + 0 + + + + + 05a3ac0f-13b7-40b4-bf97-41939ae3728b + 100 + 2024-03-05 18:24:09.024 + Access all Orgs + false + true + When selected, the role has access to all organizations of the client automatically. This also increases performance where you have many organizations. + Access all Organizations (no org access control) of the client + 100 + 2024-03-05 18:24:09.024 + 0 + es_MX + 103559 + 0 + + + + + 1d18836e-12e0-458d-b221-112d373b9baf + 100 + 2024-03-05 18:24:09.216 + + 0 + 190 + + + Organization Tree + false + false + false + + false + false + false + false + true + true + true + true + true + + + Trees are used for (finanial) reporting and security access (via role) + MOBILE + @IsAccessAllOrgs@=N + 14 + Trees are used for (financial) reporting and security access (via role) + + 100 + 2024-03-05 18:24:09.216 + + 55217 + + + 0 + + 103560 + + + + 13435 + 0 + + + + + 5f579c8a-827f-471e-ae5b-03deb2e790e7 + 100 + 2024-03-05 18:24:10.614 + Organization Tree + false + true + Trees are used for (finanial) reporting and security access (via role) + Trees are used for (financial) reporting and security access (via role) + 100 + 2024-03-05 18:24:10.614 + 0 + es_MX + 103560 + 0 + + + + + 49ae783c-5bfc-4956-9a9a-0463d5b773e8 + 100 + 2024-03-05 18:24:10.789 + + 0 + 200 + + + Use User Org Access + true + false + false + + false + false + false + false + true + true + true + true + true + + + You can define the access to Organization either by Role or by User. You would select this, if you have many organizations. + MOBILE + @IsAccessAllOrgs@=N + 1 + Use Org Access defined by user instead of Role Org Access + + 100 + 2024-03-05 18:24:10.789 + + 55217 + + + 0 + + 103561 + + + + 13436 + 0 + + + + + 97bee523-ce7e-4f15-b177-dccf41be4132 + 100 + 2024-03-05 18:24:11.707 + Use User Org Access + false + true + You can define the access to Organization either by Role or by User. You would select this, if you have many organizations. + Use Org Access defined by user instead of Role Org Access + 100 + 2024-03-05 18:24:11.707 + 0 + es_MX + 103561 + 0 + + + + + eb3611b1-f27b-49a9-87e1-c6687b10e7c8 + 100 + 2024-03-05 18:24:11.883 + + 0 + 210 + + + Can Report + false + false + false + + false + false + false + false + true + true + true + true + true + + + You can restrict the ability to report on data. + MOBILE + + 1 + Users with this role can create reports + + 100 + 2024-03-05 18:24:11.883 + + 55217 + + + 0 + + 103562 + + + + 9972 + 0 + + + + + 83fc5f3b-bc4c-4c52-8391-9e51f02dc0ca + 100 + 2024-03-05 18:24:13.067 + Can Report + false + true + You can restrict the ability to report on data. + Users with this role can create reports + 100 + 2024-03-05 18:24:13.067 + 0 + es_MX + 103562 + 0 + + + + + 66743d66-b3df-4627-844e-e00a9ffbb814 + 100 + 2024-03-05 18:24:13.19 + + 0 + 220 + + + Can Export + false + false + false + + false + false + false + false + true + true + true + true + true + + + You can restrict the ability to export data from Adempiere. + MOBILE + + 1 + Users with this role can export data + + 100 + 2024-03-05 18:24:13.19 + + 55217 + + + 0 + + 103563 + + + + 9973 + 0 + + + + + 0a6f51b6-fe2c-4c06-a1c5-90ed4ec79123 + 100 + 2024-03-05 18:24:14.783 + Can Export + false + true + You can restrict the ability to export data from Adempiere. + Users with this role can export data + 100 + 2024-03-05 18:24:14.783 + 0 + es_MX + 103563 + 0 + + + + + 888fde41-a0eb-4dcf-b5d2-d927d9f47690 + 100 + 2024-03-05 18:24:14.994 + 0 + 410 + 230 + 0 + + Can Load + true + false + false + + false + false + false + false + true + true + true + true + true + + + You can restrict the ability to load data from Adempiere. + MOBILE + + 0 + Users with this role can load data + + 100 + 2024-03-05 18:24:14.994 + + 55217 + + + 0 + + 103564 + + + + 83440 + 0 + + + + + 3c53eed0-b3e1-4c52-8763-06bee99d246f + 100 + 2024-03-05 18:24:15.826 + Can Load + false + true + You can restrict the ability to load data from Adempiere. + Users with this role can load data + 100 + 2024-03-05 18:24:15.826 + 0 + es_MX + 103564 + 0 + + + + + 86357fdc-cde7-43bc-906d-d9ce5e3ee520 + 100 + 2024-03-05 18:24:15.982 + + 0 + 240 + + + Personal Lock + false + false + false + + false + false + false + false + true + true + true + true + true + + + If enabled, the user with the role can prevent access of others to personal records. If a record is locked, only the user or people who can read personal locked records can see the record. + MOBILE + + 1 + Allow users with role to lock access to personal records + + 100 + 2024-03-05 18:24:15.982 + + 55217 + + + 0 + + 103565 + + + + 9888 + 0 + + + + + 2b252445-1db3-4d36-b57d-88efbd8bf79a + 100 + 2024-03-05 18:24:17.034 + Personal Lock + false + true + If enabled, the user with the role can prevent access of others to personal records. If a record is locked, only the user or people who can read personal locked records can see the record. + Allow users with role to lock access to personal records + 100 + 2024-03-05 18:24:17.034 + 0 + es_MX + 103565 + 0 + + + + + 3cfe1bee-c2cf-42a4-b74c-ddb680aaf0fe + 100 + 2024-03-05 18:24:17.176 + + 0 + 250 + + + Personal Access + true + false + false + + false + false + false + false + true + true + true + true + true + + + Users of this role have access to all records locked as personal. + MOBILE + + 1 + Allow access to all personal records + + 100 + 2024-03-05 18:24:17.176 + + 55217 + + + 0 + + 103566 + + + + 9886 + 0 + + + + + e9719424-0063-4a8b-9d95-4a0ceaeb9dd5 + 100 + 2024-03-05 18:24:18.121 + Personal Access + false + true + Users of this role have access to all records locked as personal. + Allow access to all personal records + 100 + 2024-03-05 18:24:18.121 + 0 + es_MX + 103566 + 0 + + + + + b02a56b3-c4f6-4636-abc7-62d5f54ad320 + 100 + 2024-03-05 18:24:18.253 + + 0 + 260 + + + Confirm Query Records + false + false + false + + false + false + false + false + true + true + true + true + true + + + Enter the number of records the query will return without confirmation to avoid unnecessary system load. If 0, the system default of 500 is used. + MOBILE + + 10 + Require Confirmation if more records will be returned by the query (If not defined 500) + + 100 + 2024-03-05 18:24:18.253 + + 55217 + + + 0 + + 103567 + + + + 14442 + 0 + + + + + a42db7a1-a937-44aa-8ae8-2c9ccfb9ccb4 + 100 + 2024-03-05 18:24:19.549 + Confirm Query Records + false + true + Enter the number of records the query will return without confirmation to avoid unnecessary system load. If 0, the system default of 500 is used. + Require Confirmation if more records will be returned by the query (If not defined 500) + 100 + 2024-03-05 18:24:19.549 + 0 + es_MX + 103567 + 0 + + + + + ad1db017-c14c-41d9-8e16-2e5a178a320f + 100 + 2024-03-05 18:24:19.793 + + 0 + 270 + + + Max Query Records + true + false + false + + false + false + false + false + true + true + true + true + true + + + Enter the number of records a user will be able to query to avoid unnecessary system load. If 0, no restrictions are imposed. + MOBILE + + 10 + If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records + + 100 + 2024-03-05 18:24:19.793 + + 55217 + + + 0 + + 103568 + + + + 14443 + 0 + + + + + 1a97c6d3-fc11-479a-a9ef-7ee3a86bd833 + 100 + 2024-03-05 18:24:20.784 + Max Query Records + false + true + Enter the number of records a user will be able to query to avoid unnecessary system load. If 0, no restrictions are imposed. + If defined, you cannot query more records as defined - the query criteria needs to be changed to query less records + 100 + 2024-03-05 18:24:20.784 + 0 + es_MX + 103568 + 0 + + + + + e9c6135e-5325-4be0-a56e-e6c31e4cd23d + 100 + 2024-03-05 18:24:20.931 + + 0 + 280 + + + Connection Profile + false + false + false + + false + false + false + false + true + true + true + true + true + + + Depending on the connection profile, different protocols are used and tasks are performed on the server rather then the client. Usually the user can select different profiles, unless it is enforced by the User or Role definition. The User level profile overwrites the Role based profile. + MOBILE + + 1 + How a Java Client connects to the server(s) + + 100 + 2024-03-05 18:24:20.931 + + 55217 + + + 0 + + 103569 + + + + 14618 + 0 + + + + + a866cd38-bebe-4855-8193-4062f0408058 + 100 + 2024-03-05 18:24:22.43 + Connection Profile + false + true + Depending on the connection profile, different protocols are used and tasks are performed on the server rather then the client. Usually the user can select different profiles, unless it is enforced by the User or Role definition. The User level profile overwrites the Role based profile. + How a Java Client connects to the server(s) + 100 + 2024-03-05 18:24:22.43 + 0 + es_MX + 103569 + 0 + + + + + db86412e-edb4-417f-ad8f-50c5a32671c1 + 100 + 2024-03-05 18:24:22.582 + + 0 + 290 + + + Allow Info Account + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:22.582 + + 55217 + + + 0 + + 103570 + 50000 + + + 50198 + 0 + + + + + 6ed7e32c-da08-4124-b9be-5d3a1e3a9c82 + 100 + 2024-03-05 18:24:23.853 + Allow Info Account + false + true + + + 100 + 2024-03-05 18:24:23.853 + 0 + es_MX + 103570 + 0 + + + + + 932fe0d6-450d-4385-8cc3-f0618c2538a9 + 100 + 2024-03-05 18:24:24.021 + + 0 + 300 + + + Allow Info Asset + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:24.02 + + 55217 + + + 0 + + 103571 + 50000 + + + 50199 + 0 + + + + + 3fe3cfb4-f7f2-4339-8723-19e7a7ea067a + 100 + 2024-03-05 18:24:25.426 + Allow Info Asset + false + true + + + 100 + 2024-03-05 18:24:25.426 + 0 + es_MX + 103571 + 0 + + + + + f2c42733-31c9-456b-bc39-384c768f0c78 + 100 + 2024-03-05 18:24:25.56 + + 0 + 310 + + + Allow Info BPartner + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:25.56 + + 55217 + + + 0 + + 103572 + 50000 + + + 50200 + 0 + + + + + fd5b7125-0fea-40bf-a50d-55898b8a127a + 100 + 2024-03-05 18:24:26.921 + Allow Info BPartner + false + true + + + 100 + 2024-03-05 18:24:26.921 + 0 + es_MX + 103572 + 0 + + + + + 5d003c80-f9da-42e4-a726-849d0815019f + 100 + 2024-03-05 18:24:27.077 + + 0 + 320 + + + Allow Info CashJournal + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:27.077 + + 55217 + + + 0 + + 103573 + 50000 + + + 50201 + 0 + + + + + c1afae12-1dce-483e-8447-093c309da591 + 100 + 2024-03-05 18:24:28.341 + Allow Info CashJournal + false + true + + + 100 + 2024-03-05 18:24:28.341 + 0 + es_MX + 103573 + 0 + + + + + b7b5962e-3d6e-4a4c-860d-61047c14ecf1 + 100 + 2024-03-05 18:24:28.485 + + 0 + 330 + + + Allow Info InOut + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:28.485 + + 55217 + + + 0 + + 103574 + 50000 + + + 50202 + 0 + + + + + 5893cb64-e0b3-4c93-8d26-a565e2ed504d + 100 + 2024-03-05 18:24:29.665 + Allow Info InOut + false + true + + + 100 + 2024-03-05 18:24:29.665 + 0 + es_MX + 103574 + 0 + + + + + fbd3da2b-4254-4c53-8b91-42bdd5c4bef1 + 100 + 2024-03-05 18:24:29.811 + + 0 + 340 + + + Allow Info Invoice + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:29.811 + + 55217 + + + 0 + + 103575 + 50000 + + + 50203 + 0 + + + + + aeb050bb-a61f-43be-b5fe-80ac905e0d7e + 100 + 2024-03-05 18:24:30.978 + Allow Info Invoice + false + true + + + 100 + 2024-03-05 18:24:30.978 + 0 + es_MX + 103575 + 0 + + + + + 973c552e-1749-434c-91ec-965effe1cbfd + 100 + 2024-03-05 18:24:31.159 + + 0 + 350 + + + Allow Info Order + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:31.159 + + 55217 + + + 0 + + 103576 + 50000 + + + 50204 + 0 + + + + + d0ed994d-6a23-4097-9dda-b00586efca2f + 100 + 2024-03-05 18:24:32.202 + Allow Info Order + false + true + + + 100 + 2024-03-05 18:24:32.202 + 0 + es_MX + 103576 + 0 + + + + + 10743f93-f745-47b5-809f-aec4beb055ae + 100 + 2024-03-05 18:24:32.364 + + 0 + 360 + + + Allow Info Payment + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:32.364 + + 55217 + + + 0 + + 103577 + 50000 + + + 50205 + 0 + + + + + 34e90c5f-8db8-4e4b-a6dc-f23d32035788 + 100 + 2024-03-05 18:24:33.386 + Allow Info Payment + false + true + + + 100 + 2024-03-05 18:24:33.386 + 0 + es_MX + 103577 + 0 + + + + + 57319a84-9a4e-4834-89ff-f6ac521cf892 + 100 + 2024-03-05 18:24:33.537 + + 0 + 370 + + + Allow Info Product + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:33.537 + + 55217 + + + 0 + + 103578 + 50000 + + + 50206 + 0 + + + + + c5523c6b-bde4-4524-9ed9-3164ec27d9d9 + 100 + 2024-03-05 18:24:34.787 + Allow Info Product + false + true + + + 100 + 2024-03-05 18:24:34.787 + 0 + es_MX + 103578 + 0 + + + + + 79fa4cee-0bb9-4f45-894f-6311619d5364 + 100 + 2024-03-05 18:24:34.941 + + 0 + 380 + + + Allow Info Resource + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:34.941 + + 55217 + + + 0 + + 103579 + 50000 + + + 50207 + 0 + + + + + 6c3bcfa1-17d1-487e-8e3d-cb361d0e0f36 + 100 + 2024-03-05 18:24:35.96 + Allow Info Resource + false + true + + + 100 + 2024-03-05 18:24:35.96 + 0 + es_MX + 103579 + 0 + + + + + 4d232178-415a-4554-bd3c-0b6ebb11f76f + 100 + 2024-03-05 18:24:36.187 + + 0 + 390 + + + Allow Info Schedule + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:36.187 + + 55217 + + + 0 + + 103580 + 50000 + + + 50208 + 0 + + + + + f9c0c65a-3f40-46d9-af7c-add661b5f6c0 + 100 + 2024-03-05 18:24:37.699 + Allow Info Schedule + false + true + + + 100 + 2024-03-05 18:24:37.699 + 0 + es_MX + 103580 + 0 + + + + + 0bcd8cd0-3df1-48c5-b3ec-e7dd07e7da60 + 100 + 2024-03-05 18:24:37.856 + + 0 + 400 + + + Allow Info CRP + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:37.856 + + 55217 + + + 0 + + 103581 + + + + 55333 + 0 + + + + + 08b3b10d-be68-46dd-b92d-37e5e0e1b7c5 + 100 + 2024-03-05 18:24:39.522 + Allow Info CRP + false + true + + + 100 + 2024-03-05 18:24:39.522 + 0 + es_MX + 103581 + 0 + + + + + 6577ca6c-edfd-4442-96bf-d880fabf0f66 + 100 + 2024-03-05 18:24:39.681 + + 0 + 410 + + + Allow Info MRP + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:39.681 + + 55217 + + + 0 + + 103582 + + + + 55332 + 0 + + + + + 9d04c88f-8e5d-45dd-884b-faa452b669c1 + 100 + 2024-03-05 18:24:40.715 + Allow Info MRP + false + true + + + 100 + 2024-03-05 18:24:40.715 + 0 + es_MX + 103582 + 0 + + + + + a1ff02e2-c69d-49af-89bf-7df6ec3aa5db + 100 + 2024-03-05 18:24:40.874 + 0 + 420 + 420 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 18:24:40.874 + + 55217 + + + 0 + + 103583 + + + + 100952 + 0 + + + + + 76588ce9-c84e-4046-be3d-445e5f3ba201 + 100 + 2024-03-05 18:24:41.914 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 18:24:41.914 + 0 + es_MX + 103583 + 0 + + + + + bc878310-d7f9-48c5-a843-686dd47a4991 + 100 + 2024-03-05 18:24:42.071 + + 0 + 0 + + + Allow HTML View + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:42.071 + + 55217 + + + 0 + + 103584 + + + + 78536 + 0 + + + + + 72859159-6973-473d-8000-e7325c1002a7 + 100 + 2024-03-05 18:24:43.547 + Allow HTML View + false + true + + + 100 + 2024-03-05 18:24:43.547 + 0 + es_MX + 103584 + 0 + + + + + 86c3c7a3-6192-488d-b07c-ed50fdddcf38 + 100 + 2024-03-05 18:24:43.822 + + 0 + 0 + + + Allow XLS View + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + + + 100 + 2024-03-05 18:24:43.822 + + 55217 + + + 0 + + 103585 + + + + 78537 + 0 + + + + + 960f3cb8-f98d-42aa-8e0d-c9af44b00cc9 + 100 + 2024-03-05 18:24:44.991 + Allow XLS View + false + true + + + 100 + 2024-03-05 18:24:44.991 + 0 + es_MX + 103585 + 0 + + + + + Rol + Define el rol y adiciona la compañía y organizaciones a las cuales el rol tiene acceso. Es posible asignar usuarios acceso a este rol para que tengan acceso a las diferentes ventanas, procesos y tareas. + Definir roles de responsabilidad + 55217 + es_MX + + + + + true + Y + + + + + AD_Role.MOBILE_IsMobile='Y' + + + + + + 57e9d761-daf2-40da-afe0-07dddf9cceb0 + 100 + 2024-03-05 18:28:26.488 + 1 + 20 + + false + + + Org Access + false + false + false + false + true + false + false + true + + N + Add the client and organizations the user has access to. Entries here are ignored, if User Org Access is selected or the role has access to all roles.<br> +Note that access information is cached and requires re-login or reset of cache. + false + MOBILE + + Maintain Role Org Access + 100 + 2024-03-05 18:28:26.488 + + 53807 + 422 + 55218 + + 0 + + + + + 5507 + 0 + + + + + 60221222-b8e6-4fc8-a749-5114ac9ab477 + 100 + 2024-03-05 18:28:27.686 + Org Access + false + true + Add the client and organizations the user has access to. Entries here are ignored, if User Org Access is selected or the role has access to all roles.<br> +Note that access information is cached and requires re-login or reset of cache. + Maintain Role Org Access + 100 + 2024-03-05 18:28:27.686 + + 55218 + 0 + es_MX + 0 + + + + + Acceso a Organización + Adicionar las organizaciones a las cuales el usuario tiene acceso. Solamente adiciones organizaciones que hagan parte de la compañía a la cual pertenece el rol. + Mantener Acceso a Organización + 55218 + es_MX + + + + + ff6a1794-c764-4813-a1f4-955f32c984af + 100 + 2024-03-05 18:28:48.153 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:28:48.153 + + 55218 + + + 0 + + 103587 + + + + 5509 + 0 + + + + + 60b0d165-fbbd-4639-bca0-d3bf23f2874c + 100 + 2024-03-05 18:28:49.448 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:28:49.448 + 0 + es_MX + 103587 + 0 + + + + + e5963f33-e0d3-4774-8e00-93c2aaa3530f + 100 + 2024-03-05 18:28:49.564 + 1 + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:28:49.564 + + 55218 + + + 0 + + 103588 + + + + 5508 + 0 + + + + + e4ae281a-5a2e-4e0c-96bc-4e22127e0e0d + 100 + 2024-03-05 18:28:50.584 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:28:50.584 + 0 + es_MX + 103588 + 0 + + + + + 66b231d3-bf98-4de2-a8d5-1f6d49d31760 + 100 + 2024-03-05 18:28:50.7 + + 0 + 30 + + + Role + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 14 + Responsibility Role + + 100 + 2024-03-05 18:28:50.7 + + 55218 + + + 0 + + 103589 + + + + 5507 + 0 + + + + + 2bcacdd2-b6a3-46ad-bb37-f0bc7a49fefe + 100 + 2024-03-05 18:28:51.952 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 18:28:51.952 + 0 + es_MX + 103589 + 0 + + + + + efd44c8d-2106-428e-95c0-42b0dae201ff + 100 + 2024-03-05 18:28:52.066 + + 0 + 40 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:28:52.066 + + 55218 + + + 0 + + 103590 + + + + 5510 + 0 + + + + + 921ddfbe-019d-4829-8288-0d0d1a1787f4 + 100 + 2024-03-05 18:28:53.04 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:28:53.04 + 0 + es_MX + 103590 + 0 + + + + + 21fb58ac-0227-4133-a896-4b55021e7ac8 + 100 + 2024-03-05 18:28:53.217 + + 0 + 50 + + + Read Only + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Read Only indicates that this field may only be Read. It may not be updated. + MOBILE + + 1 + Field is read only + + 100 + 2024-03-05 18:28:53.217 + + 55218 + + + 0 + + 103591 + + + + 13437 + 0 + + + + + f8e3a197-9b22-4016-96a5-0c56d68bea3f + 100 + 2024-03-05 18:28:54.306 + Read Only + false + true + The Read Only indicates that this field may only be Read. It may not be updated. + Field is read only + 100 + 2024-03-05 18:28:54.306 + 0 + es_MX + 103591 + 0 + + + + + + 12b28ffc-20f2-43ad-8b53-bee46a35c00c + 100 + 2024-03-05 18:29:32.487 + 1 + 30 + + false + + + User Assignment + false + false + false + false + true + false + false + true + + N + The User Assignment Tab displays Users who have been defined for this Role. + false + MOBILE + + Users with this Role + 100 + 2024-03-05 18:29:32.487 + + 53807 + 157 + 55219 + + 0 + + + + + 542 + 0 + + + + + 3b32a0d7-ded6-45c0-821b-451c3ea41d8d + 100 + 2024-03-05 18:29:33.484 + User Assignment + false + true + The User Assignment Tab displays Users who have been defined for this Role. + Users with this Role + 100 + 2024-03-05 18:29:33.484 + + 55219 + 0 + es_MX + 0 + + + + + Asignación de Usuario + La pestaña de asignación de usuarios despliega usuarios que han sido definidos para este rol. + Usuarios con este rol + 55219 + es_MX + + + + + a700e1c0-0290-410f-83bb-e0772ccc6d99 + 100 + 2024-03-05 18:30:00.011 + + 0 + 0 + + + Immutable Universally Unique Identifier + false + false + false + + false + false + false + false + true + false + true + true + true + + + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + MOBILE + + 10 + Immutable Universally Unique Identifier + + 100 + 2024-03-05 18:30:00.011 + + 55219 + + + 0 + + 103592 + + + + 84458 + 0 + + + + + 937fabce-6368-4e09-ae1a-1259cd33ffba + 100 + 2024-03-05 18:30:01.006 + Immutable Universally Unique Identifier + false + true + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + Immutable Universally Unique Identifier + 100 + 2024-03-05 18:30:01.006 + 0 + es_MX + 103592 + 0 + + + + + d88c503a-b754-4b6b-9ac3-aec301f42d35 + 100 + 2024-03-05 18:30:01.134 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:30:01.134 + + 55219 + + + 0 + + 103593 + + + + 972 + 0 + + + + + ca711d93-f42e-456e-b46a-4510ab4f3703 + 100 + 2024-03-05 18:30:02.117 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:30:02.117 + 0 + es_MX + 103593 + 0 + + + + + 52f0b9ec-450c-40f9-9315-de08c3a54d75 + 100 + 2024-03-05 18:30:02.214 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:30:02.214 + + 55219 + + + 0 + + 103594 + + + + 973 + 0 + + + + + 962e511f-3509-4b04-b40a-200fe02a6552 + 100 + 2024-03-05 18:30:03.663 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:30:03.663 + 0 + es_MX + 103594 + 0 + + + + + 62719bd8-bcaa-4cc2-8c00-49ca5eaa0712 + 100 + 2024-03-05 18:30:03.773 + + 0 + 30 + + + Role + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 26 + Responsibility Role + + 100 + 2024-03-05 18:30:03.773 + + 55219 + + + 0 + + 103595 + + + + 542 + 0 + + + + + c65c05c4-6de6-4462-a86f-b81b41720f1e + 100 + 2024-03-05 18:30:05.257 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 18:30:05.257 + 0 + es_MX + 103595 + 0 + + + + + 187509ff-56ad-4a49-b7f1-b310a361284f + 100 + 2024-03-05 18:30:05.376 + + 0 + 40 + + + Default + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Default Checkbox indicates if this record will be used as a default value. + MOBILE + + 1 + Default value + + 100 + 2024-03-05 18:30:05.376 + + 55219 + + + 0 + + 103596 + + + + 89838 + 0 + + + + + bbb4fce6-a05a-471a-ac3e-c6061c3cdd37 + 100 + 2024-03-05 18:30:06.824 + Default + false + true + The Default Checkbox indicates if this record will be used as a default value. + Default value + 100 + 2024-03-05 18:30:06.824 + 0 + es_MX + 103596 + 0 + + + + + 83118291-ce70-4f96-a7c0-7a44a4860910 + 100 + 2024-03-05 18:30:06.936 + 1 + 0 + 50 + + + User/Contact + false + false + false + + false + false + false + false + true + true + true + true + true + + + The User identifies a unique user in the system. This could be an internal user or a business partner contact + MOBILE + + 26 + User within the system - Internal or Business Partner Contact + + 100 + 2024-03-05 18:30:06.936 + + 55219 + + + 0 + + 103597 + + + + 971 + 0 + + + + + 4c21dedd-461f-4840-ae35-d86b66e72a07 + 100 + 2024-03-05 18:30:08.004 + User/Contact + false + true + The User identifies a unique user in the system. This could be an internal user or a business partner contact + User within the system - Internal or Business Partner Contact + 100 + 2024-03-05 18:30:08.004 + 0 + es_MX + 103597 + 0 + + + + + b6f6e470-98c9-4182-9028-2ec33f861ea2 + 100 + 2024-03-05 18:30:08.138 + + 0 + 60 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:30:08.138 + + 55219 + + + 0 + + 103598 + + + + 721 + 0 + + + + + be3556aa-3912-4d48-a549-d22ba55e7875 + 100 + 2024-03-05 18:30:09.267 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:30:09.267 + 0 + es_MX + 103598 + 0 + + + + + + 82e4c412-2ed6-42a5-a7db-da7a58608d2c + 100 + 2024-03-05 18:30:45.504 + 1 + 40 + + false + + + Form Access + false + false + false + false + true + false + false + true + + N + The Form Access Tab defines the Forms and type of access that this Role is granted. + false + MOBILE + + Form Access + 100 + 2024-03-05 18:30:45.504 + + 53807 + 378 + 55220 + + 0 + + + + + 4624 + 0 + + + + + 38fa5772-548a-4048-b49d-fd0ae976bb59 + 100 + 2024-03-05 18:30:46.803 + Form Access + false + true + The Form Access Tab defines the Forms and type of access that this Role is granted. + Form Access + 100 + 2024-03-05 18:30:46.803 + + 55220 + 0 + es_MX + 0 + + + + + Acceso a Forma + La pestaña Acceso de Formas define las formas y el tipo de acceso que este rol tiene. + Acceso a Forma + 55220 + es_MX + + + + + f866a6c6-b541-4519-9591-b0c153ef6196 + 100 + 2024-03-05 18:31:03.583 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:31:03.583 + + 55220 + + + 0 + + 103599 + + + + 4625 + 0 + + + + + 2cbdec39-5eba-4e4b-9ab1-d215f9765d35 + 100 + 2024-03-05 18:31:04.984 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:31:04.984 + 0 + es_MX + 103599 + 0 + + + + + d9ac2a3c-b513-46ef-8554-2193a9229ca1 + 100 + 2024-03-05 18:31:05.142 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:31:05.142 + + 55220 + + + 0 + + 103600 + + + + 4626 + 0 + + + + + 25143211-480d-4c22-ba5e-90528382a8be + 100 + 2024-03-05 18:31:06.169 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:31:06.169 + 0 + es_MX + 103600 + 0 + + + + + 5f5f79a7-4643-47ff-ac4b-f41f945f9d9c + 100 + 2024-03-05 18:31:06.473 + + 0 + 30 + + + Role + false + true + false + + false + false + false + false + true + true + true + true + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 14 + Responsibility Role + + 100 + 2024-03-05 18:31:06.473 + + 55220 + + + 0 + + 103601 + + + + 4624 + 0 + + + + + 09262ec8-b644-428e-97a7-e7747a77feeb + 100 + 2024-03-05 18:31:07.898 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 18:31:07.898 + 0 + es_MX + 103601 + 0 + + + + + f50f56e0-6751-41ac-a50b-58df25077783 + 100 + 2024-03-05 18:31:08.082 + 1 + 0 + 40 + + + Special Form + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Special Form field identifies a unique Special Form in the system. + MOBILE + + 14 + Special Form + + 100 + 2024-03-05 18:31:08.082 + + 55220 + + + 0 + + 103602 + + + + 4623 + 0 + + + + + d176bead-d235-4dd1-b99e-ca8e5c6a89a8 + 100 + 2024-03-05 18:31:09.163 + Special Form + false + true + The Special Form field identifies a unique Special Form in the system. + Special Form + 100 + 2024-03-05 18:31:09.163 + 0 + es_MX + 103602 + 0 + + + + + 9fcc5f3b-0f2e-4863-a626-d55a6eec2b9e + 100 + 2024-03-05 18:31:09.274 + + 0 + 50 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:31:09.274 + + 55220 + + + 0 + + 103603 + + + + 4627 + 0 + + + + + 5b9ace12-9186-4862-95fe-1ab674459b9b + 100 + 2024-03-05 18:31:10.308 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:31:10.308 + 0 + es_MX + 103603 + 0 + + + + + 35374ded-9308-4647-b93b-48c8e01c19c1 + 100 + 2024-03-05 18:31:10.428 + + 0 + 60 + + + Read Write + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Read Write indicates that this field may be read and updated. + MOBILE + + 1 + Field is read / write + + 100 + 2024-03-05 18:31:10.428 + + 55220 + + + 0 + + 103604 + + + + 4632 + 0 + + + + + 2d014644-f944-4736-9b91-687d03bf7151 + 100 + 2024-03-05 18:31:11.547 + Read Write + false + true + The Read Write indicates that this field may be read and updated. + Field is read / write + 100 + 2024-03-05 18:31:11.547 + 0 + es_MX + 103604 + 0 + + + + + 0 + 0 + M + 514efe74-d624-4f6d-893f-83851b0f61bd + 100 + 2024-03-05 18:32:14.834 + false + Mobile User + true + false + false + true + The User Window allows you to maintain User of the system. Users can log into the system and have access to functionality via one or more roles. A user can also be a business partner contact. + MOBILE + Maintain Users of the system + 100 + 2024-03-05 18:32:14.834 + 53808 + 0 + + + + 0 + + + + + 79ce19ab-1a3d-4d02-ba41-88f5b69a19d4 + 100 + 2024-03-05 18:32:16.171 + Mobile User + false + true + The User Window allows you to maintain User of the system. Users can log into the system and have access to functionality via one or more roles. A user can also be a business partner contact. + Maintain Users of the system + 100 + 2024-03-05 18:32:16.171 + 53808 + 0 + es_MX + 0 + + + + + Usuario Móvil + La ventana de usuario permite que se defina cada usuario en el sistema. Los usuarios pueden entrar al sistema y tener acceso a la funcionalidad via uno o más roles. + Mantener Usuarios del Sistema + 53808 + es_MX + + + + + Rol Móvil + 53807 + es_MX + + + + + + 4ba8d415-52fc-4671-b8ce-ca16f7ec88e4 + 100 + 2024-03-05 18:33:18.528 + 0 + 10 + + false + + + User Contact + false + false + true + false + true + false + false + true + + N + The User Tab defines the log in for Users who have access to the system. For application access, users need to have a role assigned. + false + MOBILE + + Maintain User or Business Partner Contact + 100 + 2024-03-05 18:33:18.528 + + 53808 + 114 + 55221 + + 0 + + + + + + 0 + + + + + 9fc146fd-8935-43ba-82fa-3049fa424007 + 100 + 2024-03-05 18:33:19.81 + User Contact + false + true + The User Tab defines the log in for Users who have access to the system. For application access, users need to have a role assigned. + Maintain User or Business Partner Contact + 100 + 2024-03-05 18:33:19.81 + + 55221 + 0 + es_MX + 0 + + + + + Usuario + La pestaña de usuario define la bitácora de usuarios que han tenido acceso al sistema. + Usuario + 55221 + es_MX + + + + + 5360d9a1-7e1f-445d-8aa0-8c976dd8660f + 100 + 2024-03-05 18:33:40.655 + + 0 + 0 + + + Process Now + false + false + false + + false + false + false + false + true + false + true + false + true + + + + MOBILE + + 23 + + + 100 + 2024-03-05 18:33:40.655 + + 55221 + + + 0 + + 103605 + + + + 6314 + 0 + + + + + 78a19501-81e9-4dca-acbc-34366ad6288b + 100 + 2024-03-05 18:33:41.896 + Process Now + false + true + + + 100 + 2024-03-05 18:33:41.896 + 0 + es_MX + 103605 + 0 + + + + + 9c5bb7c9-3353-4bdd-a31c-82784b168bca + 100 + 2024-03-05 18:33:42.038 + + 0 + 0 + + + Salt + false + false + false + + false + false + false + false + true + false + true + true + true + + + + MOBILE + + 16 + Random data added to improve password hash effectiveness + + 100 + 2024-03-05 18:33:42.038 + + 55221 + + + 0 + + 103606 + + + + 61756 + 0 + + + + + 1f72a48c-92a9-4777-bc47-984a114cd6d1 + 100 + 2024-03-05 18:33:43.454 + Salt + false + true + + Random data added to improve password hash effectiveness + 100 + 2024-03-05 18:33:43.454 + 0 + es_MX + 103606 + 0 + + + + + 3bfe40f7-688a-4b2f-9330-039846fa735d + 100 + 2024-03-05 18:33:43.601 + + 0 + 0 + + + Is In Payroll + false + false + false + + false + false + false + false + true + false + true + true + true + + + + MOBILE + + 1 + Defined if any User Contact will be used for Calculate Payroll + + 100 + 2024-03-05 18:33:43.601 + + 55221 + + + 0 + + 103607 + + + + 56294 + 0 + + + + + 7c55cde4-50f2-4beb-9c82-d7716584371b + 100 + 2024-03-05 18:33:44.769 + Is In Payroll + false + true + + Defined if any User Contact will be used for Calculate Payroll + 100 + 2024-03-05 18:33:44.769 + 0 + es_MX + 103607 + 0 + + + + + 8137faa8-c978-4624-b5e1-4db179dc120b + 100 + 2024-03-05 18:33:44.894 + + 0 + 0 + + + User/Contact + false + false + false + + false + false + false + false + true + false + true + false + true + + + The User identifies a unique user in the system. This could be an internal user or a business partner contact + MOBILE + + 14 + User within the system - Internal or Business Partner Contact + + 100 + 2024-03-05 18:33:44.894 + + 55221 + + + 0 + + 103608 + + + + 212 + 0 + + + + + c994e75a-f8f9-4ff4-8a05-cdf18c3fd856 + 100 + 2024-03-05 18:33:46.25 + User/Contact + false + true + The User identifies a unique user in the system. This could be an internal user or a business partner contact + User within the system - Internal or Business Partner Contact + 100 + 2024-03-05 18:33:46.25 + 0 + es_MX + 103608 + 0 + + + + + 5b5102a7-86a4-4520-95be-b8ff61f34c2c + 100 + 2024-03-05 18:33:46.44 + + 0 + 10 + + + Client + false + false + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:33:46.44 + + 55221 + + + 0 + + 103609 + + + + 422 + 0 + + + + + 0db985ce-379a-4baf-ab9c-322cef169bb5 + 100 + 2024-03-05 18:33:47.63 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:33:47.63 + 0 + es_MX + 103609 + 0 + + + + + 61199f08-c816-4b2a-826b-cb34c9aa0b6f + 100 + 2024-03-05 18:33:47.725 + + 0 + 20 + + + Organization + true + false + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:33:47.725 + + 55221 + + + 0 + + 103610 + + + + 423 + 0 + + + + + d96bd6c1-d729-467f-9fab-ce9262c56734 + 100 + 2024-03-05 18:33:48.681 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:33:48.681 + 0 + es_MX + 103610 + 0 + + + + + 4bb05e92-cbfe-4328-a821-8c22c39e0cf1 + 100 + 2024-03-05 18:33:48.833 + 1 + 0 + 30 + + + Name + false + false + false + + false + false + false + false + true + true + true + true + true + + + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + MOBILE + + 60 + Alphanumeric identifier of the entity + + 100 + 2024-03-05 18:33:48.833 + + 55221 + + + 0 + + 103611 + 50057 + + + 213 + 0 + + + + + 38f46c91-1ab5-4238-977d-ed01bfeb1a64 + 100 + 2024-03-05 18:33:50.099 + Name + false + true + The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length. + Alphanumeric identifier of the entity + 100 + 2024-03-05 18:33:50.099 + 0 + es_MX + 103611 + 0 + + + + + 5f2ce3d9-2cbd-4ad9-853a-cf47d768275c + 100 + 2024-03-05 18:33:50.203 + 0 + 440 + 40 + 0 + + Name 2 + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 0 + Additional Name + + 100 + 2024-03-05 18:33:50.203 + + 55221 + + + 0 + + 103612 + + + + 97208 + 0 + + + + + dc7de389-a7dd-43f5-9bd2-920af6b879ec + 100 + 2024-03-05 18:33:51.203 + Name 2 + false + true + + Additional Name + 100 + 2024-03-05 18:33:51.203 + 0 + es_MX + 103612 + 0 + + + + + 9497cfa6-c05d-4443-adcc-d1f4301d7cb6 + 100 + 2024-03-05 18:33:51.397 + + 0 + 50 + + + Description + false + false + false + + false + false + false + false + true + true + true + true + true + + + A description is limited to 255 characters. + MOBILE + + 60 + Optional short description of the record + + 100 + 2024-03-05 18:33:51.396 + + 55221 + + + 0 + + 103613 + + + + 214 + 0 + + + + + c4ed1127-d8a9-49c5-80d5-a15a1f2683b4 + 100 + 2024-03-05 18:33:52.46 + Description + false + true + A description is limited to 255 characters. + Optional short description of the record + 100 + 2024-03-05 18:33:52.46 + 0 + es_MX + 103613 + 0 + + + + + 11e52e87-0624-4b6c-8509-8c21e1426413 + 100 + 2024-03-05 18:33:52.578 + + 0 + 60 + + + Comments + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Comments field allows for free form entry of additional information. + MOBILE + + 60 + Comments or additional information + + 100 + 2024-03-05 18:33:52.578 + + 55221 + + + 0 + + 103614 + + + + 8752 + 0 + + + + + 44296eac-d0f6-4086-8001-c217fc25786b + 100 + 2024-03-05 18:33:53.762 + Comments + false + true + The Comments field allows for free form entry of additional information. + Comments or additional information + 100 + 2024-03-05 18:33:53.762 + 0 + es_MX + 103614 + 0 + + + + + 50115282-4b11-4f1e-9feb-fd385ee3245e + 100 + 2024-03-05 18:33:53.874 + 0 + 420 + 70 + 0 + + Logo + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 0 + + + 100 + 2024-03-05 18:33:53.874 + + 55221 + + + 0 + + 103615 + 50061 + + + 93133 + 0 + + + + + 84f85149-78a7-4621-8cf8-eabe0f9ac66a + 100 + 2024-03-05 18:33:55.177 + Logo + false + true + + + 100 + 2024-03-05 18:33:55.177 + 0 + es_MX + 103615 + 0 + + + + + 6f50cfe1-ef6a-4c9f-b520-0482f0a8c3ae + 100 + 2024-03-05 18:33:55.285 + 0 + 410 + 80 + 0 + + Image URL + true + false + false + + false + false + false + false + true + true + true + true + true + + + URL of image; The image is not stored in the database, but retrieved at runtime. The image can be a gif, jpeg or png. + MOBILE + + 0 + URL of image + + 100 + 2024-03-05 18:33:55.285 + + 55221 + + + 0 + + 103616 + + + + 93132 + 0 + + + + + 8613aaae-cea4-4879-9557-3e81fe4855fc + 100 + 2024-03-05 18:33:56.296 + Image URL + false + true + URL of image; The image is not stored in the database, but retrieved at runtime. The image can be a gif, jpeg or png. + URL of image + 100 + 2024-03-05 18:33:56.296 + 0 + es_MX + 103616 + 0 + + + + + 3fb70ee0-3c60-4cfe-84cd-385594d82baa + 100 + 2024-03-05 18:33:56.42 + + 0 + 90 + + + Business Partner + false + false + false + + false + false + false + false + true + true + true + true + true + + + A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson + MOBILE + + 26 + Identifies a Business Partner + + 100 + 2024-03-05 18:33:56.42 + + 55221 + + + 0 + + 103617 + + + + 5844 + 0 + + + + + 858f878b-50ba-4667-8587-e7b409b69091 + 100 + 2024-03-05 18:33:57.751 + Business Partner + false + true + A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson + Identifies a Business Partner + 100 + 2024-03-05 18:33:57.751 + 0 + es_MX + 103617 + 0 + + + + + a665b8aa-496d-4ec1-8700-502bcf3fa901 + 100 + 2024-03-05 18:33:57.87 + + 0 + 100 + + + Partner Location + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Partner address indicates the location of a Business Partner + MOBILE + + 14 + Identifies the (ship to) address for this Business Partner + + 100 + 2024-03-05 18:33:57.87 + + 55221 + + + 0 + + 103618 + + + + 8746 + 0 + + + + + ffe7f5a2-1a97-45fb-975b-f7a7a4b63e64 + 100 + 2024-03-05 18:33:58.991 + Partner Location + false + true + The Partner address indicates the location of a Business Partner + Identifies the (ship to) address for this Business Partner + 100 + 2024-03-05 18:33:58.991 + 0 + es_MX + 103618 + 0 + + + + + dfc533c9-9b46-4a8a-b8f1-a0fc69b1c557 + 100 + 2024-03-05 18:33:59.131 + + 0 + 110 + + + EMail Address + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Email Address is the Electronic Mail ID for this User and should be fully qualified (e.g. joe.smith@company.com). The Email Address is used to access the self service application functionality from the web. + MOBILE + + 20 + Electronic Mail Address + + 100 + 2024-03-05 18:33:59.131 + + 55221 + + + 0 + + 103619 + + + + 5396 + 0 + + + + + 66b44556-e67a-4233-bfb9-8c69c68a5bc2 + 100 + 2024-03-05 18:34:00.472 + EMail Address + false + true + The Email Address is the Electronic Mail ID for this User and should be fully qualified (e.g. joe.smith@company.com). The Email Address is used to access the self service application functionality from the web. + Electronic Mail Address + 100 + 2024-03-05 18:34:00.472 + 0 + es_MX + 103619 + 0 + + + + + 33e84dd7-c121-4e64-8d61-ca7b1a36cb41 + 100 + 2024-03-05 18:34:00.639 + + 0 + 120 + + + Title + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Title indicates the name that an entity is referred to as. + MOBILE + + 20 + Name this entity is referred to as + + 100 + 2024-03-05 18:34:00.639 + + 55221 + + + 0 + + 103620 + + + + 8751 + 0 + + + + + dd198977-c90f-4932-ab69-eb48d884b27a + 100 + 2024-03-05 18:34:01.983 + Title + false + true + The Title indicates the name that an entity is referred to as. + Name this entity is referred to as + 100 + 2024-03-05 18:34:01.983 + 0 + es_MX + 103620 + 0 + + + + + 597c00e5-e11c-4340-b70d-8ace72d061bc + 100 + 2024-03-05 18:34:02.09 + + 0 + 130 + + + Birthday + true + false + false + + false + false + false + false + true + true + true + true + true + + + Birthday or Anniversary day + MOBILE + + 14 + Birthday or Anniversary day + + 100 + 2024-03-05 18:34:02.089 + + 55221 + + + 0 + + 103621 + + + + 8745 + 0 + + + + + de725aee-e0df-4df5-a327-d7ddf3b515fa + 100 + 2024-03-05 18:34:03.184 + Birthday + false + true + Birthday or Anniversary day + Birthday or Anniversary day + 100 + 2024-03-05 18:34:03.184 + 0 + es_MX + 103621 + 0 + + + + + 65f01b52-5903-4774-9a55-75cb9133ac6f + 100 + 2024-03-05 18:34:03.303 + + 0 + 140 + + + Phone + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Phone field identifies a telephone number + MOBILE + + 20 + Identifies a telephone number + + 100 + 2024-03-05 18:34:03.303 + + 55221 + + + 0 + + 103622 + + + + 8747 + 0 + + + + + bf6dcc70-a621-46fa-9907-cdc76c80f2c2 + 100 + 2024-03-05 18:34:04.377 + Phone + false + true + The Phone field identifies a telephone number + Identifies a telephone number + 100 + 2024-03-05 18:34:04.377 + 0 + es_MX + 103622 + 0 + + + + + 9c498e1e-d1ab-4ff9-bafa-c5e440e5fdbc + 100 + 2024-03-05 18:34:04.495 + + 0 + 150 + + + 2nd Phone + true + false + false + + false + false + false + false + true + true + true + true + true + + + The 2nd Phone field identifies an alternate telephone number. + MOBILE + + 20 + Identifies an alternate telephone number. + + 100 + 2024-03-05 18:34:04.495 + + 55221 + + + 0 + + 103623 + + + + 8744 + 0 + + + + + 1e1aab1a-8972-4bf1-8f39-f07d4155d8c0 + 100 + 2024-03-05 18:34:05.528 + 2nd Phone + false + true + The 2nd Phone field identifies an alternate telephone number. + Identifies an alternate telephone number. + 100 + 2024-03-05 18:34:05.528 + 0 + es_MX + 103623 + 0 + + + + + ef7a2398-b962-4ea8-a207-24fbd002e7ce + 100 + 2024-03-05 18:34:05.662 + + 0 + 160 + + + Fax + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Fax identifies a facsimile number for this Business Partner or Location + MOBILE + + 20 + Facsimile number + + 100 + 2024-03-05 18:34:05.662 + + 55221 + + + 0 + + 103624 + + + + 8748 + 0 + + + + + 20b76aa5-75b4-4668-bd19-d50ba3c960a0 + 100 + 2024-03-05 18:34:06.974 + Fax + false + true + The Fax identifies a facsimile number for this Business Partner or Location + Facsimile number + 100 + 2024-03-05 18:34:06.974 + 0 + es_MX + 103624 + 0 + + + + + a9505560-6d79-44ef-90e9-ff8e81756276 + 100 + 2024-03-05 18:34:07.135 + + 0 + 170 + + + Position + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 1 + Job Position + + 100 + 2024-03-05 18:34:07.135 + + 55221 + + + 0 + + 103625 + + + + 14396 + 0 + + + + + ada1d49b-645b-4ed6-a5b0-e7573e3f61d9 + 100 + 2024-03-05 18:34:08.341 + Position + false + true + + Job Position + 100 + 2024-03-05 18:34:08.341 + 0 + es_MX + 103625 + 0 + + + + + d5159f6c-218e-4944-af5b-3620a42c899c + 100 + 2024-03-05 18:34:08.469 + 0 + 430 + 180 + 0 + + Notify me my own changes + false + false + false + + false + false + false + false + true + true + true + true + true + + + I want to be notified of changes that I make myself on project or request + MOBILE + + 0 + I want to be notified of changes that I make myself + + 100 + 2024-03-05 18:34:08.468 + + 55221 + + + 0 + + 103626 + 50104 + + + 93177 + 0 + + + + + e7787e51-6cf3-4030-adde-83214e7927b7 + 100 + 2024-03-05 18:34:09.666 + Notify me my own changes + false + true + I want to be notified of changes that I make myself on project or request + I want to be notified of changes that I make myself + 100 + 2024-03-05 18:34:09.666 + 0 + es_MX + 103626 + 0 + + + + + b7a903fd-1963-4342-bcf1-4a5cc192eea9 + 100 + 2024-03-05 18:34:09.806 + + 0 + 190 + + + Notification Type + true + false + false + + false + false + false + false + true + true + true + true + true + + + Emails or Notification sent out for Request Updates, etc. + MOBILE + + 14 + Type of Notifications + + 100 + 2024-03-05 18:34:09.806 + + 55221 + + + 0 + + 103627 + 50104 + + + 13773 + 0 + + + + + b2415cd7-c345-427f-8bee-530b7bed1ed3 + 100 + 2024-03-05 18:34:10.853 + Notification Type + false + true + Emails or Notification sent out for Request Updates, etc. + Type of Notifications + 100 + 2024-03-05 18:34:10.853 + 0 + es_MX + 103627 + 0 + + + + + 837a0a77-c387-4bb9-bb7d-b77409544c81 + 100 + 2024-03-05 18:34:10.993 + 0 + 390 + 200 + 0 + + Is Project Manager + false + false + false + + false + false + false + false + true + true + true + true + true + + + Is Project Manager indicates if the contact is assigned as project manager to a project + MOBILE + + 0 + Is Project Manager + + 100 + 2024-03-05 18:34:10.993 + + 55221 + + + 0 + + 103628 + 112 + + + 86135 + 0 + + + + + fa0ae831-39a4-4cc2-81b7-2799476403ca + 100 + 2024-03-05 18:34:12.356 + Is Project Manager + false + true + Is Project Manager indicates if the contact is assigned as project manager to a project + Is Project Manager + 100 + 2024-03-05 18:34:12.356 + 0 + es_MX + 103628 + 0 + + + + + aa04666a-b717-4d35-845a-c780cbd1fbfa + 100 + 2024-03-05 18:34:12.495 + 0 + 400 + 210 + 0 + + Is Project Member + true + false + false + + false + false + false + false + true + true + true + true + true + + + Is Project Member indicates if the contact is assigned to a project and will receive notifications of any project changes + MOBILE + + 0 + Is Project Member + + 100 + 2024-03-05 18:34:12.495 + + 55221 + + + 0 + + 103629 + 112 + + + 86134 + 0 + + + + + 77df1b54-c583-4e92-b2d5-a85d168c174a + 100 + 2024-03-05 18:34:13.569 + Is Project Member + false + true + Is Project Member indicates if the contact is assigned to a project and will receive notifications of any project changes + Is Project Member + 100 + 2024-03-05 18:34:13.569 + 0 + es_MX + 103629 + 0 + + + + + cd43ac5b-bcef-4d07-92db-deeb324e881c + 100 + 2024-03-05 18:34:13.705 + 0 + 340 + 220 + 0 + + Login User + false + false + false + + false + false + false + false + true + true + true + true + true + + + Define if the user can login + MOBILE + + 0 + + Y + 100 + 2024-03-05 18:34:13.705 + + 55221 + + + 0 + + 103630 + 135 + + + 83110 + 0 + + + + + 92b72a5b-c2ae-44ae-9dbc-9d686778bcf7 + 100 + 2024-03-05 18:34:14.848 + Login User + false + true + Define if the user can login + + 100 + 2024-03-05 18:34:14.848 + 0 + es_MX + 103630 + 0 + + + + + bd7cc601-cb98-4268-8a61-07e5b04d6fcd + 100 + 2024-03-05 18:34:14.982 + 0 + 350 + 230 + 0 + + Internal User + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + @IsLoginUser@='Y' + 0 + Is just for use internal + Y + 100 + 2024-03-05 18:34:14.981 + + 55221 + + + 0 + + 103631 + + + + 83111 + 0 + + + + + fa17aba3-1487-4fc6-821f-be2a313859d1 + 100 + 2024-03-05 18:34:16.348 + Internal User + false + true + + Is just for use internal + 100 + 2024-03-05 18:34:16.348 + 0 + es_MX + 103631 + 0 + + + + + fb521dee-7bab-4838-a7c6-04ce93edf7a5 + 100 + 2024-03-05 18:34:16.533 + + 0 + 240 + + + Search Key + false + false + false + + false + false + false + false + true + true + false + true + true + + + 7 bit lower case alpha numeric - max length 8 - can be used for operating system names. + MOBILE + @IsLoginUser@='Y' + 20 + Search key for the record in the format required + + 100 + 2024-03-05 18:34:16.533 + + 55221 + + + 0 + + 103632 + + + + 15975 + 0 + + + + + 94d30e3a-b472-48f0-9a24-972cc617159b + 100 + 2024-03-05 18:34:18.123 + Search Key + false + true + 7 bit lower case alpha numeric - max length 8 - can be used for operating system names. + Search key for the record in the format required + 100 + 2024-03-05 18:34:18.123 + 0 + es_MX + 103632 + 0 + + + + + 34ccddb6-8fd0-4629-94c0-45ac19cb65b3 + 100 + 2024-03-05 18:34:18.276 + + 0 + 250 + + + Password + true + false + true + Y + false + false + true + false + true + true + true + true + true + + + The Password for this User. Passwords are required to identify authorized users. For Adempiere Users, you can change the password via the Process "Reset Password". + MOBILE + @IsLoginUser@='Y' + 20 + Password of any length (case sensitive) + + 100 + 2024-03-05 18:34:18.276 + + 55221 + + + 0 + + 103633 + + + + 417 + 0 + + + + + c1512205-1e30-4015-9f00-5dd3b429ea6d + 100 + 2024-03-05 18:34:19.502 + Password + false + true + The Password for this User. Passwords are required to identify authorized users. For Adempiere Users, you can change the password via the Process "Reset Password". + Password of any length (case sensitive) + 100 + 2024-03-05 18:34:19.502 + 0 + es_MX + 103633 + 0 + + + + + e156dfd1-2bd5-4de6-8861-f156ec535803 + 100 + 2024-03-05 18:34:19.846 + + 0 + 260 + + + User PIN + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + @IsLoginUser@='Y' + 20 + + + 100 + 2024-03-05 18:34:19.846 + + 55221 + + + 0 + + 103634 + + + + 52066 + 0 + + + + + 223c6829-9ba5-4013-9d35-883c9b3eadc8 + 100 + 2024-03-05 18:34:20.887 + User PIN + false + true + + + 100 + 2024-03-05 18:34:20.887 + 0 + es_MX + 103634 + 0 + + + + + 431732a5-58d1-4a20-946c-281fad21cce9 + 100 + 2024-03-05 18:34:21.069 + 0 + 360 + 270 + 0 + + Webstore User + true + false + false + + false + false + false + false + true + true + true + true + true + + + It is created from Webstore + MOBILE + @IsLoginUser@='Y' + 0 + Is a user for Webstore + + 100 + 2024-03-05 18:34:21.069 + + 55221 + + + 0 + + 103635 + + + + 83176 + 0 + + + + + 20409670-4e42-4bfa-9fcd-883e4d6798d2 + 100 + 2024-03-05 18:34:22.45 + Webstore User + false + true + It is created from Webstore + Is a user for Webstore + 100 + 2024-03-05 18:34:22.45 + 0 + es_MX + 103635 + 0 + + + + + 9fc6becd-95fb-417d-8346-a28a8e484133 + 100 + 2024-03-05 18:34:22.579 + + 0 + 280 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:34:22.579 + + 55221 + + + 0 + + 103636 + + + + 622 + 0 + + + + + 07aa8b2b-37d5-4e55-a350-88f49479f917 + 100 + 2024-03-05 18:34:23.771 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:34:23.771 + 0 + es_MX + 103636 + 0 + + + + + 59fbd892-cb1d-4877-ab88-2fff7402801f + 100 + 2024-03-05 18:34:24.065 + + 0 + 290 + + + Full BP Access + true + false + false + + false + false + false + false + true + true + true + true + true + + + If selected, the user has full access to the Business Partner (BP) information (Business Documents like Orders, Invoices - Requests) or resources (Assets, Downloads). If you deselect it, the user has no access rights unless, you explicitly grant it in tab "BP Access" + MOBILE + + 1 + The user/contact has full access to Business Partner information and resources + + 100 + 2024-03-05 18:34:24.065 + + 55221 + + + 0 + + 103637 + + + + 14336 + 0 + + + + + f00bfe5f-5dde-4de8-a480-0217548efa01 + 100 + 2024-03-05 18:34:25.279 + Full BP Access + false + true + If selected, the user has full access to the Business Partner (BP) information (Business Documents like Orders, Invoices - Requests) or resources (Assets, Downloads). If you deselect it, the user has no access rights unless, you explicitly grant it in tab "BP Access" + The user/contact has full access to Business Partner information and resources + 100 + 2024-03-05 18:34:25.279 + 0 + es_MX + 103637 + 0 + + + + + b10dba3c-9f9f-4187-a337-025f820652c3 + 100 + 2024-03-05 18:34:25.434 + + 0 + 300 + + + EMail User ID + false + false + false + + false + false + false + false + true + true + true + true + true + + + The user name in the mail system is usually the string before the @ of your email address. Required if the mail server requires authentification to send emails. + MOBILE + + 20 + User Name (ID) in the Mail System + + 100 + 2024-03-05 18:34:25.434 + + 55221 + + + 0 + + 103638 + 121 + + + 7793 + 0 + + + + + 721ce80a-f356-4189-83b3-01a94de2721a + 100 + 2024-03-05 18:34:26.531 + EMail User ID + false + true + The user name in the mail system is usually the string before the @ of your email address. Required if the mail server requires authentification to send emails. + User Name (ID) in the Mail System + 100 + 2024-03-05 18:34:26.531 + 0 + es_MX + 103638 + 0 + + + + + 80ce5f42-e462-493c-b519-faf213547156 + 100 + 2024-03-05 18:34:26.698 + + 0 + 310 + + + EMail User Password + true + false + false + + false + false + true + false + true + true + true + true + true + + + Required if the mail server requires authentification to send emails. + MOBILE + + 20 + Password of your email user id + + 100 + 2024-03-05 18:34:26.698 + + 55221 + + + 0 + + 103639 + 121 + + + 7794 + 0 + + + + + 6701e39c-3a9c-42b7-a6ab-11b4a963af6c + 100 + 2024-03-05 18:34:28.279 + EMail User Password + false + true + Required if the mail server requires authentification to send emails. + Password of your email user id + 100 + 2024-03-05 18:34:28.279 + 0 + es_MX + 103639 + 0 + + + + + 1b47665f-8f0c-43ea-87c0-1853dfe721ee + 100 + 2024-03-05 18:34:28.448 + + 0 + 320 + + + Supervisor + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Supervisor indicates who will be used for forwarding and escalating issues for this user - or for approvals. + MOBILE + + 26 + Supervisor for this user/organization - used for escalation and approval + + 100 + 2024-03-05 18:34:28.448 + + 55221 + + + 0 + + 103640 + 121 + + + 5397 + 0 + + + + + 93eaa7c4-74e4-40ff-a691-e22e47159429 + 100 + 2024-03-05 18:34:29.734 + Supervisor + false + true + The Supervisor indicates who will be used for forwarding and escalating issues for this user - or for approvals. + Supervisor for this user/organization - used for escalation and approval + 100 + 2024-03-05 18:34:29.734 + 0 + es_MX + 103640 + 0 + + + + + f06010df-07f3-422e-aa05-faa662c47d93 + 100 + 2024-03-05 18:34:29.928 + + 0 + 330 + + + LDAP User Name + true + false + false + + false + false + false + false + true + true + true + true + true + + + Optional LDAP system user name for the user. If not defined, the normal Name of the user is used. This allows to use the internal (LDAP) user id (e.g. jjanke) and the normal display name (e.g. Jorg Janke). The LDAP User Name can also be used without LDAP enables (see system window). This would allow to sign in as jjanke and use the display name of Jorg Janke. + MOBILE + + 25 + User Name used for authorization via LDAP (directory) services + + 100 + 2024-03-05 18:34:29.928 + + 55221 + + + 0 + + 103641 + 121 + + + 12401 + 0 + + + + + f3c6aab0-0ec2-4803-8472-29b6dad0db8e + 100 + 2024-03-05 18:34:31.541 + LDAP User Name + false + true + Optional LDAP system user name for the user. If not defined, the normal Name of the user is used. This allows to use the internal (LDAP) user id (e.g. jjanke) and the normal display name (e.g. Jorg Janke). The LDAP User Name can also be used without LDAP enables (see system window). This would allow to sign in as jjanke and use the display name of Jorg Janke. + User Name used for authorization via LDAP (directory) services + 100 + 2024-03-05 18:34:31.541 + 0 + es_MX + 103641 + 0 + + + + + 1b19358e-e7bf-4cea-9811-f3f4c6a3ef98 + 100 + 2024-03-05 18:34:31.776 + + 0 + 340 + + + Trx Organization + false + false + false + + false + false + false + false + true + true + true + true + true + + + The organization which performs or initiates this transaction (for another organization). The owning Organization may not be the transaction organization in a service bureau environment, with centralized services, and inter-organization transactions. + MOBILE + + 14 + Performing or initiating organization + + 100 + 2024-03-05 18:34:31.775 + + 55221 + + + 0 + + 103642 + 121 + + + 8976 + 0 + + + + + 730f9f8e-7d81-4fee-8e35-0420055c1e1d + 100 + 2024-03-05 18:34:33.029 + Trx Organization + false + true + The organization which performs or initiates this transaction (for another organization). The owning Organization may not be the transaction organization in a service bureau environment, with centralized services, and inter-organization transactions. + Performing or initiating organization + 100 + 2024-03-05 18:34:33.029 + 0 + es_MX + 103642 + 0 + + + + + 75a5615c-20d9-4b99-8c70-55507fc0c4f5 + 100 + 2024-03-05 18:34:33.174 + + 0 + 350 + + + Connection Profile + true + false + false + + false + false + false + false + true + true + true + true + true + + + Depending on the connection profile, different protocols are used and tasks are performed on the server rather then the client. Usually the user can select different profiles, unless it is enforced by the User or Role definition. The User level profile overwrites the Role based profile. + MOBILE + + 1 + How a Java Client connects to the server(s) + + 100 + 2024-03-05 18:34:33.174 + + 55221 + + + 0 + + 103643 + + + + 14619 + 0 + + + + + 033ec38a-1e6b-49e5-8b80-3600e7d37071 + 100 + 2024-03-05 18:34:34.465 + Connection Profile + false + true + Depending on the connection profile, different protocols are used and tasks are performed on the server rather then the client. Usually the user can select different profiles, unless it is enforced by the User or Role definition. The User level profile overwrites the Role based profile. + How a Java Client connects to the server(s) + 100 + 2024-03-05 18:34:34.465 + 0 + es_MX + 103643 + 0 + + + + + 4ba84403-f6b8-41a7-a91d-84c1b3fb5ad3 + 100 + 2024-03-05 18:34:34.622 + 0 + 330 + 360 + 0 + + EMail Configuration + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 0 + + + 100 + 2024-03-05 18:34:34.621 + + 55221 + + + 0 + + 103644 + 121 + + + 80513 + 0 + + + + + 8009bbd0-4c40-403e-aef3-66a264d5896e + 100 + 2024-03-05 18:34:35.795 + EMail Configuration + false + true + + + 100 + 2024-03-05 18:34:35.795 + 0 + es_MX + 103644 + 0 + + + + + d6664a62-7af9-4d2c-9d1d-093597ef5bc0 + 100 + 2024-03-05 18:34:35.94 + + 0 + 370 + + + Greeting + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Greeting identifies the greeting to print on correspondence. + MOBILE + + 14 + Greeting to print on correspondence + + 100 + 2024-03-05 18:34:35.94 + + 55221 + + + 0 + + 103645 + 122 + + + 8743 + 0 + + + + + 818e21e7-a98e-4857-9a82-7966c4ef7d92 + 100 + 2024-03-05 18:34:37.102 + Greeting + false + true + The Greeting identifies the greeting to print on correspondence. + Greeting to print on correspondence + 100 + 2024-03-05 18:34:37.102 + 0 + es_MX + 103645 + 0 + + + + + 13a02bab-560c-439e-a889-044c6d9cb823 + 100 + 2024-03-05 18:34:37.324 + + 0 + 380 + + + EMail Verify + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 20 + Date Email was verified + + 100 + 2024-03-05 18:34:37.324 + + 55221 + + + 0 + + 103646 + + + + 13600 + 0 + + + + + 06a71e4b-aeea-4212-b8a7-cd6928043002 + 100 + 2024-03-05 18:34:38.871 + EMail Verify + false + true + + Date Email was verified + 100 + 2024-03-05 18:34:38.871 + 0 + es_MX + 103646 + 0 + + + + + a358cb33-ddfb-49d1-bf98-5483ba541edf + 100 + 2024-03-05 18:34:39.06 + + 0 + 390 + + + Last Contact + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Last Contact indicates the date that this Business Partner Contact was last contacted. + MOBILE + + 14 + Date this individual was last contacted + + 100 + 2024-03-05 18:34:39.06 + + 55221 + + + 0 + + 103647 + 122 + + + 8750 + 0 + + + + + 29a02934-7d94-443e-b902-e2c2980d2af8 + 100 + 2024-03-05 18:34:40.604 + Last Contact + false + true + The Last Contact indicates the date that this Business Partner Contact was last contacted. + Date this individual was last contacted + 100 + 2024-03-05 18:34:40.604 + 0 + es_MX + 103647 + 0 + + + + + 86cd5a2b-628d-47a0-b119-fbc906b52fbf + 100 + 2024-03-05 18:34:40.779 + + 0 + 400 + + + Verification Info + true + false + false + + false + false + false + false + true + true + true + true + true + + + The field contains additional information how the EMail Address has been verified + MOBILE + + 20 + Verification information of EMail Address + + 100 + 2024-03-05 18:34:40.779 + + 55221 + + + 0 + + 103648 + + + + 9884 + 0 + + + + + bf8601b1-b9b9-4fe6-aabe-5b9f8ceab942 + 100 + 2024-03-05 18:34:41.834 + Verification Info + false + true + The field contains additional information how the EMail Address has been verified + Verification information of EMail Address + 100 + 2024-03-05 18:34:41.834 + 0 + es_MX + 103648 + 0 + + + + + 314d961d-cc51-4581-a586-a651f1cfe2db + 100 + 2024-03-05 18:34:42.05 + + 0 + 410 + + + Last Result + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Last Result identifies the result of the last contact made. + MOBILE + + 60 + Result of last contact + + 100 + 2024-03-05 18:34:42.05 + + 55221 + + + 0 + + 103649 + 122 + + + 8749 + 0 + + + + + aaab6219-da5a-46d1-b8f5-e6d474e95de3 + 100 + 2024-03-05 18:34:43.507 + Last Result + false + true + The Last Result identifies the result of the last contact made. + Result of last contact + 100 + 2024-03-05 18:34:43.507 + 0 + es_MX + 103649 + 0 + + + + + 10d4564c-5199-453a-bc19-962b590983be + 100 + 2024-03-05 18:34:43.913 + + 0 + 420 + + + HasRole + false + false + false + + false + false + false + false + true + true + true + false + true + + + + MOBILE + + 1 + Has Role Y/N + + 100 + 2024-03-05 18:34:43.913 + + 55221 + + + 0 + + 103650 + + + + 69212 + 0 + + + + + 4987c097-9e3a-4fda-a0b1-cd38f6388f27 + 100 + 2024-03-05 18:34:44.938 + HasRole + false + true + + Has Role Y/N + 100 + 2024-03-05 18:34:44.938 + 0 + es_MX + 103650 + 0 + + + + + 8bd6c3e5-ecc4-42e4-ba31-a4c81f5455b0 + 100 + 2024-03-05 18:34:45.132 + 0 + 370 + 430 + 0 + + RecentItems Max Saved + false + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 0 + + + 100 + 2024-03-05 18:34:45.132 + + 55221 + + + 0 + + 103651 + 118 + + + 84199 + 0 + + + + + a3c51898-1eaf-49e6-9117-11df8e6af233 + 100 + 2024-03-05 18:34:46.678 + RecentItems Max Saved + false + true + + + 100 + 2024-03-05 18:34:46.678 + 0 + es_MX + 103651 + 0 + + + + + 3b3a8a98-ffff-42da-b164-2a9a21090366 + 100 + 2024-03-05 18:34:46.83 + 0 + 380 + 440 + 0 + + RecentItems Max Shown + true + false + false + + false + false + false + false + true + true + true + true + true + + + + MOBILE + + 0 + + + 100 + 2024-03-05 18:34:46.83 + + 55221 + + + 0 + + 103652 + + + + 84200 + 0 + + + + + 698d7e44-40c2-4d9b-922e-539eeefd197c + 100 + 2024-03-05 18:34:48.527 + RecentItems Max Shown + false + true + + + 100 + 2024-03-05 18:34:48.527 + 0 + es_MX + 103652 + 0 + + + + + a07e2182-9ebc-4a51-89a6-702c172e1667 + 100 + 2024-03-05 18:34:48.669 + 0 + 450 + 450 + 0 + + Mobile Feature + false + false + false + + false + false + false + false + true + true + true + true + true + + + Use this flag to determine if a entity is member of mobile setup + MOBILE + + 0 + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + + 100 + 2024-03-05 18:34:48.669 + + 55221 + + + 0 + + 103653 + + + + 100953 + 0 + + + + + 54da50df-414e-44a6-b91f-3e5b55c7a52d + 100 + 2024-03-05 18:34:50.307 + Mobile Feature + false + true + Use this flag to determine if a entity is member of mobile setup + Mobile Feature define if a entity is flagged as mobile and should be showed inside mobile + 100 + 2024-03-05 18:34:50.307 + 0 + es_MX + 103653 + 0 + + + + + + fc52e327-2848-474b-9210-0d7c4f3b69f9 + 100 + 2024-03-05 18:35:38.966 + 1 + 20 + + false + + + User Roles + false + false + false + false + true + false + false + true + + N + The User Roles Tab define the Roles each user may have. The Roles will determine what windows, tasks, processes and workflows that a User has access to. + false + MOBILE + + User Roles + 100 + 2024-03-05 18:35:38.966 + + 53808 + 157 + 55222 + + 0 + + + + + 971 + 0 + + + + + 1bf25ad4-488d-4289-b414-f5bce2725872 + 100 + 2024-03-05 18:35:40.102 + User Roles + false + true + The User Roles Tab define the Roles each user may have. The Roles will determine what windows, tasks, processes and workflows that a User has access to. + User Roles + 100 + 2024-03-05 18:35:40.102 + + 55222 + 0 + es_MX + 0 + + + + + Rol de Usuario + La pestaña de roles de usuario define los roles que cada usuario pueden tener: Los roles determinarán las ventanas, tareas y procesos a los cuales cada usuario tendrá acceso. + Roles de Usuario + 55222 + es_MX + + + + + 52ddd7ce-c648-4b80-8f40-bf3ed52a3da6 + 100 + 2024-03-05 18:35:57.276 + + 0 + 0 + + + Immutable Universally Unique Identifier + false + false + false + + false + false + false + false + true + false + true + true + true + + + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + MOBILE + + 10 + Immutable Universally Unique Identifier + + 100 + 2024-03-05 18:35:57.276 + + 55222 + + + 0 + + 103654 + + + + 84458 + 0 + + + + + d4b56193-0118-4f97-97e5-6c8a40284723 + 100 + 2024-03-05 18:35:58.599 + Immutable Universally Unique Identifier + false + true + "A surrogate key in a database is a unique identifier for either an entity in the modeled world or an object in the database. The surrogate key is not derived from application data, unlike a natural (or business) key which is derived from application data. " , According to Wikipedia http://en.wikipedia.org/wiki/Surrogate_key + Immutable Universally Unique Identifier + 100 + 2024-03-05 18:35:58.599 + 0 + es_MX + 103654 + 0 + + + + + dae69f66-ac15-4a42-8cb7-7ad15d1112d3 + 100 + 2024-03-05 18:35:58.728 + + 0 + 10 + + + Client + false + true + false + + false + false + false + false + true + true + true + false + true + + + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + MOBILE + + 14 + Client/Tenant for this installation. + + 100 + 2024-03-05 18:35:58.728 + + 55222 + + + 0 + + 103655 + + + + 972 + 0 + + + + + 28cf7c71-ce3e-4718-9777-a9f0f49cb07d + 100 + 2024-03-05 18:35:59.812 + Client + false + true + A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client. + Client/Tenant for this installation. + 100 + 2024-03-05 18:35:59.812 + 0 + es_MX + 103655 + 0 + + + + + 55fd5f77-9650-4d50-8422-4660827f69a7 + 100 + 2024-03-05 18:35:59.939 + + 0 + 20 + + + Organization + true + true + false + + false + false + false + false + true + true + true + false + true + + + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + MOBILE + + 14 + Organizational entity within client + + 100 + 2024-03-05 18:35:59.939 + + 55222 + + + 0 + + 103656 + + + + 973 + 0 + + + + + 44573611-ccaf-4ee7-8c9e-d7eabc8f6c80 + 100 + 2024-03-05 18:36:00.881 + Organization + false + true + An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations. + Organizational entity within client + 100 + 2024-03-05 18:36:00.881 + 0 + es_MX + 103656 + 0 + + + + + 72b4f3a0-ebc8-4b33-974c-ac419129d52b + 100 + 2024-03-05 18:36:00.98 + + 0 + 30 + + + User/Contact + false + true + false + + false + false + false + false + true + true + true + true + true + + + The User identifies a unique user in the system. This could be an internal user or a business partner contact + MOBILE + + 26 + User within the system - Internal or Business Partner Contact + + 100 + 2024-03-05 18:36:00.979 + + 55222 + + + 0 + + 103657 + + + + 971 + 0 + + + + + 77d96ad3-0dc4-46a7-96cf-afdb26be8e19 + 100 + 2024-03-05 18:36:02.272 + User/Contact + false + true + The User identifies a unique user in the system. This could be an internal user or a business partner contact + User within the system - Internal or Business Partner Contact + 100 + 2024-03-05 18:36:02.272 + 0 + es_MX + 103657 + 0 + + + + + 58ef61dd-8742-4be0-8226-f28fdf0cf11f + 100 + 2024-03-05 18:36:02.462 + 1 + 0 + 40 + + + Role + false + false + false + + false + false + false + false + true + true + true + true + true + + + The Role determines security and access a user who has this Role will have in the System. + MOBILE + + 26 + Responsibility Role + + 100 + 2024-03-05 18:36:02.462 + + 55222 + + + 0 + + 103658 + + + + 542 + 0 + + + + + 3342a8f5-c464-436e-8e72-ec644b7e8a84 + 100 + 2024-03-05 18:36:03.613 + Role + false + true + The Role determines security and access a user who has this Role will have in the System. + Responsibility Role + 100 + 2024-03-05 18:36:03.613 + 0 + es_MX + 103658 + 0 + + + + + 3c647a7d-d33c-4947-9185-e4208e93e8fc + 100 + 2024-03-05 18:36:03.832 + + 0 + 50 + + + Default + true + false + false + + false + false + false + false + true + true + true + true + true + + + The Default Checkbox indicates if this record will be used as a default value. + MOBILE + + 1 + Default value + + 100 + 2024-03-05 18:36:03.832 + + 55222 + + + 0 + + 103659 + + + + 89838 + 0 + + + + + 534345a0-5a56-4bc9-b420-91ac8d7dcb51 + 100 + 2024-03-05 18:36:05.355 + Default + false + true + The Default Checkbox indicates if this record will be used as a default value. + Default value + 100 + 2024-03-05 18:36:05.355 + 0 + es_MX + 103659 + 0 + + + + + 9ae71681-df65-4043-b540-41a3291818c8 + 100 + 2024-03-05 18:36:05.58 + + 0 + 60 + + + Active + false + false + false + + false + false + false + false + true + true + true + false + true + + + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + MOBILE + + 1 + The record is active in the system + + 100 + 2024-03-05 18:36:05.58 + + 55222 + + + 0 + + 103660 + + + + 721 + 0 + + + + + 06f43406-82f8-481e-a2f6-fcf7255d445e + 100 + 2024-03-05 18:36:07.005 + Active + false + true + 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 reports. +There are two reasons for de-activating and not deleting records: +(1) The system requires the record for audit purposes. +(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries. + The record is active in the system + 100 + 2024-03-05 18:36:07.005 + 0 + es_MX + 103660 + 0 + + + + + d8056634-c91e-4bc2-abb3-3e82ce25d471 + 100 + 2024-03-05 18:36:46.147 + Mobile Management + true + false + false + false + true + MOBILE + Mobile Management Definition + 100 + 2024-03-05 18:36:46.147 + + + + + + 0 + 54909 + + 0 + + + + + + + 60a45755-47ba-4545-8787-bcef01eddada + 100 + 2024-03-05 18:36:47.245 + Mobile Management + false + true + Mobile Management Definition + 100 + 2024-03-05 18:36:47.245 + 0 + 54909 + es_MX + 0 + + + + + 9ac17e56-0035-45c1-819f-aeedc5fb6383 + 100 + 2024-03-05 18:36:47.437 + 999 + 0 + 54909 + true + 100 + 2024-03-05 18:36:47.437 + 10 + 0 + 0 + + + + + Gestión Móvil + Definición de Gestión Móvil + 54909 + es_MX + + + + + eef7c8dd-9931-4d50-9afd-dc239667b05f + 100 + 2024-03-05 18:37:39.508 + Mobile Form + false + false + false + true + true + MOBILE + + 100 + 2024-03-05 18:37:39.508 + + + 53806 + + + 0 + 54910 + + 0 + + W + + + + + b3687e10-5da1-46b1-a929-49d524471ca3 + 100 + 2024-03-05 18:37:40.746 + Mobile Form + false + true + + 100 + 2024-03-05 18:37:40.746 + 0 + 54910 + es_MX + 0 + + + + + 213f747f-34ad-4114-87ec-697d403034fb + 100 + 2024-03-05 18:37:40.854 + 999 + 0 + 54910 + true + 100 + 2024-03-05 18:37:40.854 + 10 + 0 + 0 + + + + + a6ee5d8b-4414-4fd5-8f19-5770c49246df + 100 + 2024-03-05 18:37:53.244 + Mobile User + false + false + false + true + true + MOBILE + + 100 + 2024-03-05 18:37:53.244 + + + 53808 + + + 0 + 54911 + + 0 + + W + + + + + 91bbaa26-faa5-4c32-81a5-f082af38d5a1 + 100 + 2024-03-05 18:37:54.267 + Mobile User + false + true + + 100 + 2024-03-05 18:37:54.267 + 0 + 54911 + es_MX + 0 + + + + + 5aa94ff9-c3ff-47d2-ad3b-585a58c6f02f + 100 + 2024-03-05 18:37:54.414 + 999 + 0 + 54911 + true + 100 + 2024-03-05 18:37:54.414 + 10 + 0 + 0 + + + + + a0286c00-a536-4b23-9471-e3a204e85c15 + 100 + 2024-03-05 18:38:03.221 + Mobile Role + false + false + false + true + true + MOBILE + + 100 + 2024-03-05 18:38:03.221 + + + 53807 + + + 0 + 54912 + + 0 + + W + + + + + b55fce75-1670-4793-ac09-9c7a9f7372cb + 100 + 2024-03-05 18:38:04.672 + Mobile Role + false + true + + 100 + 2024-03-05 18:38:04.672 + 0 + 54912 + es_MX + 0 + + + + + bf0448d4-f63d-4ad9-a754-7fe24208e66d + 100 + 2024-03-05 18:38:04.78 + 999 + 0 + 54912 + true + 100 + 2024-03-05 18:38:04.78 + 10 + 0 + 0 + + + + + 0 + 54909 + 54910 + 10 + + + + + 0 + 54909 + 54911 + 10 + + + + + 1 + 54910 + 10 + + + + + 0 + 54909 + 54912 + 10 + + + + + 1 + 54911 + 10 + + + + + 2 + 54910 + 10 + + + + + AD_User.MOBILE_IsMobile='Y' + AD_User.MOBILE_IsMobile='Y' + + + + + true + Y + + + +