From 166fc17efa901b6de5d5521df88d48b160130703 Mon Sep 17 00:00:00 2001 From: Yamel Senih Date: Mon, 28 Jun 2021 18:59:01 -0400 Subject: [PATCH] Add multiTab route (#948) See: http://0.0.0.0:9527/#/test/multitab/window /test/multitab/window --- src/router/modules/ADempiere/testRoutes.js | 17 + .../ADempiere/Test/MultiTabWindow/index.vue | 48 + .../Test/MultiTabWindow/multiTabWindow.json | 30904 ++++++++++++++++ 3 files changed, 30969 insertions(+) create mode 100644 src/views/ADempiere/Test/MultiTabWindow/index.vue create mode 100644 src/views/ADempiere/Test/MultiTabWindow/multiTabWindow.json diff --git a/src/router/modules/ADempiere/testRoutes.js b/src/router/modules/ADempiere/testRoutes.js index 071b00e0..ae45f3ab 100644 --- a/src/router/modules/ADempiere/testRoutes.js +++ b/src/router/modules/ADempiere/testRoutes.js @@ -52,6 +52,23 @@ const testRoutes = [ ] }, + { + path: '/test/multitab/window', + component: Layout, + hidden: true, + children: [ + { + path: '/test/multitab/window', + component: () => import('@/views/ADempiere/Test/MultiTabWindow'), + name: 'Multi Tab Window View', + meta: { + title: 'Multi Tab Window View', + isIndex: true + } + } + ] + }, + { path: '/test/process/standard', component: Layout, diff --git a/src/views/ADempiere/Test/MultiTabWindow/index.vue b/src/views/ADempiere/Test/MultiTabWindow/index.vue new file mode 100644 index 00000000..cf9125fc --- /dev/null +++ b/src/views/ADempiere/Test/MultiTabWindow/index.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/src/views/ADempiere/Test/MultiTabWindow/multiTabWindow.json b/src/views/ADempiere/Test/MultiTabWindow/multiTabWindow.json new file mode 100644 index 00000000..a68c419c --- /dev/null +++ b/src/views/ADempiere/Test/MultiTabWindow/multiTabWindow.json @@ -0,0 +1,30904 @@ +{ + "code": 200, + "result": { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "help": "The Business Partner window allows you do define any party with whom you transact. This includes customers, vendors and employees. Prior to entering or importing products, you must define your vendors. Prior to generating Orders you must define your customers. This window holds all information about your business partner and the values entered will be used to generate all document transactions", + "is_active": true, + "is_sales_transaction": true, + "window_type": "M", + "tabs": [ + { + "id": 220, + "uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Business Partner", + "help": "The Business Partner Tab defines any Entity with whom an organization transacts.", + "table_name": "C_BPartner", + "sequence": 10, + "tab_level": 0, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", BPartner_Parent_ID_C_BPartner.Name AS \"DisplayColumn_BPartner_Parent_ID\", (SELECT NVL(C_Greeting.Name,'') FROM C_Greeting WHERE C_BPartner.C_Greeting_ID=C_Greeting.C_Greeting_ID) AS \"DisplayColumn_C_Greeting_ID\", SOCreditStatus_AD_Ref_List.Name AS \"DisplayColumn_SOCreditStatus\", (SELECT NVL(C_TaxGroup.Name,'') FROM C_TaxGroup WHERE C_BPartner.C_TaxGroup_ID=C_TaxGroup.C_TaxGroup_ID) AS \"DisplayColumn_C_TaxGroup_ID\", (SELECT NVL(C_BP_Group.Name,'') FROM C_BP_Group WHERE C_BPartner.C_BP_Group_ID=C_BP_Group.C_BP_Group_ID) AS \"DisplayColumn_C_BP_Group_ID\", AD_Language_AD_Language.Name AS \"DisplayColumn_AD_Language\", (SELECT NVL(C_BP_AccountType.Name,'') FROM C_BP_AccountType WHERE C_BPartner.C_BP_AccountType_ID=C_BP_AccountType.C_BP_AccountType_ID) AS \"DisplayColumn_C_BP_AccountType_ID\", (SELECT NVL(C_BP_IndustryType.Name,'') FROM C_BP_IndustryType WHERE C_BPartner.C_BP_IndustryType_ID=C_BP_IndustryType.C_BP_IndustryType_ID) AS \"DisplayColumn_C_BP_IndustryType_ID\", (SELECT NVL(C_BP_Segment.Name,'') FROM C_BP_Segment WHERE C_BPartner.C_BP_Segment_ID=C_BP_Segment.C_BP_Segment_ID) AS \"DisplayColumn_C_BP_Segment_ID\", (SELECT NVL(C_BP_SalesGroup.Name,'') FROM C_BP_SalesGroup WHERE C_BPartner.C_BP_SalesGroup_ID=C_BP_SalesGroup.C_BP_SalesGroup_ID) AS \"DisplayColumn_C_BP_SalesGroup_ID\", PersonType_AD_Ref_List.Name AS \"DisplayColumn_PersonType\" FROM C_BPartner AS C_BPartner LEFT JOIN C_BPartner AS BPartner_Parent_ID_C_BPartner ON(BPartner_Parent_ID_C_BPartner.C_BPartner_ID = C_BPartner.BPartner_Parent_ID) LEFT JOIN AD_Ref_List AS SOCreditStatus_AD_Ref_List ON(SOCreditStatus_AD_Ref_List.Value = C_BPartner.SOCreditStatus AND SOCreditStatus_AD_Ref_List.AD_Reference_ID = 289) LEFT JOIN AD_Language AS AD_Language_AD_Language ON(AD_Language_AD_Language.AD_Language = C_BPartner.AD_Language) LEFT JOIN AD_Ref_List AS PersonType_AD_Ref_List ON(PersonType_AD_Ref_List.Value = C_BPartner.PersonType AND PersonType_AD_Ref_List.AD_Reference_ID = 54145)", + "where_clause": "", + "order_by_clause": "", + "parent_tab_uuid": "", + "processes": [ + { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 467, + "uuid": "a439b9ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Existing Organization", + "description": "Organizational entity within client - set to empty if you want to create a new organization", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 10, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 468, + "uuid": "a43a1d1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Organization Type", + "help": "Organization Type allows you to categorize your organizations for reporting purposes", + "sequence": 20, + "column_name": "AD_OrgType_ID", + "element_name": "AD_OrgType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_OrgType", + "key_column_name": "AD_OrgType.AD_OrgType_ID", + "display_column_name": "", + "query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType ORDER BY 3", + "direct_query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType WHERE AD_OrgType.AD_OrgType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 304, + "uuid": "a5214460-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Maintain Organization Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 469, + "uuid": "a439b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Limit Access to Role", + "description": "If no Role is selected, grant access to all (non-manual) roles of the Client", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 30, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + } + ], + "fields": [ + { + "id": 9621, + "uuid": "8d66827c-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Pricelist", + "description": "Price List used by this Business Partner", + "help": "Identifies the price list used by a Vendor for products purchased by this organization.", + "sequence": 0, + "column_name": "PO_PriceList_ID", + "element_name": "PO_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "Name", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9608, + "uuid": "8d638c66-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Discount Schema", + "description": "Schema to calculate the purchase trade discount percentage", + "help": "", + "sequence": 0, + "column_name": "PO_DiscountSchema_ID", + "element_name": "PO_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9610, + "uuid": "8d638d56-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "Purchase payment option", + "help": "The Payment Rule indicates the method of purchase payment.", + "sequence": 0, + "column_name": "PaymentRulePO", + "element_name": "PaymentRulePO", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9624, + "uuid": "8d64c9be-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "How you pay the invoice", + "help": "The Payment Rule indicates the method of invoice payment.", + "sequence": 0, + "column_name": "PaymentRule", + "element_name": "PaymentRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9604, + "uuid": "8d661062-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Description", + "description": "Description to be used on orders", + "help": "The Order Description identifies the standard description to use on orders for this Customer.", + "sequence": 0, + "column_name": "SO_Description", + "element_name": "SO_Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9601, + "uuid": "8d660d60-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 0, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9602, + "uuid": "8d660e28-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Schedule for generating Invoices", + "help": "The Invoice Schedule identifies the frequency used when generating invoices.", + "sequence": 0, + "column_name": "C_InvoiceSchedule_ID", + "element_name": "C_InvoiceSchedule_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_InvoiceSchedule", + "key_column_name": "C_InvoiceSchedule.C_InvoiceSchedule_ID", + "display_column_name": "", + "query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule ORDER BY 3", + "direct_query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule WHERE C_InvoiceSchedule.C_InvoiceSchedule_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 147, + "uuid": "a5216c1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Maintain Invoicing Schedule", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10470, + "uuid": "8d66d24a-fb40-11e8-a479-7a0060f0aa01", + "name": "Flat Discount %", + "description": "Flat discount percentage ", + "help": "", + "sequence": 0, + "column_name": "FlatDiscount", + "element_name": "FlatDiscount", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 22, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9618, + "uuid": "8d66ba6c-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Print Format", + "description": "Print Format for printing Invoices", + "help": "You need to define a Print Format to print the document.", + "sequence": 0, + "column_name": "Invoice_PrintFormat_ID", + "element_name": "Invoice_PrintFormat_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_PrintFormat", + "key_column_name": "AD_PrintFormat.AD_PrintFormat_ID", + "display_column_name": "Name", + "query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 ORDER BY 3", + "direct_query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 AND AD_PrintFormat.AD_PrintFormat_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 240, + "uuid": "a5216e18-fb40-11e8-a479-7a0060f0aa01", + "name": "Print Format", + "description": "Maintain Print Format", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9616, + "uuid": "8d66a504-fb40-11e8-a479-7a0060f0aa01", + "name": "Send EMail", + "description": "Enable sending Document EMail", + "help": "Send emails with document attached (e.g. Invoice, Delivery Note, etc.)", + "sequence": 0, + "column_name": "SendEMail", + "element_name": "SendEMail", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9600, + "uuid": "8d67ca38-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Rule", + "description": "Frequency and method of invoicing ", + "help": "The Invoice Rule defines how a Business Partner is invoiced and the frequency of invoicing.", + "sequence": 0, + "column_name": "InvoiceRule", + "element_name": "InvoiceRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 54556, + "uuid": "8d79b77a-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning Grace Date", + "description": "", + "help": "", + "sequence": 0, + "column_name": "DunningGrace", + "element_name": "DunningGrace", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 9625, + "uuid": "8d60f2bc-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Copies", + "description": "Number of copies to be printed", + "help": "The Document Copies indicates the number of copies of each document that will be generated.", + "sequence": 0, + "column_name": "DocumentCopies", + "element_name": "DocumentCopies", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2159, + "uuid": "8d381310-fb40-11e8-a479-7a0060f0aa01", + "name": "One time transaction", + "description": "", + "help": "", + "sequence": 0, + "column_name": "IsOneTime", + "element_name": "IsOneTime", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9609, + "uuid": "8d5aa8a8-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Reference", + "description": "Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner", + "help": "The business partner order reference is the order reference for this specific transaction; Often Purchase Order numbers are given to print on Invoices for easier reference. A standard number can be defined in the Business Partner (Customer) window.", + "sequence": 0, + "column_name": "POReference", + "element_name": "POReference", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 2129, + "uuid": "8d5e03d6-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 0, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 3277, + "uuid": "8d5e5228-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Used", + "description": "Current open balance", + "help": "The Credit Used indicates the total amount of open or unpaid invoices in primary accounting currency for the Business Partner. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditUsed", + "element_name": "SO_CreditUsed", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9606, + "uuid": "8d5e96ac-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Limit", + "description": "Total outstanding invoice amounts allowed", + "help": "The Credit Limit indicates the total amount allowed \"on account\" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditLimit", + "element_name": "SO_CreditLimit", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9607, + "uuid": "8d5e977e-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Via", + "description": "How the order will be delivered", + "help": "The Delivery Via indicates how the products should be delivered. For example, will the order be picked up or shipped.", + "sequence": 0, + "column_name": "DeliveryViaRule", + "element_name": "DeliveryViaRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9612, + "uuid": "8d5f0164-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Rule", + "description": "Defines the timing of Delivery", + "help": "The Delivery Rule indicates when an order should be delivered. For example should the order be delivered when the entire order is complete, when a line is complete or as the products become available.", + "sequence": 0, + "column_name": "DeliveryRule", + "element_name": "DeliveryRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9614, + "uuid": "8d5f7568-fb40-11e8-a479-7a0060f0aa01", + "name": "Customer", + "description": "Indicates if this Business Partner is a Customer", + "help": "The Customer checkbox indicates if this Business Partner is a customer. If it is select additional fields will display which further define this customer.", + "sequence": 0, + "column_name": "IsCustomer", + "element_name": "IsCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9605, + "uuid": "8d5fdecc-fb40-11e8-a479-7a0060f0aa01", + "name": "Freight Cost Rule", + "description": "Method for charging Freight", + "help": "The Freight Cost Rule indicates the method used when charging for freight.", + "sequence": 0, + "column_name": "FreightCostRule", + "element_name": "FreightCostRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9622, + "uuid": "8d60a410-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 0, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9623, + "uuid": "8d60a4e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Vendor", + "description": "Indicates if this Business Partner is a Vendor", + "help": "The Vendor checkbox indicates if this Business Partner is a Vendor. If it is selected, additional fields will display which further identify this vendor.", + "sequence": 0, + "column_name": "IsVendor", + "element_name": "IsVendor", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9626, + "uuid": "8d62b534-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Indicates if the business partner is a sales representative or company agent", + "help": "The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.", + "sequence": 0, + "column_name": "IsSalesRep", + "element_name": "IsSalesRep", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9611, + "uuid": "8d62c092-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Schema to calculate the trade discount percentage", + "help": "After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.", + "sequence": 0, + "column_name": "M_DiscountSchema_ID", + "element_name": "M_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9628, + "uuid": "8d62c42a-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Dunning Rules for overdue invoices", + "help": "The Dunning indicates the rules and method of dunning for past due payments.", + "sequence": 0, + "column_name": "C_Dunning_ID", + "element_name": "C_Dunning_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Dunning", + "key_column_name": "C_Dunning.C_Dunning_ID", + "display_column_name": "", + "query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning ORDER BY 3", + "direct_query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning WHERE C_Dunning.C_Dunning_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 159, + "uuid": "a5211d3c-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Maintain Dunning Levels", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9613, + "uuid": "8d63f98a-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Printed", + "description": "Print Discount on Invoice and Order", + "help": "The Discount Printed Checkbox indicates if the discount will be printed on the document.", + "sequence": 0, + "column_name": "IsDiscountPrinted", + "element_name": "IsDiscountPrinted", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9615, + "uuid": "8d63fa48-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 0, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9619, + "uuid": "8d64980e-fb40-11e8-a479-7a0060f0aa01", + "name": "Min Shelf Life %", + "description": "Minimum Shelf Life in percent based on Product Instance Guarantee Date", + "help": "Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select \"Show All\"", + "sequence": 0, + "column_name": "ShelfLifeMinPct", + "element_name": "ShelfLifeMinPct", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9603, + "uuid": "8d64b80c-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Payment Term", + "description": "Payment rules for a purchase order", + "help": "The PO Payment Term indicates the payment term that will be used when this purchase order becomes an invoice.", + "sequence": 0, + "column_name": "PO_PaymentTerm_ID", + "element_name": "PO_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "Name", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9617, + "uuid": "8d36e6de-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Parent", + "description": "Business Partner Parent", + "help": "The parent (organization) of the Business Partner for reporting purposes.", + "sequence": 0, + "column_name": "BPartner_Parent_ID", + "element_name": "BPartner_Parent_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "@BPartner_Parent_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "Name", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' AND C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9627, + "uuid": "8d0b7184-fb40-11e8-a479-7a0060f0aa01", + "name": "Employee", + "description": "Indicates if this Business Partner is an employee", + "help": "The Employee checkbox indicates if this Business Partner is an Employee. If it is selected, additional fields will display which further identify this employee.", + "sequence": 0, + "column_name": "IsEmployee", + "element_name": "IsEmployee", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 3261, + "uuid": "8ceb00c0-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Greeting to print on correspondence", + "help": "The Greeting identifies the greeting to print on correspondence.", + "sequence": 0, + "column_name": "C_Greeting_ID", + "element_name": "C_Greeting_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Greeting", + "key_column_name": "C_Greeting.C_Greeting_ID", + "display_column_name": "", + "query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting ORDER BY 3", + "direct_query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting WHERE C_Greeting.C_Greeting_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 178, + "uuid": "a520eb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Maintain Greetings", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2141, + "uuid": "8ceafc92-fb40-11e8-a479-7a0060f0aa01", + "name": "Summary Level", + "description": "This is a summary entity", + "help": "A summary entity represents a branch in a tree rather than an end-node. Summary entities are used for reporting and do not have own values.", + "sequence": 0, + "column_name": "IsSummary", + "element_name": "IsSummary", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2160, + "uuid": "8ceb230c-fb40-11e8-a479-7a0060f0aa01", + "name": "SO Tax exempt", + "description": "Business partner is exempt from tax on sales", + "help": "If a business partner is exempt from tax on sales, the exempt tax rate is used. For this, you need to set up a tax rate with a 0% rate and indicate that this is your tax exempt rate. This is required for tax reporting, so that you can track tax exempt transactions.", + "sequence": 0, + "column_name": "IsTaxExempt", + "element_name": "IsTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57981, + "uuid": "8d27f660-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Tax exempt", + "description": "Business partner is exempt from tax on purchases", + "help": "If a business partner is exempt from tax on purchases, the exempt tax rate is used. For this, you need to set up a tax rate with a 0% rate and indicate that this is your tax exempt rate. This is required for tax reporting, so that you can track tax exempt transactions.", + "sequence": 0, + "column_name": "IsPOTaxExempt", + "element_name": "IsPOTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 54555, + "uuid": "8d1a9100-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax Group", + "description": "", + "help": "", + "sequence": 0, + "column_name": "C_TaxGroup_ID", + "element_name": "C_TaxGroup_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_TaxGroup", + "key_column_name": "C_TaxGroup.C_TaxGroup_ID", + "display_column_name": "", + "query": "SELECT C_TaxGroup.C_TaxGroup_ID,NULL,NVL(C_TaxGroup.Name,'-1'),C_TaxGroup.IsActive, C_TaxGroup.UUID FROM C_TaxGroup ORDER BY 3", + "direct_query": "SELECT C_TaxGroup.C_TaxGroup_ID,NULL,NVL(C_TaxGroup.Name,'-1'),C_TaxGroup.IsActive, C_TaxGroup.UUID FROM C_TaxGroup WHERE C_TaxGroup.C_TaxGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53020, + "uuid": "a521ea14-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax Group", + "description": "Tax Groups let you group the business partner with a reference tax.", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2132, + "uuid": "8ce8fc12-fb40-11e8-a479-7a0060f0aa01", + "name": "D-U-N-S", + "description": "Dun & Bradstreet Number", + "help": "Used for EDI - For details see www.dnb.com/dunsno/list.htm", + "sequence": 0, + "column_name": "DUNS", + "element_name": "DUNS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 11 + }, + { + "id": 2149, + "uuid": "8ced40e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference No", + "description": "Your customer or vendor number at the Business Partner's site", + "help": "The reference number can be printed on orders and invoices to allow your business partner to faster identify your records.", + "sequence": 0, + "column_name": "ReferenceNo", + "element_name": "ReferenceNo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2144, + "uuid": "8ceab7be-fb40-11e8-a479-7a0060f0aa01", + "name": "NAICS/SIC", + "description": "Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html", + "help": "The NAICS/SIC identifies either of these codes that may be applicable to this Business Partner.", + "sequence": 0, + "column_name": "NAICS", + "element_name": "NAICS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 6 + }, + { + "id": 2162, + "uuid": "8cf2b086-fb40-11e8-a479-7a0060f0aa01", + "name": "Rating", + "description": "Classification or Importance", + "help": "The Rating is used to differentiate the importance", + "sequence": 0, + "column_name": "Rating", + "element_name": "Rating", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2124, + "uuid": "8cf356da-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Language for this Business Partner if Multi-Language enabled", + "help": "The Language identifies the language to use for display and formatting documents. It requires, that on Client level, Multi-Lingual documents are selected and that you have created/loaded the language.", + "sequence": 0, + "column_name": "AD_Language", + "element_name": "AD_Language", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Language", + "key_column_name": "AD_Language.AD_Language", + "display_column_name": "Name", + "query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') ORDER BY 3", + "direct_query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') AND AD_Language.AD_Language=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 106, + "uuid": "a5213222-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Maintain Languages", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2139, + "uuid": "8ceb9d82-fb40-11e8-a479-7a0060f0aa01", + "name": "Prospect", + "description": "Indicates this is a Prospect", + "help": "The Prospect checkbox indicates an entity that is an active prospect.", + "sequence": 0, + "column_name": "IsProspect", + "element_name": "IsProspect", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9620, + "uuid": "8d0d545e-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "sequence": 0, + "column_name": "AD_OrgBP_ID", + "element_name": "AD_OrgBP_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 28, + "default_value": "", + "read_only_logic": "@AD_OrgBP_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2148, + "uuid": "8cf17a18-fb40-11e8-a479-7a0060f0aa01", + "name": "Potential Life Time Value", + "description": "Total Revenue expected", + "help": "The Potential Life Time Value is the anticipated revenue in primary accounting currency to be generated by the Business Partner.", + "sequence": 0, + "column_name": "PotentialLifeTimeValue", + "element_name": "PotentialLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2128, + "uuid": "8cfc52f8-fb40-11e8-a479-7a0060f0aa01", + "name": "Actual Life Time Value", + "description": "Actual Life Time Revenue", + "help": "The Actual Life Time Value is the recorded revenue in primary accounting currency generated by the Business Partner.", + "sequence": 0, + "column_name": "ActualLifeTimeValue", + "element_name": "ActualLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2127, + "uuid": "8d0329c0-fb40-11e8-a479-7a0060f0aa01", + "name": "Acquisition Cost", + "description": "The cost of gaining the prospect as a customer", + "help": "The Acquisition Cost identifies the cost associated with making this prospect a customer.", + "sequence": 0, + "column_name": "AcqusitionCost", + "element_name": "AcqusitionCost", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 37, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2146, + "uuid": "8d02f96e-fb40-11e8-a479-7a0060f0aa01", + "name": "Employees", + "description": "Number of employees", + "help": "Indicates the number of employees for this Business Partner. This field displays only for Prospects.", + "sequence": 0, + "column_name": "NumberEmployees", + "element_name": "NumberEmployees", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2154, + "uuid": "8ceea482-fb40-11e8-a479-7a0060f0aa01", + "name": "Share", + "description": "Share of Customer's business as a percentage", + "help": "The Share indicates the percentage of this Business Partner's volume of the products supplied.", + "sequence": 0, + "column_name": "ShareOfCustomer", + "element_name": "ShareOfCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2153, + "uuid": "8ced4164-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Volume in 1.000", + "description": "Total Volume of Sales in Thousands of Currency", + "help": "The Sales Volume indicates the total volume of sales for a Business Partner.", + "sequence": 0, + "column_name": "SalesVolume", + "element_name": "SalesVolume", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2135, + "uuid": "8cf3e87a-fb40-11e8-a479-7a0060f0aa01", + "name": "First Sale", + "description": "Date of First Sale", + "help": "The First Sale Date identifies the date of the first sale to this Business Partner", + "sequence": 0, + "column_name": "FirstSale", + "element_name": "FirstSale", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsEmployee@=N", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 2123, + "uuid": "8d5a8ecc-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 10, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2125, + "uuid": "8d37fdd0-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 20, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2156, + "uuid": "8d382fa8-fb40-11e8-a479-7a0060f0aa01", + "name": "Search Key", + "description": "Search key for the record in the format required - must be unique", + "help": "A search key allows you a fast method of finding a particular record.\nIf you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the \"Maintain Sequence\" window with the name \"DocumentNo_\", where TableName is the actual name of the table (e.g. C_Order).", + "sequence": 30, + "column_name": "Value", + "element_name": "Value", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2155, + "uuid": "8cef473e-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax ID", + "description": "Tax Identification", + "help": "The Tax ID field identifies the legal Identification number of this Entity.", + "sequence": 40, + "column_name": "TaxID", + "element_name": "TaxID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2145, + "uuid": "8cf0a87c-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 50, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 3228, + "uuid": "8cec3710-fb40-11e8-a479-7a0060f0aa01", + "name": "Name 2", + "description": "Additional Name", + "help": "", + "sequence": 60, + "column_name": "Name2", + "element_name": "Name2", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 2133, + "uuid": "8cf3eaaa-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 70, + "column_name": "Description", + "element_name": "Description", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 3955, + "uuid": "8d04c73a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Business Partner Group", + "help": "The Business Partner Group provides a method of defining defaults to be used for individual Business Partners.", + "sequence": 80, + "column_name": "C_BP_Group_ID", + "element_name": "C_BP_Group_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "C_BP_Group", + "key_column_name": "C_BP_Group.C_BP_Group_ID", + "display_column_name": "", + "query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group ORDER BY 3", + "direct_query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group WHERE C_BP_Group.C_BP_Group_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 192, + "uuid": "a5216404-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Maintain Business Partner Groups", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 94790, + "uuid": "e699d070-8e2e-11e9-a13e-6ba4b8556bd1", + "name": "Person Type", + "description": "Person Type for Withholding", + "help": "You can see more information about it here: http://declaraciones.seniat.gob.ve", + "sequence": 90, + "column_name": "PersonType", + "element_name": "PersonType", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=54145 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=54145 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 5 + }, + { + "id": 95959, + "uuid": "e7bc97d9-6f28-4dea-8211-db7c9907a6ba", + "name": "Account Type", + "description": "Account Type classification for Business Partner", + "help": "", + "sequence": 100, + "column_name": "C_BP_AccountType_ID", + "element_name": "C_BP_AccountType_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "C_BP_AccountType", + "key_column_name": "C_BP_AccountType.C_BP_AccountType_ID", + "display_column_name": "", + "query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType ORDER BY 3", + "direct_query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType WHERE C_BP_AccountType.C_BP_AccountType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53692, + "uuid": "1d7993d0-c94b-4545-a497-2ad29c3b06f4", + "name": "Business Partner Account Type", + "description": "Business Partner Account Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 95960, + "uuid": "17d4c0ea-41f9-4c0c-869f-d99b958eaec6", + "name": "Industry Type", + "description": "Business Partner Industry Type or classification", + "help": "Use this field for set a industry type or classification for business partner", + "sequence": 110, + "column_name": "C_BP_IndustryType_ID", + "element_name": "C_BP_IndustryType_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "C_BP_IndustryType", + "key_column_name": "C_BP_IndustryType.C_BP_IndustryType_ID", + "display_column_name": "", + "query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType ORDER BY 3", + "direct_query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType WHERE C_BP_IndustryType.C_BP_IndustryType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53694, + "uuid": "a86ce537-86fd-4f2b-aa1c-90f01a8dcbd7", + "name": "Business Partner Industry Type", + "description": "Business Partner Industry Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 95961, + "uuid": "bcffdb25-e83b-49d7-b2d6-e2f871687b9d", + "name": "Segment", + "description": "Business Partner Segment", + "help": "", + "sequence": 120, + "column_name": "C_BP_Segment_ID", + "element_name": "C_BP_Segment_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "C_BP_Segment", + "key_column_name": "C_BP_Segment.C_BP_Segment_ID", + "display_column_name": "", + "query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment ORDER BY 3", + "direct_query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment WHERE C_BP_Segment.C_BP_Segment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53693, + "uuid": "bc1f3ba0-0190-46aa-b066-82049f1f2803", + "name": "Business Partner Segment", + "description": "Business Partner Segment", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 95962, + "uuid": "2bfbe641-87c4-457c-a3cc-cab6b85d53d6", + "name": "Sales Group", + "description": "Sales Group", + "help": "", + "sequence": 130, + "column_name": "C_BP_SalesGroup_ID", + "element_name": "C_BP_SalesGroup_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 107, + "uuid": "8dd1723a-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "C_BP_SalesGroup", + "key_column_name": "C_BP_SalesGroup.C_BP_SalesGroup_ID", + "display_column_name": "", + "query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup ORDER BY 3", + "direct_query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup WHERE C_BP_SalesGroup.C_BP_SalesGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53691, + "uuid": "340ab277-5c90-4897-ab69-271c793ae458", + "name": "Business Partner Sales Group", + "description": "Business Partner Sales Group", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2136, + "uuid": "8d3880b6-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 140, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 8238, + "uuid": "8cfae6ac-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Status", + "description": "Business Partner Credit Status", + "help": "Credit Management is inactive if Credit Status is No Credit Check, Credit Stop or if the Credit Limit is 0.\nIf active, the status is set automatically set to Credit Hold, if the Total Open Balance (including Vendor activities) is higher then the Credit Limit. It is set to Credit Watch, if above 90% of the Credit Limit and Credit OK otherwise.", + "sequence": 150, + "column_name": "SOCreditStatus", + "element_name": "SOCreditStatus", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 10592, + "uuid": "8d09b38a-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Balance", + "description": "Total Open Balance Amount in primary Accounting Currency", + "help": "The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management.\nInvoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).", + "sequence": 160, + "column_name": "TotalOpenBalance", + "element_name": "TotalOpenBalance", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2164, + "uuid": "8cefcca4-fb40-11e8-a479-7a0060f0aa01", + "name": "URL", + "description": "Full URL address - e.g. http://www.adempiere.org", + "help": "The URL defines an fully qualified web address like http://www.adempiere.org", + "sequence": 170, + "column_name": "URL", + "element_name": "URL", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 40, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 120 + }, + { + "id": 100113, + "uuid": "ae5228c4-5381-4503-bf94-1f9589509343", + "name": "Drop Shipment", + "description": "Drop Shipments are sent from the Vendor directly to the Customer", + "help": "Drop Shipments do not cause any Inventory reservations or movements as the Shipment is from the Vendor's inventory. The Shipment of the Vendor to the Customer must be confirmed.", + "sequence": 180, + "column_name": "IsDropShip", + "element_name": "IsDropShip", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 130, + "uuid": "8dd16c22-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57533, + "uuid": "8d28d9b8-fb40-11e8-a479-7a0060f0aa01", + "name": "Logo", + "description": "", + "help": "", + "sequence": 180, + "column_name": "Logo_ID", + "element_name": "Logo_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 32, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50012, + "uuid": "8dde0482-fb40-11e8-a479-7a0060f0aa01", + "name": "Logo", + "field_group_type": "T", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 223, + "uuid": "a49fb436-fb40-11e8-a479-7a0060f0aa01", + "name": "Customer", + "description": "Define Customer Parameters", + "help": "The Customer Tab defines a Business Partner who is a customer of this organization. If the Customer check box is selected then the necessary fields will display. ", + "table_name": "C_BPartner", + "sequence": 20, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": false, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "C_BPartner_ID", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", InvoiceRule_AD_Ref_List.Name AS \"DisplayColumn_InvoiceRule\", (SELECT NVL(C_InvoiceSchedule.Name,'') FROM C_InvoiceSchedule WHERE C_BPartner.C_InvoiceSchedule_ID=C_InvoiceSchedule.C_InvoiceSchedule_ID) AS \"DisplayColumn_C_InvoiceSchedule_ID\", DeliveryRule_AD_Ref_List.Name AS \"DisplayColumn_DeliveryRule\", DeliveryViaRule_AD_Ref_List.Name AS \"DisplayColumn_DeliveryViaRule\", (SELECT NVL(M_PriceList.Name,'') FROM M_PriceList WHERE C_BPartner.M_PriceList_ID=M_PriceList.M_PriceList_ID) AS \"DisplayColumn_M_PriceList_ID\", M_DiscountSchema_ID_M_DiscountSchema.Name AS \"DisplayColumn_M_DiscountSchema_ID\", PaymentRule_AD_Ref_List.Name AS \"DisplayColumn_PaymentRule\", (SELECT NVL(C_PaymentTerm.Name,'') FROM C_PaymentTerm WHERE C_BPartner.C_PaymentTerm_ID=C_PaymentTerm.C_PaymentTerm_ID) AS \"DisplayColumn_C_PaymentTerm_ID\", SalesRep_ID_AD_User.Name AS \"DisplayColumn_SalesRep_ID\", (SELECT NVL(C_Dunning.Name,'') FROM C_Dunning WHERE C_BPartner.C_Dunning_ID=C_Dunning.C_Dunning_ID) AS \"DisplayColumn_C_Dunning_ID\", Invoice_PrintFormat_ID_AD_PrintFormat.Name AS \"DisplayColumn_Invoice_PrintFormat_ID\" FROM C_BPartner AS C_BPartner LEFT JOIN AD_Ref_List AS InvoiceRule_AD_Ref_List ON(InvoiceRule_AD_Ref_List.Value = C_BPartner.InvoiceRule AND InvoiceRule_AD_Ref_List.AD_Reference_ID = 150) LEFT JOIN AD_Ref_List AS DeliveryRule_AD_Ref_List ON(DeliveryRule_AD_Ref_List.Value = C_BPartner.DeliveryRule AND DeliveryRule_AD_Ref_List.AD_Reference_ID = 151) LEFT JOIN AD_Ref_List AS DeliveryViaRule_AD_Ref_List ON(DeliveryViaRule_AD_Ref_List.Value = C_BPartner.DeliveryViaRule AND DeliveryViaRule_AD_Ref_List.AD_Reference_ID = 152) LEFT JOIN M_DiscountSchema AS M_DiscountSchema_ID_M_DiscountSchema ON(M_DiscountSchema_ID_M_DiscountSchema.M_DiscountSchema_ID = C_BPartner.M_DiscountSchema_ID) LEFT JOIN AD_Ref_List AS PaymentRule_AD_Ref_List ON(PaymentRule_AD_Ref_List.Value = C_BPartner.PaymentRule AND PaymentRule_AD_Ref_List.AD_Reference_ID = 195) LEFT JOIN AD_User AS SalesRep_ID_AD_User ON(SalesRep_ID_AD_User.AD_User_ID = C_BPartner.SalesRep_ID) LEFT JOIN AD_PrintFormat AS Invoice_PrintFormat_ID_AD_PrintFormat ON(Invoice_PrintFormat_ID_AD_PrintFormat.AD_PrintFormat_ID = C_BPartner.Invoice_PrintFormat_ID)", + "where_clause": "C_BPartner.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [ + { + "id": 53756, + "uuid": "a42cff4a-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55201, + "uuid": "a43c8762-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 10, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "@SQL=SELECT TRUNC(ADD_MONTHS(SYSDATE,-3),'MM') AS start_date FROM dual", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "@#Date@", + "field_length": 0 + }, + { + "id": 55202, + "uuid": "a43d041c-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 20, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + }, + { + "id": 53754, + "uuid": "a42cfbb2-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55193, + "uuid": "a43c94d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank Account", + "description": "Account at the Bank", + "help": "The Bank Account identifies an account at this Bank.", + "sequence": 10, + "column_name": "C_BankAccount_ID", + "element_name": "C_BankAccount_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BankAccount", + "key_column_name": "C_BankAccount.C_BankAccount_ID", + "display_column_name": "", + "query": "SELECT C_BankAccount.C_BankAccount_ID,NULL,NVL((SELECT NVL(C_Bank.Name,'')||' - '||NVL(C_Bank.RoutingNo,''), C_BankAccount.UUID FROM C_Bank WHERE C_BankAccount.C_Bank_ID=C_Bank.C_Bank_ID),'-1') ||'_'|| NVL(C_BankAccount.AccountNo,'-1'),C_BankAccount.IsActive FROM C_BankAccount ORDER BY 3", + "direct_query": "SELECT C_BankAccount.C_BankAccount_ID,NULL,NVL((SELECT NVL(C_Bank.Name,'')||' - '||NVL(C_Bank.RoutingNo,''), C_BankAccount.UUID FROM C_Bank WHERE C_BankAccount.C_Bank_ID=C_Bank.C_Bank_ID),'-1') ||'_'|| NVL(C_BankAccount.AccountNo,'-1'),C_BankAccount.IsActive FROM C_BankAccount WHERE C_BankAccount.C_BankAccount_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 158, + "uuid": "a5214fc8-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank", + "description": "Maintain Bank", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55194, + "uuid": "a43c9572-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 20, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 30, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55195, + "uuid": "a43c9612-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Document type or rules", + "help": "The Document Type determines document sequence and processing rules", + "sequence": 30, + "column_name": "C_DocType_ID", + "element_name": "C_DocType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_DocType", + "key_column_name": "C_DocType.C_DocType_ID", + "display_column_name": "", + "query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.DocBaseType IN ('ARR', 'APP') ORDER BY 3", + "direct_query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.C_DocType_ID=?", + "validation_code": "C_DocType.DocBaseType IN ('ARR', 'APP')", + "zoom_windows": [ + { + "id": 135, + "uuid": "a520e196-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Maintain Document Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55196, + "uuid": "a43c96b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Allocated", + "description": "Indicates if the payment has been allocated", + "help": "The Allocated checkbox indicates if a payment has been allocated or associated with an invoice or invoices.", + "sequence": 40, + "column_name": "IsAllocated", + "element_name": "IsAllocated", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 17, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 57161, + "uuid": "7b0bca4e-de50-11e9-a51b-0242ac110002", + "name": "Currency", + "description": "The Currency for this record", + "help": "Indicates the Currency to be used when processing or reporting on this record", + "sequence": 50, + "column_name": "C_Currency_ID", + "element_name": "C_Currency_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Currency", + "key_column_name": "C_Currency.C_Currency_ID", + "display_column_name": "", + "query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency ORDER BY 3", + "direct_query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.C_Currency_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 115, + "uuid": "a520e6be-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "Maintain Currencies", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57162, + "uuid": "7ba3aa76-de50-11e9-a51b-0242ac110002", + "name": "Project", + "description": "Financial Project", + "help": "A Project allows you to track and control internal or external activities.", + "sequence": 60, + "column_name": "C_Project_ID", + "element_name": "C_Project_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Project", + "key_column_name": "C_Project.C_Project_ID", + "display_column_name": "", + "query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project ORDER BY 3", + "direct_query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project WHERE C_Project.C_Project_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + }, + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57163, + "uuid": "7c78abd6-de50-11e9-a51b-0242ac110002", + "name": "Document Status", + "description": "The current status of the document", + "help": "The Document Status indicates the status of a document at this time. If you want to change the document status, use the Document Action field", + "sequence": 70, + "column_name": "DocStatus", + "element_name": "DocStatus", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "CO", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=131 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=131 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 2 + }, + { + "id": 57352, + "uuid": "8f914f2f-21fb-4cdf-9422-299f0a2826c9", + "name": "Charge", + "description": "Additional document charges", + "help": "The Charge indicates a type of Charge (Handling, Shipping, Restocking)", + "sequence": 80, + "column_name": "C_Charge_ID", + "element_name": "C_Charge_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Charge", + "key_column_name": "C_Charge.C_Charge_ID", + "display_column_name": "", + "query": "SELECT C_Charge.C_Charge_ID,NULL,NVL(C_Charge.Name,'-1'),C_Charge.IsActive, C_Charge.UUID FROM C_Charge ORDER BY 3", + "direct_query": "SELECT C_Charge.C_Charge_ID,NULL,NVL(C_Charge.Name,'-1'),C_Charge.IsActive, C_Charge.UUID FROM C_Charge WHERE C_Charge.C_Charge_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 161, + "uuid": "a5211562-fb40-11e8-a479-7a0060f0aa01", + "name": "Charge", + "description": "Maintain Charges", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57353, + "uuid": "54311e61-d034-43c3-90dd-b195280341bc", + "name": "Activity", + "description": "Business Activity", + "help": "Activities indicate tasks that are performed and used to utilize Activity based Costing", + "sequence": 90, + "column_name": "C_Activity_ID", + "element_name": "C_Activity_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Activity", + "key_column_name": "C_Activity.C_Activity_ID", + "display_column_name": "", + "query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity ORDER BY 3", + "direct_query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity WHERE C_Activity.C_Activity_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 134, + "uuid": "a520e07e-fb40-11e8-a479-7a0060f0aa01", + "name": "Activity (ABC)", + "description": "Maintain Activities for Activity Based Costing", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57354, + "uuid": "d0c42ddd-815a-41a6-a18c-5a331969cddc", + "name": "Invoice", + "description": "Invoice Identifier", + "help": "The Invoice Document.", + "sequence": 100, + "column_name": "C_Invoice_ID", + "element_name": "C_Invoice_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Invoice", + "key_column_name": "C_Invoice.C_Invoice_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice ORDER BY C_Invoice.DocumentNo", + "direct_query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice WHERE C_Invoice.C_Invoice_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 167, + "uuid": "a5220bac-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Customer)", + "description": "Customer Invoice Entry", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 183, + "uuid": "a520e312-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Vendor)", + "description": "Vendor Invoice Entry", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57355, + "uuid": "1ca2b4da-09ef-411d-a0ab-f8730fc48f0d", + "name": "Payment Batch", + "description": "Payment batch for EFT", + "help": "Electronic Fund Transfer Payment Batch.", + "sequence": 110, + "column_name": "C_PaymentBatch_ID", + "element_name": "C_PaymentBatch_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentBatch", + "key_column_name": "C_PaymentBatch.C_PaymentBatch_ID", + "display_column_name": "", + "query": "SELECT C_PaymentBatch.C_PaymentBatch_ID,NULL,NVL(C_PaymentBatch.DocumentNo,'-1'),C_PaymentBatch.IsActive, C_PaymentBatch.UUID FROM C_PaymentBatch ORDER BY 3", + "direct_query": "SELECT C_PaymentBatch.C_PaymentBatch_ID,NULL,NVL(C_PaymentBatch.DocumentNo,'-1'),C_PaymentBatch.IsActive, C_PaymentBatch.UUID FROM C_PaymentBatch WHERE C_PaymentBatch.C_PaymentBatch_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 303, + "uuid": "a520fd52-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Batch", + "description": "Process Payment Patches for EFT", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57356, + "uuid": "5a7b0344-9e79-43f8-8c47-dc5471f6ce57", + "name": "Prepayment", + "description": "The Payment/Receipt is a Prepayment", + "help": "Payments not allocated to an invoice with a charge are posted to Unallocated Payments. When setting this flag, the payment is posted to the Customer or Vendor Prepayment account.", + "sequence": 120, + "column_name": "IsPrepayment", + "element_name": "IsPrepayment", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57357, + "uuid": "d1d00afb-f6a7-4e59-b487-b73c8be66ae6", + "name": "Referenced Payment", + "description": "", + "help": "", + "sequence": 130, + "column_name": "Ref_Payment_ID", + "element_name": "Ref_Payment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Payment", + "key_column_name": "C_Payment.C_Payment_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment ORDER BY 3", + "direct_query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment WHERE C_Payment.C_Payment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 195, + "uuid": "a5211e40-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment", + "description": "Process Payments and Receipts", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57358, + "uuid": "ed4f16e2-de1e-4806-99bd-afde196685f6", + "name": "Payment Related", + "description": "", + "help": "", + "sequence": 140, + "column_name": "RelatedPayment_ID", + "element_name": "RelatedPayment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Payment", + "key_column_name": "C_Payment.C_Payment_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment ORDER BY 3", + "direct_query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment WHERE C_Payment.C_Payment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 195, + "uuid": "a5211e40-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment", + "description": "Process Payments and Receipts", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57359, + "uuid": "5aa6936e-922e-4ee8-99bb-dac8a6392e1c", + "name": "Unidentified Payment", + "description": "This flag determine ig a payment is unidentify", + "help": "", + "sequence": 150, + "column_name": "IsUnidentifiedPayment", + "element_name": "IsUnidentifiedPayment", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57360, + "uuid": "1befff40-93dd-4a5c-9bb8-215e76019c4b", + "name": "Sales Group", + "description": "Sales Group", + "help": "", + "sequence": 160, + "column_name": "C_BP_SalesGroup_ID", + "element_name": "C_BP_SalesGroup_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_SalesGroup", + "key_column_name": "C_BP_SalesGroup.C_BP_SalesGroup_ID", + "display_column_name": "", + "query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup ORDER BY 3", + "direct_query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup WHERE C_BP_SalesGroup.C_BP_SalesGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53691, + "uuid": "340ab277-5c90-4897-ab69-271c793ae458", + "name": "Business Partner Sales Group", + "description": "Business Partner Sales Group", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57361, + "uuid": "8e30b845-7b9b-4ad1-af0b-b3f12d7b5078", + "name": "Account Type", + "description": "Account Type classification for Business Partner", + "help": "", + "sequence": 170, + "column_name": "C_BP_AccountType_ID", + "element_name": "C_BP_AccountType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_AccountType", + "key_column_name": "C_BP_AccountType.C_BP_AccountType_ID", + "display_column_name": "", + "query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType ORDER BY 3", + "direct_query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType WHERE C_BP_AccountType.C_BP_AccountType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53692, + "uuid": "1d7993d0-c94b-4545-a497-2ad29c3b06f4", + "name": "Business Partner Account Type", + "description": "Business Partner Account Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57362, + "uuid": "85a31fde-0526-408b-b465-768f27b10ff5", + "name": "Segment", + "description": "Business Partner Segment", + "help": "", + "sequence": 180, + "column_name": "C_BP_Segment_ID", + "element_name": "C_BP_Segment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Segment", + "key_column_name": "C_BP_Segment.C_BP_Segment_ID", + "display_column_name": "", + "query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment ORDER BY 3", + "direct_query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment WHERE C_BP_Segment.C_BP_Segment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53693, + "uuid": "bc1f3ba0-0190-46aa-b066-82049f1f2803", + "name": "Business Partner Segment", + "description": "Business Partner Segment", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57363, + "uuid": "b33033a2-0da4-45c0-89b9-fcf2957e5af8", + "name": "Industry Type", + "description": "Business Partner Industry Type or classification", + "help": "Use this field for set a industry type or classification for business partner", + "sequence": 190, + "column_name": "C_BP_IndustryType_ID", + "element_name": "C_BP_IndustryType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_IndustryType", + "key_column_name": "C_BP_IndustryType.C_BP_IndustryType_ID", + "display_column_name": "", + "query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType ORDER BY 3", + "direct_query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType WHERE C_BP_IndustryType.C_BP_IndustryType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53694, + "uuid": "a86ce537-86fd-4f2b-aa1c-90f01a8dcbd7", + "name": "Business Partner Industry Type", + "description": "Business Partner Industry Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57364, + "uuid": "ec30b31a-9801-4d26-8391-7c81837c0a5c", + "name": "Tender type", + "description": "Method of Payment", + "help": "The Tender Type indicates the method of payment (ACH or Direct Deposit, Credit Card, Check, Direct Debit)", + "sequence": 200, + "column_name": "TenderType", + "element_name": "TenderType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=214 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=214 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57854, + "uuid": "253bd774-1234-4e89-b0cc-4c18aa0d1d5f", + "name": "Collecting Agent", + "description": "In market terms such an economic operator would often be referred to as a \"collecting agent\"", + "help": "", + "sequence": 210, + "column_name": "CollectingAgent_ID", + "element_name": "CollectingAgent_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 53755, + "uuid": "a42cfc20-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55197, + "uuid": "a43c9892-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 10, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 30, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55198, + "uuid": "a43c99c8-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Transaction", + "description": "This is a Sales Transaction", + "help": "The Sales Transaction checkbox indicates if this item is a Sales Transaction.", + "sequence": 15, + "column_name": "IsSOTrx", + "element_name": "IsSOTrx", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55199, + "uuid": "a43c8d3e-fb40-11e8-a479-7a0060f0aa01", + "name": "Days due", + "description": "Number of days due (negative: due in number of days)", + "help": "", + "sequence": 20, + "column_name": "DaysDue", + "element_name": "DaysDue", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 22, + "default_value": "-99999", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "99999", + "field_length": 0 + }, + { + "id": 55200, + "uuid": "a43c9748-fb40-11e8-a479-7a0060f0aa01", + "name": "Collection Status", + "description": "Invoice Collection Status", + "help": "Status of the invoice collection process", + "sequence": 30, + "column_name": "InvoiceCollectionType", + "element_name": "InvoiceCollectionType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=394 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=394 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 57280, + "uuid": "fd44177d-9b9d-4fdd-bef2-b271dde5d65d", + "name": "Currency", + "description": "The Currency for this record", + "help": "Indicates the Currency to be used when processing or reporting on this record", + "sequence": 40, + "column_name": "C_Currency_ID", + "element_name": "C_Currency_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Currency", + "key_column_name": "C_Currency.C_Currency_ID", + "display_column_name": "", + "query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency ORDER BY 3", + "direct_query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.C_Currency_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 115, + "uuid": "a520e6be-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "Maintain Currencies", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57281, + "uuid": "ef59d9be-67aa-471c-bcac-58839ab9d839", + "name": "Document Type", + "description": "Document type or rules", + "help": "The Document Type determines document sequence and processing rules", + "sequence": 50, + "column_name": "C_DocType_ID", + "element_name": "C_DocType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_DocType", + "key_column_name": "C_DocType.C_DocType_ID", + "display_column_name": "", + "query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType ORDER BY 3", + "direct_query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.C_DocType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 135, + "uuid": "a520e196-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Maintain Document Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57282, + "uuid": "651c6eef-2cc4-459a-8edb-034269e6ccc0", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 60, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57283, + "uuid": "145364cf-d00d-41f1-ac6b-7e1ec96af58c", + "name": "Project", + "description": "Financial Project", + "help": "A Project allows you to track and control internal or external activities.", + "sequence": 70, + "column_name": "C_Project_ID", + "element_name": "C_Project_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Project", + "key_column_name": "C_Project.C_Project_ID", + "display_column_name": "", + "query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project ORDER BY 3", + "direct_query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project WHERE C_Project.C_Project_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + }, + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57284, + "uuid": "cc4cbac1-6b14-4cef-9af4-28aaf570e7c9", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 80, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57285, + "uuid": "487200d2-c530-4f2e-bbde-80eecec56acc", + "name": "Date Invoiced", + "description": "Date printed on Invoice", + "help": "The Date Invoice indicates the date printed on the invoice.", + "sequence": 90, + "column_name": "DateInvoiced", + "element_name": "DateInvoiced", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 57286, + "uuid": "cd5b60a8-312f-4e0a-a349-ea5e19243370", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 100, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57287, + "uuid": "4ea179fb-14bd-437d-8f15-babb487d6874", + "name": "Campaign", + "description": "Marketing Campaign", + "help": "The Campaign defines a unique marketing program. Projects can be associated with a pre defined Marketing Campaign. You can then report based on a specific Campaign.", + "sequence": 110, + "column_name": "C_Campaign_ID", + "element_name": "C_Campaign_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Campaign", + "key_column_name": "C_Campaign.C_Campaign_ID", + "display_column_name": "", + "query": "SELECT C_Campaign.C_Campaign_ID,NULL,NVL(C_Campaign.Name,'-1'),C_Campaign.IsActive, C_Campaign.UUID FROM C_Campaign ORDER BY 3", + "direct_query": "SELECT C_Campaign.C_Campaign_ID,NULL,NVL(C_Campaign.Name,'-1'),C_Campaign.IsActive, C_Campaign.UUID FROM C_Campaign WHERE C_Campaign.C_Campaign_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 149, + "uuid": "a521d20e-fb40-11e8-a479-7a0060f0aa01", + "name": "Marketing Campaign", + "description": "Maintain Marketing Campaigns", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57288, + "uuid": "d3b11354-550f-4076-90ba-9d3eae521d95", + "name": "Order", + "description": "Order", + "help": "The Order is a control document. The Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.", + "sequence": 120, + "column_name": "C_Order_ID", + "element_name": "C_Order_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Order", + "key_column_name": "C_Order.C_Order_ID", + "display_column_name": "", + "query": "SELECT C_Order.C_Order_ID,NULL,NVL(C_Order.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Order.DateOrdered AS Text),'-1'),C_Order.IsActive, C_Order.UUID FROM C_Order ORDER BY 3", + "direct_query": "SELECT C_Order.C_Order_ID,NULL,NVL(C_Order.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Order.DateOrdered AS Text),'-1'),C_Order.IsActive, C_Order.UUID FROM C_Order WHERE C_Order.C_Order_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 143, + "uuid": "a52203d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Order", + "description": "Enter and change sales orders", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 181, + "uuid": "a5220b20-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Order", + "description": "Manage Purchase Orders", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57289, + "uuid": "65fb6b78-4414-4230-92b7-c929dc667c52", + "name": "Activity", + "description": "Business Activity", + "help": "Activities indicate tasks that are performed and used to utilize Activity based Costing", + "sequence": 130, + "column_name": "C_Activity_ID", + "element_name": "C_Activity_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Activity", + "key_column_name": "C_Activity.C_Activity_ID", + "display_column_name": "", + "query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity ORDER BY 3", + "direct_query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity WHERE C_Activity.C_Activity_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 134, + "uuid": "a520e07e-fb40-11e8-a479-7a0060f0aa01", + "name": "Activity (ABC)", + "description": "Maintain Activities for Activity Based Costing", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57290, + "uuid": "f7ee185b-7f8a-4d28-ba17-c50462abd3d5", + "name": "Invoice", + "description": "Invoice Identifier", + "help": "The Invoice Document.", + "sequence": 140, + "column_name": "C_Invoice_ID", + "element_name": "C_Invoice_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Invoice", + "key_column_name": "C_Invoice.C_Invoice_ID", + "display_column_name": "", + "query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Invoice.DateInvoiced AS Text),'-1') ||'_'|| NVL(CAST (C_Invoice.GrandTotal AS Text),'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice ORDER BY 3", + "direct_query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Invoice.DateInvoiced AS Text),'-1') ||'_'|| NVL(CAST (C_Invoice.GrandTotal AS Text),'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice WHERE C_Invoice.C_Invoice_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 167, + "uuid": "a5220bac-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Customer)", + "description": "Customer Invoice Entry", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 183, + "uuid": "a520e312-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Vendor)", + "description": "Vendor Invoice Entry", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57291, + "uuid": "895b30d1-8a4c-43cd-b5fd-4d86075dcdaa", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 150, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57292, + "uuid": "4afb9c78-61eb-41c5-9e93-603e0d2edf71", + "name": "Due Date", + "description": "Date when the payment is due", + "help": "Date when the payment is due without deductions or discount", + "sequence": 160, + "column_name": "DueDate", + "element_name": "DueDate", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 57293, + "uuid": "3706df16-0f53-402a-ab8e-aeb300ecba05", + "name": "Sales Group", + "description": "Sales Group", + "help": "", + "sequence": 170, + "column_name": "C_BP_SalesGroup_ID", + "element_name": "C_BP_SalesGroup_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_SalesGroup", + "key_column_name": "C_BP_SalesGroup.C_BP_SalesGroup_ID", + "display_column_name": "", + "query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup ORDER BY 3", + "direct_query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup WHERE C_BP_SalesGroup.C_BP_SalesGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53691, + "uuid": "340ab277-5c90-4897-ab69-271c793ae458", + "name": "Business Partner Sales Group", + "description": "Business Partner Sales Group", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57294, + "uuid": "3acc8644-24d3-4031-a27c-b3f566c678a7", + "name": "Account Type", + "description": "Account Type classification for Business Partner", + "help": "", + "sequence": 180, + "column_name": "C_BP_AccountType_ID", + "element_name": "C_BP_AccountType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_AccountType", + "key_column_name": "C_BP_AccountType.C_BP_AccountType_ID", + "display_column_name": "", + "query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType ORDER BY 3", + "direct_query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType WHERE C_BP_AccountType.C_BP_AccountType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53692, + "uuid": "1d7993d0-c94b-4545-a497-2ad29c3b06f4", + "name": "Business Partner Account Type", + "description": "Business Partner Account Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57295, + "uuid": "425dc057-7ed2-4484-9501-19674c7e12c2", + "name": "Segment", + "description": "Business Partner Segment", + "help": "", + "sequence": 190, + "column_name": "C_BP_Segment_ID", + "element_name": "C_BP_Segment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Segment", + "key_column_name": "C_BP_Segment.C_BP_Segment_ID", + "display_column_name": "", + "query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment ORDER BY 3", + "direct_query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment WHERE C_BP_Segment.C_BP_Segment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53693, + "uuid": "bc1f3ba0-0190-46aa-b066-82049f1f2803", + "name": "Business Partner Segment", + "description": "Business Partner Segment", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57296, + "uuid": "3ba23721-e9eb-4fe1-9667-3fc052248a72", + "name": "Industry Type", + "description": "Business Partner Industry Type or classification", + "help": "Use this field for set a industry type or classification for business partner", + "sequence": 200, + "column_name": "C_BP_IndustryType_ID", + "element_name": "C_BP_IndustryType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_IndustryType", + "key_column_name": "C_BP_IndustryType.C_BP_IndustryType_ID", + "display_column_name": "", + "query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType ORDER BY 3", + "direct_query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType WHERE C_BP_IndustryType.C_BP_IndustryType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53694, + "uuid": "a86ce537-86fd-4f2b-aa1c-90f01a8dcbd7", + "name": "Business Partner Industry Type", + "description": "Business Partner Industry Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57516, + "uuid": "6d3a61ce-1197-4298-a576-8b30ad5341ee", + "name": "Sales Region", + "description": "Sales coverage region", + "help": "The Sales Region indicates a specific area of sales coverage.", + "sequence": 210, + "column_name": "C_SalesRegion_ID", + "element_name": "C_SalesRegion_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_SalesRegion", + "key_column_name": "C_SalesRegion.C_SalesRegion_ID", + "display_column_name": "", + "query": "SELECT C_SalesRegion.C_SalesRegion_ID,NULL,NVL(C_SalesRegion.Name,'-1'),C_SalesRegion.IsActive, C_SalesRegion.UUID FROM C_SalesRegion ORDER BY 3", + "direct_query": "SELECT C_SalesRegion.C_SalesRegion_ID,NULL,NVL(C_SalesRegion.Name,'-1'),C_SalesRegion.IsActive, C_SalesRegion.UUID FROM C_SalesRegion WHERE C_SalesRegion.C_SalesRegion_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 152, + "uuid": "a520fee2-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Region", + "description": "Maintain Sales Regions", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 467, + "uuid": "a439b9ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Existing Organization", + "description": "Organizational entity within client - set to empty if you want to create a new organization", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 10, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 468, + "uuid": "a43a1d1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Organization Type", + "help": "Organization Type allows you to categorize your organizations for reporting purposes", + "sequence": 20, + "column_name": "AD_OrgType_ID", + "element_name": "AD_OrgType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_OrgType", + "key_column_name": "AD_OrgType.AD_OrgType_ID", + "display_column_name": "", + "query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType ORDER BY 3", + "direct_query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType WHERE AD_OrgType.AD_OrgType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 304, + "uuid": "a5214460-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Maintain Organization Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 469, + "uuid": "a439b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Limit Access to Role", + "description": "If no Role is selected, grant access to all (non-manual) roles of the Client", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 30, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + }, + { + "id": 53753, + "uuid": "a42cffea-fb40-11e8-a479-7a0060f0aa01", + "name": "AR Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "is_report": true, + "access_level": 1, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55186, + "uuid": "a43c8bfe-fb40-11e8-a479-7a0060f0aa01", + "name": "Accounting Schema", + "description": "Rules for accounting", + "help": "An Accounting Schema defines the rules used in accounting such as costing method, currency and calendar", + "sequence": 10, + "column_name": "C_AcctSchema_ID", + "element_name": "C_AcctSchema_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_AcctSchema", + "key_column_name": "C_AcctSchema.C_AcctSchema_ID", + "display_column_name": "", + "query": "SELECT C_AcctSchema.C_AcctSchema_ID,NULL,NVL(C_AcctSchema.Name,'-1'),C_AcctSchema.IsActive, C_AcctSchema.UUID FROM C_AcctSchema ORDER BY 3", + "direct_query": "SELECT C_AcctSchema.C_AcctSchema_ID,NULL,NVL(C_AcctSchema.Name,'-1'),C_AcctSchema.IsActive, C_AcctSchema.UUID FROM C_AcctSchema WHERE C_AcctSchema.C_AcctSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 125, + "uuid": "a52142ee-fb40-11e8-a479-7a0060f0aa01", + "name": "Accounting Schema", + "description": "Maintain Accounting Schema - For changes to become effective you must re-login", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55187, + "uuid": "a43c8f32-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 30, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "@SQL=SELECT TRUNC(ADD_MONTHS(SYSDATE,-3),'MM') AS start_date FROM dual", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "@#Date@", + "field_length": 0 + }, + { + "id": 55188, + "uuid": "a43c8c9e-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 40, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Client_ID=@AD_Client_ID@ AND AD_Org.AD_Org_ID<>0 ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Client_ID=@AD_Client_ID@ AND AD_Org.AD_Org_ID<>0", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55189, + "uuid": "a43c8fe6-fb40-11e8-a479-7a0060f0aa01", + "name": "Account", + "description": "Account used", + "help": "The (natural) account used", + "sequence": 50, + "column_name": "Account_ID", + "element_name": "Account_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 18, + "default_value": "@SQL=SELECT vc.Account_ID AS DefaultValue FROM C_BP_Customer_Acct ca INNER JOIN C_ValidCombination vc on (ca.C_Receivable_Acct=C_ValidCombination_ID) WHERE ca.C_BPartner_ID=@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_ElementValue", + "key_column_name": "C_ElementValue.C_ElementValue_ID", + "display_column_name": "Name", + "query": "SELECT C_ElementValue.C_ElementValue_ID,NULL,NVL(C_ElementValue.Value,'-1') || '-' || NVL(C_ElementValue.Name,'-1'),C_ElementValue.IsActive, C_ElementValue.UUID FROM C_ElementValue WHERE C_ElementValue.IsActive='Y' \nAND C_ElementValue.C_Element_ID IN (SELECT C_Element_ID FROM C_AcctSchema_Element ase WHERE ase.ElementType='AC' AND ase.AD_Client_ID=1000000) ORDER BY C_ElementValue.Value", + "direct_query": "SELECT C_ElementValue.C_ElementValue_ID,NULL,NVL(C_ElementValue.Value,'-1') || '-' || NVL(C_ElementValue.Name,'-1'),C_ElementValue.IsActive, C_ElementValue.UUID FROM C_ElementValue WHERE C_ElementValue.IsActive='Y' \nAND C_ElementValue.C_Element_ID IN (SELECT C_Element_ID FROM C_AcctSchema_Element ase WHERE ase.ElementType='AC' AND ase.AD_Client_ID=1000000) AND C_ElementValue.C_ElementValue_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 118, + "uuid": "a520ce90-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Element", + "description": "Maintain Account Elements", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55190, + "uuid": "a43c9086-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 60, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55191, + "uuid": "a43cb14c-fb40-11e8-a479-7a0060f0aa01", + "name": "Posting Type", + "description": "The type of posted amount for the transaction", + "help": "The Posting Type indicates the type of amount (Actual, Budget, Reservation, Commitment, Statistical) the transaction.", + "sequence": 120, + "column_name": "PostingType", + "element_name": "PostingType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 17, + "default_value": "A", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=125 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=125 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55192, + "uuid": "a43c940a-fb40-11e8-a479-7a0060f0aa01", + "name": "Reporting Hierarchy", + "description": "Optional Reporting Hierarchy - If not selected the default hierarchy trees are used.", + "help": "Reporting Hierarchy allows you to select different Hierarchies/Trees for the report.\nAccounting Segments like Organization, Account, Product may have several hierarchies to accomodate different views on the business.", + "sequence": 130, + "column_name": "PA_Hierarchy_ID", + "element_name": "PA_Hierarchy_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "PA_Hierarchy", + "key_column_name": "PA_Hierarchy.PA_Hierarchy_ID", + "display_column_name": "", + "query": "SELECT PA_Hierarchy.PA_Hierarchy_ID,NULL,NVL(PA_Hierarchy.Name,'-1'),PA_Hierarchy.IsActive, PA_Hierarchy.UUID FROM PA_Hierarchy ORDER BY 3", + "direct_query": "SELECT PA_Hierarchy.PA_Hierarchy_ID,NULL,NVL(PA_Hierarchy.Name,'-1'),PA_Hierarchy.IsActive, PA_Hierarchy.UUID FROM PA_Hierarchy WHERE PA_Hierarchy.PA_Hierarchy_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 360, + "uuid": "a520cc88-fb40-11e8-a479-7a0060f0aa01", + "name": "Reporting Hierarchy", + "description": "Define Reporting Hierarchy", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + } + ], + "fields": [ + { + "id": 9653, + "uuid": "8d666e9a-fb40-11e8-a479-7a0060f0aa01", + "name": "Share", + "description": "Share of Customer's business as a percentage", + "help": "The Share indicates the percentage of this Business Partner's volume of the products supplied.", + "sequence": 0, + "column_name": "ShareOfCustomer", + "element_name": "ShareOfCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9635, + "uuid": "8d5ec0fa-fb40-11e8-a479-7a0060f0aa01", + "name": "Prospect", + "description": "Indicates this is a Prospect", + "help": "The Prospect checkbox indicates an entity that is an active prospect.", + "sequence": 0, + "column_name": "IsProspect", + "element_name": "IsProspect", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9633, + "uuid": "8d5f1adc-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Discount Schema", + "description": "Schema to calculate the purchase trade discount percentage", + "help": "", + "sequence": 0, + "column_name": "PO_DiscountSchema_ID", + "element_name": "PO_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9639, + "uuid": "8d6080b6-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Parent", + "description": "Business Partner Parent", + "help": "The parent (organization) of the Business Partner for reporting purposes.", + "sequence": 0, + "column_name": "BPartner_Parent_ID", + "element_name": "BPartner_Parent_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "@BPartner_Parent_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "Name", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' AND C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9657, + "uuid": "8d60b022-fb40-11e8-a479-7a0060f0aa01", + "name": "SO Tax exempt", + "description": "Business partner is exempt from tax on sales", + "help": "If a business partner is exempt from tax on sales, the exempt tax rate is used. For this, you need to set up a tax rate with a 0% rate and indicate that this is your tax exempt rate. This is required for tax reporting, so that you can track tax exempt transactions.", + "sequence": 0, + "column_name": "IsTaxExempt", + "element_name": "IsTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9647, + "uuid": "8d674da6-fb40-11e8-a479-7a0060f0aa01", + "name": "Rating", + "description": "Classification or Importance", + "help": "The Rating is used to differentiate the importance", + "sequence": 0, + "column_name": "Rating", + "element_name": "Rating", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9634, + "uuid": "8d631812-fb40-11e8-a479-7a0060f0aa01", + "name": "First Sale", + "description": "Date of First Sale", + "help": "The First Sale Date identifies the date of the first sale to this Business Partner", + "sequence": 0, + "column_name": "FirstSale", + "element_name": "FirstSale", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 9642, + "uuid": "8d62aa80-fb40-11e8-a479-7a0060f0aa01", + "name": "D-U-N-S", + "description": "Dun & Bradstreet Number", + "help": "Used for EDI - For details see www.dnb.com/dunsno/list.htm", + "sequence": 0, + "column_name": "DUNS", + "element_name": "DUNS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 11 + }, + { + "id": 9646, + "uuid": "8d62cc04-fb40-11e8-a479-7a0060f0aa01", + "name": "Acquisition Cost", + "description": "The cost of gaining the prospect as a customer", + "help": "The Acquisition Cost identifies the cost associated with making this prospect a customer.", + "sequence": 0, + "column_name": "AcqusitionCost", + "element_name": "AcqusitionCost", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 37, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9630, + "uuid": "8d633cde-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax ID", + "description": "Tax Identification", + "help": "The Tax ID field identifies the legal Identification number of this Entity.", + "sequence": 0, + "column_name": "TaxID", + "element_name": "TaxID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9632, + "uuid": "8d633f40-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Payment Term", + "description": "Payment rules for a purchase order", + "help": "The PO Payment Term indicates the payment term that will be used when this purchase order becomes an invoice.", + "sequence": 0, + "column_name": "PO_PaymentTerm_ID", + "element_name": "PO_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "Name", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9631, + "uuid": "8d634b34-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Business Partner Group", + "help": "The Business Partner Group provides a method of defining defaults to be used for individual Business Partners.", + "sequence": 0, + "column_name": "C_BP_Group_ID", + "element_name": "C_BP_Group_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Group", + "key_column_name": "C_BP_Group.C_BP_Group_ID", + "display_column_name": "", + "query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group ORDER BY 3", + "direct_query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group WHERE C_BP_Group.C_BP_Group_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 192, + "uuid": "a5216404-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Maintain Business Partner Groups", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9629, + "uuid": "8d647784-fb40-11e8-a479-7a0060f0aa01", + "name": "Name 2", + "description": "Additional Name", + "help": "", + "sequence": 0, + "column_name": "Name2", + "element_name": "Name2", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9661, + "uuid": "8d64ada8-fb40-11e8-a479-7a0060f0aa01", + "name": "Employees", + "description": "Number of employees", + "help": "Indicates the number of employees for this Business Partner. This field displays only for Prospects.", + "sequence": 0, + "column_name": "NumberEmployees", + "element_name": "NumberEmployees", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9641, + "uuid": "8d653138-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "sequence": 0, + "column_name": "AD_OrgBP_ID", + "element_name": "AD_OrgBP_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 28, + "default_value": "", + "read_only_logic": "@AD_OrgBP_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9654, + "uuid": "8d6579a4-fb40-11e8-a479-7a0060f0aa01", + "name": "Potential Life Time Value", + "description": "Total Revenue expected", + "help": "The Potential Life Time Value is the anticipated revenue in primary accounting currency to be generated by the Business Partner.", + "sequence": 0, + "column_name": "PotentialLifeTimeValue", + "element_name": "PotentialLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9658, + "uuid": "8d6595ba-fb40-11e8-a479-7a0060f0aa01", + "name": "Employee", + "description": "Indicates if this Business Partner is an employee", + "help": "The Employee checkbox indicates if this Business Partner is an Employee. If it is selected, additional fields will display which further identify this employee.", + "sequence": 0, + "column_name": "IsEmployee", + "element_name": "IsEmployee", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9659, + "uuid": "8d659754-fb40-11e8-a479-7a0060f0aa01", + "name": "NAICS/SIC", + "description": "Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html", + "help": "The NAICS/SIC identifies either of these codes that may be applicable to this Business Partner.", + "sequence": 0, + "column_name": "NAICS", + "element_name": "NAICS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 6 + }, + { + "id": 9660, + "uuid": "8d65a820-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 0, + "column_name": "Description", + "element_name": "Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9651, + "uuid": "8d65a992-fb40-11e8-a479-7a0060f0aa01", + "name": "Vendor", + "description": "Indicates if this Business Partner is a Vendor", + "help": "The Vendor checkbox indicates if this Business Partner is a Vendor. If it is selected, additional fields will display which further identify this vendor.", + "sequence": 0, + "column_name": "IsVendor", + "element_name": "IsVendor", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9644, + "uuid": "8d65c0f8-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Pricelist", + "description": "Price List used by this Business Partner", + "help": "Identifies the price list used by a Vendor for products purchased by this organization.", + "sequence": 0, + "column_name": "PO_PriceList_ID", + "element_name": "PO_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "Name", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9655, + "uuid": "8d666f58-fb40-11e8-a479-7a0060f0aa01", + "name": "Summary Level", + "description": "This is a summary entity", + "help": "A summary entity represents a branch in a tree rather than an end-node. Summary entities are used for reporting and do not have own values.", + "sequence": 0, + "column_name": "IsSummary", + "element_name": "IsSummary", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9636, + "uuid": "8d66a73e-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "Purchase payment option", + "help": "The Payment Rule indicates the method of purchase payment.", + "sequence": 0, + "column_name": "PaymentRulePO", + "element_name": "PaymentRulePO", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 10593, + "uuid": "8d667b60-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Balance", + "description": "Total Open Balance Amount in primary Accounting Currency", + "help": "The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management.\nInvoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).", + "sequence": 0, + "column_name": "TotalOpenBalance", + "element_name": "TotalOpenBalance", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9638, + "uuid": "8d66a7f2-fb40-11e8-a479-7a0060f0aa01", + "name": "Send EMail", + "description": "Enable sending Document EMail", + "help": "Send emails with document attached (e.g. Invoice, Delivery Note, etc.)", + "sequence": 0, + "column_name": "SendEMail", + "element_name": "SendEMail", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9650, + "uuid": "8d66be22-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Language for this entity", + "help": "The Language identifies the language to use for display and formatting", + "sequence": 0, + "column_name": "AD_Language", + "element_name": "AD_Language", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Language", + "key_column_name": "AD_Language.AD_Language", + "display_column_name": "Name", + "query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') ORDER BY 3", + "direct_query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') AND AD_Language.AD_Language=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 106, + "uuid": "a5213222-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Maintain Languages", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9648, + "uuid": "8d66d678-fb40-11e8-a479-7a0060f0aa01", + "name": "One time transaction", + "description": "", + "help": "", + "sequence": 0, + "column_name": "IsOneTime", + "element_name": "IsOneTime", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9645, + "uuid": "8d674ce8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference No", + "description": "Your customer or vendor number at the Business Partner's site", + "help": "The reference number can be printed on orders and invoices to allow your business partner to faster identify your records.", + "sequence": 0, + "column_name": "ReferenceNo", + "element_name": "ReferenceNo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 9649, + "uuid": "8d6ea3b2-fb40-11e8-a479-7a0060f0aa01", + "name": "URL", + "description": "Full URL address - e.g. http://www.adempiere.org", + "help": "The URL defines an fully qualified web address like http://www.adempiere.org", + "sequence": 0, + "column_name": "URL", + "element_name": "URL", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 40, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 120 + }, + { + "id": 9640, + "uuid": "8d7427e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Status", + "description": "Business Partner Credit Status", + "help": "Credit Management is inactive if Credit Status is No Credit Check, Credit Stop or if the Credit Limit is 0.\nIf active, the status is set automatically set to Credit Hold, if the Total Open Balance (including Vendor activities) is higher then the Credit Limit. It is set to Credit Watch, if above 90% of the Credit Limit and Credit OK otherwise.", + "sequence": 0, + "column_name": "SOCreditStatus", + "element_name": "SOCreditStatus", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9652, + "uuid": "8d78fb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Actual Life Time Value", + "description": "Actual Life Time Revenue", + "help": "The Actual Life Time Value is the recorded revenue in primary accounting currency generated by the Business Partner.", + "sequence": 0, + "column_name": "ActualLifeTimeValue", + "element_name": "ActualLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9656, + "uuid": "8d636f6a-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Indicates if the business partner is a sales representative or company agent", + "help": "The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.", + "sequence": 0, + "column_name": "IsSalesRep", + "element_name": "IsSalesRep", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 3525, + "uuid": "8d383e4e-fb40-11e8-a479-7a0060f0aa01", + "name": "Freight Cost Rule", + "description": "Method for charging Freight", + "help": "The Freight Cost Rule indicates the method used when charging for freight.", + "sequence": 0, + "column_name": "FreightCostRule", + "element_name": "FreightCostRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2406, + "uuid": "8d56ce72-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 0, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9643, + "uuid": "8d578ab0-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Volume in 1.000", + "description": "Total Volume of Sales in Thousands of Currency", + "help": "The Sales Volume indicates the total volume of sales for a Business Partner.", + "sequence": 0, + "column_name": "SalesVolume", + "element_name": "SalesVolume", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9637, + "uuid": "8d5e9ce2-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Greeting to print on correspondence", + "help": "The Greeting identifies the greeting to print on correspondence.", + "sequence": 0, + "column_name": "C_Greeting_ID", + "element_name": "C_Greeting_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Greeting", + "key_column_name": "C_Greeting.C_Greeting_ID", + "display_column_name": "", + "query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting ORDER BY 3", + "direct_query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting WHERE C_Greeting.C_Greeting_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 178, + "uuid": "a520eb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Maintain Greetings", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2400, + "uuid": "8d578dbc-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2402, + "uuid": "8d39d3f8-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2433, + "uuid": "8d574aaa-fb40-11e8-a479-7a0060f0aa01", + "name": "Search Key", + "description": "Search key for the record in the format required - must be unique", + "help": "A search key allows you a fast method of finding a particular record.\nIf you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the \"Maintain Sequence\" window with the name \"DocumentNo_\", where TableName is the actual name of the table (e.g. C_Order).", + "sequence": 0, + "column_name": "Value", + "element_name": "Value", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2435, + "uuid": "8cebd270-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Copies", + "description": "Number of copies to be printed", + "help": "The Document Copies indicates the number of copies of each document that will be generated.", + "sequence": 0, + "column_name": "DocumentCopies", + "element_name": "DocumentCopies", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2429, + "uuid": "8ceb3978-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Schedule for generating Invoices", + "help": "The Invoice Schedule identifies the frequency used when generating invoices.", + "sequence": 0, + "column_name": "C_InvoiceSchedule_ID", + "element_name": "C_InvoiceSchedule_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_InvoiceSchedule", + "key_column_name": "C_InvoiceSchedule.C_InvoiceSchedule_ID", + "display_column_name": "", + "query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule ORDER BY 3", + "direct_query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule WHERE C_InvoiceSchedule.C_InvoiceSchedule_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 147, + "uuid": "a5216c1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Maintain Invoicing Schedule", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 3526, + "uuid": "8cf3b72e-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Via", + "description": "How the order will be delivered", + "help": "The Delivery Via indicates how the products should be delivered. For example, will the order be picked up or shipped.", + "sequence": 0, + "column_name": "DeliveryViaRule", + "element_name": "DeliveryViaRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 5282, + "uuid": "8cfb7f9a-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Schema to calculate the trade discount percentage", + "help": "After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.", + "sequence": 0, + "column_name": "M_DiscountSchema_ID", + "element_name": "M_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10471, + "uuid": "8d0ad210-fb40-11e8-a479-7a0060f0aa01", + "name": "Flat Discount %", + "description": "Flat discount percentage ", + "help": "", + "sequence": 0, + "column_name": "FlatDiscount", + "element_name": "FlatDiscount", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 22, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 3229, + "uuid": "8cf3f9fa-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Reference", + "description": "Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner", + "help": "The business partner order reference is the order reference for this specific transaction; Often Purchase Order numbers are given to print on Invoices for easier reference. A standard number can be defined in the Business Partner (Customer) window.", + "sequence": 0, + "column_name": "POReference", + "element_name": "POReference", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 7362, + "uuid": "8d0b517c-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Print Format", + "description": "Print Format for printing Invoices", + "help": "You need to define a Print Format to print the document.", + "sequence": 0, + "column_name": "Invoice_PrintFormat_ID", + "element_name": "Invoice_PrintFormat_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_PrintFormat", + "key_column_name": "AD_PrintFormat.AD_PrintFormat_ID", + "display_column_name": "Name", + "query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 ORDER BY 3", + "direct_query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 AND AD_PrintFormat.AD_PrintFormat_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 240, + "uuid": "a5216e18-fb40-11e8-a479-7a0060f0aa01", + "name": "Print Format", + "description": "Maintain Print Format", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 8373, + "uuid": "8ceb2726-fb40-11e8-a479-7a0060f0aa01", + "name": "Min Shelf Life %", + "description": "Minimum Shelf Life in percent based on Product Instance Guarantee Date", + "help": "Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select \"Show All\"", + "sequence": 0, + "column_name": "ShelfLifeMinPct", + "element_name": "ShelfLifeMinPct", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 53256, + "uuid": "8cea026a-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning Grace Date", + "description": "", + "help": "", + "sequence": 0, + "column_name": "DunningGrace", + "element_name": "DunningGrace", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@=Y", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 76157, + "uuid": "8d99b9b2-fb40-11e8-a479-7a0060f0aa01", + "name": "AR Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "sequence": 0, + "column_name": "AREnquiry", + "element_name": "AREnquiry", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53753, + "uuid": "a42cffea-fb40-11e8-a479-7a0060f0aa01", + "name": "AR Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "is_report": true, + "access_level": 1, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76158, + "uuid": "8d99bc00-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "sequence": 0, + "column_name": "UnappliedPayments", + "element_name": "UnappliedPayments", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53754, + "uuid": "a42cfbb2-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76159, + "uuid": "8db10eb4-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "sequence": 0, + "column_name": "CustomerOpenInvoices", + "element_name": "CustomerOpenInvoices", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53755, + "uuid": "a42cfc20-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76160, + "uuid": "8db0b6da-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "sequence": 0, + "column_name": "NotPosted", + "element_name": "NotPosted", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53756, + "uuid": "a42cff4a-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2422, + "uuid": "8cf22f12-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 10, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 7621, + "uuid": "8d5fe26e-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 20, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2568, + "uuid": "8ce8d3e0-fb40-11e8-a479-7a0060f0aa01", + "name": "Customer", + "description": "Indicates if this Business Partner is a Customer", + "help": "The Customer checkbox indicates if this Business Partner is a customer. If it is select additional fields will display which further define this customer.", + "sequence": 30, + "column_name": "IsCustomer", + "element_name": "IsCustomer", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 3522, + "uuid": "8ceb3b76-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Rule", + "description": "Frequency and method of invoicing ", + "help": "The Invoice Rule defines how a Business Partner is invoiced and the frequency of invoicing.", + "sequence": 40, + "column_name": "InvoiceRule", + "element_name": "InvoiceRule", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 3523, + "uuid": "8cecd648-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Rule", + "description": "Defines the timing of Delivery", + "help": "The Delivery Rule indicates when an order should be delivered. For example should the order be delivered when the entire order is complete, when a line is complete or as the products become available.", + "sequence": 50, + "column_name": "DeliveryRule", + "element_name": "DeliveryRule", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2420, + "uuid": "8cee6af8-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 60, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 3114, + "uuid": "8cfca424-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "How you pay the invoice", + "help": "The Payment Rule indicates the method of invoice payment.", + "sequence": 70, + "column_name": "PaymentRule", + "element_name": "PaymentRule", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2408, + "uuid": "8d036dea-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 80, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 3275, + "uuid": "8cf0730c-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Description", + "description": "Description to be used on orders", + "help": "The Order Description identifies the standard description to use on orders for this Customer.", + "sequence": 90, + "column_name": "SO_Description", + "element_name": "SO_Description", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 2427, + "uuid": "8cee359c-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Limit", + "description": "Total outstanding invoice amounts allowed", + "help": "The Credit Limit indicates the total amount allowed \"on account\" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 100, + "column_name": "SO_CreditLimit", + "element_name": "SO_CreditLimit", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2428, + "uuid": "8d55cc34-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Used", + "description": "Current open balance", + "help": "The Credit Used indicates the total amount of open or unpaid invoices in primary accounting currency for the Business Partner. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 110, + "column_name": "SO_CreditUsed", + "element_name": "SO_CreditUsed", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 3524, + "uuid": "8ced1176-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 120, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 3276, + "uuid": "8cfb289c-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Printed", + "description": "Print Discount on Invoice and Order", + "help": "The Discount Printed Checkbox indicates if the discount will be printed on the document.", + "sequence": 130, + "column_name": "IsDiscountPrinted", + "element_name": "IsDiscountPrinted", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2434, + "uuid": "8cef75ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Dunning Rules for overdue invoices", + "help": "The Dunning indicates the rules and method of dunning for past due payments.", + "sequence": 140, + "column_name": "C_Dunning_ID", + "element_name": "C_Dunning_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Dunning", + "key_column_name": "C_Dunning.C_Dunning_ID", + "display_column_name": "", + "query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning ORDER BY 3", + "direct_query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning WHERE C_Dunning.C_Dunning_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 159, + "uuid": "a5211d3c-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Maintain Dunning Levels", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 99669, + "uuid": "06d18869-f3af-4021-bddb-bb63a9a1f3ad", + "name": "Taxpayer", + "description": "", + "help": "", + "sequence": 330, + "column_name": "IsTaxpayer", + "element_name": "IsTaxpayer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsCustomer@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50080, + "uuid": "a0245dec-128f-11e9-9327-67a166a344ff", + "name": "Fiscal Information (Venezuela)", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 1 + } + ] + }, + { + "id": 224, + "uuid": "a49fb4e0-fb40-11e8-a479-7a0060f0aa01", + "name": "Vendor", + "description": "Define Vendor Parameters", + "help": "The Vendor Tab defines a Business Partner that is a Vendor for this Organization. If the Vendor check box is selected the necessary fields will display.", + "table_name": "C_BPartner", + "sequence": 30, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": false, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "C_BPartner_ID", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", PaymentRulePO_AD_Ref_List.Name AS \"DisplayColumn_PaymentRulePO\", PO_PaymentTerm_ID_C_PaymentTerm.Name AS \"DisplayColumn_PO_PaymentTerm_ID\", PO_PriceList_ID_M_PriceList.Name AS \"DisplayColumn_PO_PriceList_ID\", PO_DiscountSchema_ID_M_DiscountSchema.Name AS \"DisplayColumn_PO_DiscountSchema_ID\", WithholdingTaxRate_ID_LVE_List.Name AS \"DisplayColumn_WithholdingTaxRate_ID\", BusinessActivity_ID_LVE_List.Name AS \"DisplayColumn_BusinessActivity_ID\", WithholdingMunicipalRate_ID_LVE_ListVersion.Amount AS \"DisplayColumn_WithholdingMunicipalRate_ID\", WHThirdParty_ID_C_BPartner.Name AS \"DisplayColumn_WHThirdParty_ID\" FROM C_BPartner AS C_BPartner LEFT JOIN AD_Ref_List AS PaymentRulePO_AD_Ref_List ON(PaymentRulePO_AD_Ref_List.Value = C_BPartner.PaymentRulePO AND PaymentRulePO_AD_Ref_List.AD_Reference_ID = 195) LEFT JOIN C_PaymentTerm AS PO_PaymentTerm_ID_C_PaymentTerm ON(PO_PaymentTerm_ID_C_PaymentTerm.C_PaymentTerm_ID = C_BPartner.PO_PaymentTerm_ID) LEFT JOIN M_PriceList AS PO_PriceList_ID_M_PriceList ON(PO_PriceList_ID_M_PriceList.M_PriceList_ID = C_BPartner.PO_PriceList_ID) LEFT JOIN M_DiscountSchema AS PO_DiscountSchema_ID_M_DiscountSchema ON(PO_DiscountSchema_ID_M_DiscountSchema.M_DiscountSchema_ID = C_BPartner.PO_DiscountSchema_ID) LEFT JOIN LVE_List AS WithholdingTaxRate_ID_LVE_List ON(WithholdingTaxRate_ID_LVE_List.LVE_List_ID = C_BPartner.WithholdingTaxRate_ID) LEFT JOIN LVE_List AS BusinessActivity_ID_LVE_List ON(BusinessActivity_ID_LVE_List.LVE_List_ID = C_BPartner.BusinessActivity_ID) LEFT JOIN LVE_ListVersion AS WithholdingMunicipalRate_ID_LVE_ListVersion ON(WithholdingMunicipalRate_ID_LVE_ListVersion.LVE_ListVersion_ID = C_BPartner.WithholdingMunicipalRate_ID) LEFT JOIN C_BPartner AS WHThirdParty_ID_C_BPartner ON(WHThirdParty_ID_C_BPartner.C_BPartner_ID = C_BPartner.WHThirdParty_ID)", + "where_clause": "C_BPartner.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [ + { + "id": 53756, + "uuid": "a42cff4a-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55201, + "uuid": "a43c8762-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 10, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "@SQL=SELECT TRUNC(ADD_MONTHS(SYSDATE,-3),'MM') AS start_date FROM dual", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "@#Date@", + "field_length": 0 + }, + { + "id": 55202, + "uuid": "a43d041c-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 20, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + }, + { + "id": 53754, + "uuid": "a42cfbb2-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55193, + "uuid": "a43c94d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank Account", + "description": "Account at the Bank", + "help": "The Bank Account identifies an account at this Bank.", + "sequence": 10, + "column_name": "C_BankAccount_ID", + "element_name": "C_BankAccount_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BankAccount", + "key_column_name": "C_BankAccount.C_BankAccount_ID", + "display_column_name": "", + "query": "SELECT C_BankAccount.C_BankAccount_ID,NULL,NVL((SELECT NVL(C_Bank.Name,'')||' - '||NVL(C_Bank.RoutingNo,''), C_BankAccount.UUID FROM C_Bank WHERE C_BankAccount.C_Bank_ID=C_Bank.C_Bank_ID),'-1') ||'_'|| NVL(C_BankAccount.AccountNo,'-1'),C_BankAccount.IsActive FROM C_BankAccount ORDER BY 3", + "direct_query": "SELECT C_BankAccount.C_BankAccount_ID,NULL,NVL((SELECT NVL(C_Bank.Name,'')||' - '||NVL(C_Bank.RoutingNo,''), C_BankAccount.UUID FROM C_Bank WHERE C_BankAccount.C_Bank_ID=C_Bank.C_Bank_ID),'-1') ||'_'|| NVL(C_BankAccount.AccountNo,'-1'),C_BankAccount.IsActive FROM C_BankAccount WHERE C_BankAccount.C_BankAccount_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 158, + "uuid": "a5214fc8-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank", + "description": "Maintain Bank", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55194, + "uuid": "a43c9572-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 20, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 30, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55195, + "uuid": "a43c9612-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Document type or rules", + "help": "The Document Type determines document sequence and processing rules", + "sequence": 30, + "column_name": "C_DocType_ID", + "element_name": "C_DocType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_DocType", + "key_column_name": "C_DocType.C_DocType_ID", + "display_column_name": "", + "query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.DocBaseType IN ('ARR', 'APP') ORDER BY 3", + "direct_query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.C_DocType_ID=?", + "validation_code": "C_DocType.DocBaseType IN ('ARR', 'APP')", + "zoom_windows": [ + { + "id": 135, + "uuid": "a520e196-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Maintain Document Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55196, + "uuid": "a43c96b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Allocated", + "description": "Indicates if the payment has been allocated", + "help": "The Allocated checkbox indicates if a payment has been allocated or associated with an invoice or invoices.", + "sequence": 40, + "column_name": "IsAllocated", + "element_name": "IsAllocated", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 17, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 57161, + "uuid": "7b0bca4e-de50-11e9-a51b-0242ac110002", + "name": "Currency", + "description": "The Currency for this record", + "help": "Indicates the Currency to be used when processing or reporting on this record", + "sequence": 50, + "column_name": "C_Currency_ID", + "element_name": "C_Currency_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Currency", + "key_column_name": "C_Currency.C_Currency_ID", + "display_column_name": "", + "query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency ORDER BY 3", + "direct_query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.C_Currency_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 115, + "uuid": "a520e6be-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "Maintain Currencies", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57162, + "uuid": "7ba3aa76-de50-11e9-a51b-0242ac110002", + "name": "Project", + "description": "Financial Project", + "help": "A Project allows you to track and control internal or external activities.", + "sequence": 60, + "column_name": "C_Project_ID", + "element_name": "C_Project_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Project", + "key_column_name": "C_Project.C_Project_ID", + "display_column_name": "", + "query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project ORDER BY 3", + "direct_query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project WHERE C_Project.C_Project_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + }, + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57163, + "uuid": "7c78abd6-de50-11e9-a51b-0242ac110002", + "name": "Document Status", + "description": "The current status of the document", + "help": "The Document Status indicates the status of a document at this time. If you want to change the document status, use the Document Action field", + "sequence": 70, + "column_name": "DocStatus", + "element_name": "DocStatus", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "CO", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=131 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=131 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 2 + }, + { + "id": 57352, + "uuid": "8f914f2f-21fb-4cdf-9422-299f0a2826c9", + "name": "Charge", + "description": "Additional document charges", + "help": "The Charge indicates a type of Charge (Handling, Shipping, Restocking)", + "sequence": 80, + "column_name": "C_Charge_ID", + "element_name": "C_Charge_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Charge", + "key_column_name": "C_Charge.C_Charge_ID", + "display_column_name": "", + "query": "SELECT C_Charge.C_Charge_ID,NULL,NVL(C_Charge.Name,'-1'),C_Charge.IsActive, C_Charge.UUID FROM C_Charge ORDER BY 3", + "direct_query": "SELECT C_Charge.C_Charge_ID,NULL,NVL(C_Charge.Name,'-1'),C_Charge.IsActive, C_Charge.UUID FROM C_Charge WHERE C_Charge.C_Charge_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 161, + "uuid": "a5211562-fb40-11e8-a479-7a0060f0aa01", + "name": "Charge", + "description": "Maintain Charges", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57353, + "uuid": "54311e61-d034-43c3-90dd-b195280341bc", + "name": "Activity", + "description": "Business Activity", + "help": "Activities indicate tasks that are performed and used to utilize Activity based Costing", + "sequence": 90, + "column_name": "C_Activity_ID", + "element_name": "C_Activity_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Activity", + "key_column_name": "C_Activity.C_Activity_ID", + "display_column_name": "", + "query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity ORDER BY 3", + "direct_query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity WHERE C_Activity.C_Activity_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 134, + "uuid": "a520e07e-fb40-11e8-a479-7a0060f0aa01", + "name": "Activity (ABC)", + "description": "Maintain Activities for Activity Based Costing", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57354, + "uuid": "d0c42ddd-815a-41a6-a18c-5a331969cddc", + "name": "Invoice", + "description": "Invoice Identifier", + "help": "The Invoice Document.", + "sequence": 100, + "column_name": "C_Invoice_ID", + "element_name": "C_Invoice_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Invoice", + "key_column_name": "C_Invoice.C_Invoice_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice ORDER BY C_Invoice.DocumentNo", + "direct_query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice WHERE C_Invoice.C_Invoice_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 167, + "uuid": "a5220bac-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Customer)", + "description": "Customer Invoice Entry", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 183, + "uuid": "a520e312-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Vendor)", + "description": "Vendor Invoice Entry", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57355, + "uuid": "1ca2b4da-09ef-411d-a0ab-f8730fc48f0d", + "name": "Payment Batch", + "description": "Payment batch for EFT", + "help": "Electronic Fund Transfer Payment Batch.", + "sequence": 110, + "column_name": "C_PaymentBatch_ID", + "element_name": "C_PaymentBatch_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentBatch", + "key_column_name": "C_PaymentBatch.C_PaymentBatch_ID", + "display_column_name": "", + "query": "SELECT C_PaymentBatch.C_PaymentBatch_ID,NULL,NVL(C_PaymentBatch.DocumentNo,'-1'),C_PaymentBatch.IsActive, C_PaymentBatch.UUID FROM C_PaymentBatch ORDER BY 3", + "direct_query": "SELECT C_PaymentBatch.C_PaymentBatch_ID,NULL,NVL(C_PaymentBatch.DocumentNo,'-1'),C_PaymentBatch.IsActive, C_PaymentBatch.UUID FROM C_PaymentBatch WHERE C_PaymentBatch.C_PaymentBatch_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 303, + "uuid": "a520fd52-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Batch", + "description": "Process Payment Patches for EFT", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57356, + "uuid": "5a7b0344-9e79-43f8-8c47-dc5471f6ce57", + "name": "Prepayment", + "description": "The Payment/Receipt is a Prepayment", + "help": "Payments not allocated to an invoice with a charge are posted to Unallocated Payments. When setting this flag, the payment is posted to the Customer or Vendor Prepayment account.", + "sequence": 120, + "column_name": "IsPrepayment", + "element_name": "IsPrepayment", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57357, + "uuid": "d1d00afb-f6a7-4e59-b487-b73c8be66ae6", + "name": "Referenced Payment", + "description": "", + "help": "", + "sequence": 130, + "column_name": "Ref_Payment_ID", + "element_name": "Ref_Payment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Payment", + "key_column_name": "C_Payment.C_Payment_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment ORDER BY 3", + "direct_query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment WHERE C_Payment.C_Payment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 195, + "uuid": "a5211e40-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment", + "description": "Process Payments and Receipts", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57358, + "uuid": "ed4f16e2-de1e-4806-99bd-afde196685f6", + "name": "Payment Related", + "description": "", + "help": "", + "sequence": 140, + "column_name": "RelatedPayment_ID", + "element_name": "RelatedPayment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Payment", + "key_column_name": "C_Payment.C_Payment_ID", + "display_column_name": "DocumentNo", + "query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment ORDER BY 3", + "direct_query": "SELECT C_Payment.C_Payment_ID,NULL,NVL(C_Payment.DocumentNo,'-1'),C_Payment.IsActive, C_Payment.UUID FROM C_Payment WHERE C_Payment.C_Payment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 195, + "uuid": "a5211e40-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment", + "description": "Process Payments and Receipts", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57359, + "uuid": "5aa6936e-922e-4ee8-99bb-dac8a6392e1c", + "name": "Unidentified Payment", + "description": "This flag determine ig a payment is unidentify", + "help": "", + "sequence": 150, + "column_name": "IsUnidentifiedPayment", + "element_name": "IsUnidentifiedPayment", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=319 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57360, + "uuid": "1befff40-93dd-4a5c-9bb8-215e76019c4b", + "name": "Sales Group", + "description": "Sales Group", + "help": "", + "sequence": 160, + "column_name": "C_BP_SalesGroup_ID", + "element_name": "C_BP_SalesGroup_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_SalesGroup", + "key_column_name": "C_BP_SalesGroup.C_BP_SalesGroup_ID", + "display_column_name": "", + "query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup ORDER BY 3", + "direct_query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup WHERE C_BP_SalesGroup.C_BP_SalesGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53691, + "uuid": "340ab277-5c90-4897-ab69-271c793ae458", + "name": "Business Partner Sales Group", + "description": "Business Partner Sales Group", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57361, + "uuid": "8e30b845-7b9b-4ad1-af0b-b3f12d7b5078", + "name": "Account Type", + "description": "Account Type classification for Business Partner", + "help": "", + "sequence": 170, + "column_name": "C_BP_AccountType_ID", + "element_name": "C_BP_AccountType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_AccountType", + "key_column_name": "C_BP_AccountType.C_BP_AccountType_ID", + "display_column_name": "", + "query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType ORDER BY 3", + "direct_query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType WHERE C_BP_AccountType.C_BP_AccountType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53692, + "uuid": "1d7993d0-c94b-4545-a497-2ad29c3b06f4", + "name": "Business Partner Account Type", + "description": "Business Partner Account Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57362, + "uuid": "85a31fde-0526-408b-b465-768f27b10ff5", + "name": "Segment", + "description": "Business Partner Segment", + "help": "", + "sequence": 180, + "column_name": "C_BP_Segment_ID", + "element_name": "C_BP_Segment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Segment", + "key_column_name": "C_BP_Segment.C_BP_Segment_ID", + "display_column_name": "", + "query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment ORDER BY 3", + "direct_query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment WHERE C_BP_Segment.C_BP_Segment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53693, + "uuid": "bc1f3ba0-0190-46aa-b066-82049f1f2803", + "name": "Business Partner Segment", + "description": "Business Partner Segment", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57363, + "uuid": "b33033a2-0da4-45c0-89b9-fcf2957e5af8", + "name": "Industry Type", + "description": "Business Partner Industry Type or classification", + "help": "Use this field for set a industry type or classification for business partner", + "sequence": 190, + "column_name": "C_BP_IndustryType_ID", + "element_name": "C_BP_IndustryType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_IndustryType", + "key_column_name": "C_BP_IndustryType.C_BP_IndustryType_ID", + "display_column_name": "", + "query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType ORDER BY 3", + "direct_query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType WHERE C_BP_IndustryType.C_BP_IndustryType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53694, + "uuid": "a86ce537-86fd-4f2b-aa1c-90f01a8dcbd7", + "name": "Business Partner Industry Type", + "description": "Business Partner Industry Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57364, + "uuid": "ec30b31a-9801-4d26-8391-7c81837c0a5c", + "name": "Tender type", + "description": "Method of Payment", + "help": "The Tender Type indicates the method of payment (ACH or Direct Deposit, Credit Card, Check, Direct Debit)", + "sequence": 200, + "column_name": "TenderType", + "element_name": "TenderType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=214 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=214 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 57854, + "uuid": "253bd774-1234-4e89-b0cc-4c18aa0d1d5f", + "name": "Collecting Agent", + "description": "In market terms such an economic operator would often be referred to as a \"collecting agent\"", + "help": "", + "sequence": 210, + "column_name": "CollectingAgent_ID", + "element_name": "CollectingAgent_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 53752, + "uuid": "a42cfb4e-fb40-11e8-a479-7a0060f0aa01", + "name": "AP Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "is_report": true, + "access_level": 1, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55172, + "uuid": "a43c7aba-fb40-11e8-a479-7a0060f0aa01", + "name": "Accounting Schema", + "description": "Rules for accounting", + "help": "An Accounting Schema defines the rules used in accounting such as costing method, currency and calendar", + "sequence": 10, + "column_name": "C_AcctSchema_ID", + "element_name": "C_AcctSchema_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_AcctSchema", + "key_column_name": "C_AcctSchema.C_AcctSchema_ID", + "display_column_name": "", + "query": "SELECT C_AcctSchema.C_AcctSchema_ID,NULL,NVL(C_AcctSchema.Name,'-1'),C_AcctSchema.IsActive, C_AcctSchema.UUID FROM C_AcctSchema ORDER BY 3", + "direct_query": "SELECT C_AcctSchema.C_AcctSchema_ID,NULL,NVL(C_AcctSchema.Name,'-1'),C_AcctSchema.IsActive, C_AcctSchema.UUID FROM C_AcctSchema WHERE C_AcctSchema.C_AcctSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 125, + "uuid": "a52142ee-fb40-11e8-a479-7a0060f0aa01", + "name": "Accounting Schema", + "description": "Maintain Accounting Schema - For changes to become effective you must re-login", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55174, + "uuid": "a43c7c04-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 30, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "@SQL=SELECT TRUNC(ADD_MONTHS(SYSDATE,-3),'MM') AS start_date FROM dual", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "@#Date@", + "field_length": 0 + }, + { + "id": 55175, + "uuid": "a43c7b64-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 40, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Client_ID=@AD_Client_ID@ AND AD_Org.AD_Org_ID<>0 ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Client_ID=@AD_Client_ID@ AND AD_Org.AD_Org_ID<>0", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55176, + "uuid": "a43c84e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Account", + "description": "Account used", + "help": "The (natural) account used", + "sequence": 50, + "column_name": "Account_ID", + "element_name": "Account_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 18, + "default_value": "@SQL=SELECT vc.Account_ID AS DefaultValue FROM C_BP_Vendor_Acct va INNER JOIN C_ValidCombination vc on (va.V_Liability_Acct=C_ValidCombination_ID) WHERE va.C_BPartner_ID=@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_ElementValue", + "key_column_name": "C_ElementValue.C_ElementValue_ID", + "display_column_name": "Name", + "query": "SELECT C_ElementValue.C_ElementValue_ID,NULL,NVL(C_ElementValue.Value,'-1') || '-' || NVL(C_ElementValue.Name,'-1'),C_ElementValue.IsActive, C_ElementValue.UUID FROM C_ElementValue WHERE C_ElementValue.IsActive='Y' \nAND C_ElementValue.C_Element_ID IN (SELECT C_Element_ID FROM C_AcctSchema_Element ase WHERE ase.ElementType='AC' AND ase.AD_Client_ID=1000000) ORDER BY C_ElementValue.Value", + "direct_query": "SELECT C_ElementValue.C_ElementValue_ID,NULL,NVL(C_ElementValue.Value,'-1') || '-' || NVL(C_ElementValue.Name,'-1'),C_ElementValue.IsActive, C_ElementValue.UUID FROM C_ElementValue WHERE C_ElementValue.IsActive='Y' \nAND C_ElementValue.C_Element_ID IN (SELECT C_Element_ID FROM C_AcctSchema_Element ase WHERE ase.ElementType='AC' AND ase.AD_Client_ID=1000000) AND C_ElementValue.C_ElementValue_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 118, + "uuid": "a520ce90-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Element", + "description": "Maintain Account Elements", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55178, + "uuid": "a43c7ca4-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 60, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 19, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55184, + "uuid": "a43c858c-fb40-11e8-a479-7a0060f0aa01", + "name": "Posting Type", + "description": "The type of posted amount for the transaction", + "help": "The Posting Type indicates the type of amount (Actual, Budget, Reservation, Commitment, Statistical) the transaction.", + "sequence": 120, + "column_name": "PostingType", + "element_name": "PostingType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 17, + "default_value": "A", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=125 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=125 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55185, + "uuid": "a43c7e2a-fb40-11e8-a479-7a0060f0aa01", + "name": "Reporting Hierarchy", + "description": "Optional Reporting Hierarchy - If not selected the default hierarchy trees are used.", + "help": "Reporting Hierarchy allows you to select different Hierarchies/Trees for the report.\nAccounting Segments like Organization, Account, Product may have several hierarchies to accomodate different views on the business.", + "sequence": 130, + "column_name": "PA_Hierarchy_ID", + "element_name": "PA_Hierarchy_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "-1", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "PA_Hierarchy", + "key_column_name": "PA_Hierarchy.PA_Hierarchy_ID", + "display_column_name": "", + "query": "SELECT PA_Hierarchy.PA_Hierarchy_ID,NULL,NVL(PA_Hierarchy.Name,'-1'),PA_Hierarchy.IsActive, PA_Hierarchy.UUID FROM PA_Hierarchy ORDER BY 3", + "direct_query": "SELECT PA_Hierarchy.PA_Hierarchy_ID,NULL,NVL(PA_Hierarchy.Name,'-1'),PA_Hierarchy.IsActive, PA_Hierarchy.UUID FROM PA_Hierarchy WHERE PA_Hierarchy.PA_Hierarchy_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 360, + "uuid": "a520cc88-fb40-11e8-a479-7a0060f0aa01", + "name": "Reporting Hierarchy", + "description": "Define Reporting Hierarchy", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + }, + { + "id": 53757, + "uuid": "a42cf996-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [ + { + "id": 55203, + "uuid": "a43c81a4-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 10, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 30, + "default_value": "@C_BPartner_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55204, + "uuid": "a43c82e4-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Transaction", + "description": "This is a Sales Transaction", + "help": "The Sales Transaction checkbox indicates if this item is a Sales Transaction.", + "sequence": 15, + "column_name": "IsSOTrx", + "element_name": "IsSOTrx", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "1=2", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 55205, + "uuid": "a43c8398-fb40-11e8-a479-7a0060f0aa01", + "name": "Days due", + "description": "Number of days due (negative: due in number of days)", + "help": "", + "sequence": 20, + "column_name": "DaysDue", + "element_name": "DaysDue", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 22, + "default_value": "-99999", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "99999", + "field_length": 0 + }, + { + "id": 55206, + "uuid": "a43c8442-fb40-11e8-a479-7a0060f0aa01", + "name": "Collection Status", + "description": "Invoice Collection Status", + "help": "Status of the invoice collection process", + "sequence": 30, + "column_name": "InvoiceCollectionType", + "element_name": "InvoiceCollectionType", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=394 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=394 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 57303, + "uuid": "b70a1081-dc65-4a5d-90b5-3cfc46137d4d", + "name": "Currency", + "description": "The Currency for this record", + "help": "Indicates the Currency to be used when processing or reporting on this record", + "sequence": 40, + "column_name": "C_Currency_ID", + "element_name": "C_Currency_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Currency", + "key_column_name": "C_Currency.C_Currency_ID", + "display_column_name": "", + "query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency ORDER BY 3", + "direct_query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.C_Currency_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 115, + "uuid": "a520e6be-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "Maintain Currencies", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57304, + "uuid": "7fb256d5-0020-40bb-a260-de4cf7fafbdc", + "name": "Document Type", + "description": "Document type or rules", + "help": "The Document Type determines document sequence and processing rules", + "sequence": 50, + "column_name": "C_DocType_ID", + "element_name": "C_DocType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_DocType", + "key_column_name": "C_DocType.C_DocType_ID", + "display_column_name": "", + "query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType ORDER BY 3", + "direct_query": "SELECT C_DocType.C_DocType_ID,NULL,NVL(C_DocType.Name,'-1'),C_DocType.IsActive, C_DocType.UUID FROM C_DocType WHERE C_DocType.C_DocType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 135, + "uuid": "a520e196-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Type", + "description": "Maintain Document Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57305, + "uuid": "e83feb98-7430-4496-87a9-079fd4c09b5a", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 60, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57306, + "uuid": "68559da8-4dd6-47a3-81ae-6a397cddd6b8", + "name": "Project", + "description": "Financial Project", + "help": "A Project allows you to track and control internal or external activities.", + "sequence": 70, + "column_name": "C_Project_ID", + "element_name": "C_Project_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Project", + "key_column_name": "C_Project.C_Project_ID", + "display_column_name": "", + "query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project ORDER BY 3", + "direct_query": "SELECT C_Project.C_Project_ID,NULL,NVL(C_Project.Value,'-1') ||'_'|| NVL(C_Project.Name,'-1') ||'_'|| NVL((SELECT NVL(CAST (C_ProjectStatus.SeqNo AS Text),'')||' - '||NVL(C_ProjectStatus.Value,'')||' - '||NVL(C_ProjectStatus.Name,''), C_Project.UUID FROM C_ProjectStatus WHERE C_Project.C_ProjectStatus_ID=C_ProjectStatus.C_ProjectStatus_ID),'-1') ||'_'|| NVL(CAST (C_Project.DateDeadline AS Text),'-1'),C_Project.IsActive FROM C_Project WHERE C_Project.C_Project_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + }, + { + "id": 53545, + "uuid": "a5220350-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "description": "Maintain Projects", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57307, + "uuid": "4054aac3-0b91-490d-ad78-ad72c3c2de32", + "name": "Account Date", + "description": "Accounting Date", + "help": "The Accounting Date indicates the date to be used on the General Ledger account entries generated from this document. It is also used for any currency conversion.", + "sequence": 80, + "column_name": "DateAcct", + "element_name": "DateAcct", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57308, + "uuid": "fc601a70-b009-4b67-95b7-890aa18c5221", + "name": "Date Invoiced", + "description": "Date printed on Invoice", + "help": "The Date Invoice indicates the date printed on the invoice.", + "sequence": 90, + "column_name": "DateInvoiced", + "element_name": "DateInvoiced", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 57309, + "uuid": "37fe2437-eb35-4f55-91f0-2445922698ae", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 100, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57310, + "uuid": "7bd9d787-8943-4a47-a773-fcae3d26ea10", + "name": "Campaign", + "description": "Marketing Campaign", + "help": "The Campaign defines a unique marketing program. Projects can be associated with a pre defined Marketing Campaign. You can then report based on a specific Campaign.", + "sequence": 110, + "column_name": "C_Campaign_ID", + "element_name": "C_Campaign_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Campaign", + "key_column_name": "C_Campaign.C_Campaign_ID", + "display_column_name": "", + "query": "SELECT C_Campaign.C_Campaign_ID,NULL,NVL(C_Campaign.Name,'-1'),C_Campaign.IsActive, C_Campaign.UUID FROM C_Campaign ORDER BY 3", + "direct_query": "SELECT C_Campaign.C_Campaign_ID,NULL,NVL(C_Campaign.Name,'-1'),C_Campaign.IsActive, C_Campaign.UUID FROM C_Campaign WHERE C_Campaign.C_Campaign_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 149, + "uuid": "a521d20e-fb40-11e8-a479-7a0060f0aa01", + "name": "Marketing Campaign", + "description": "Maintain Marketing Campaigns", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57311, + "uuid": "4bcc000a-cc4f-4734-a3cd-b6897d41d8c4", + "name": "Order", + "description": "Order", + "help": "The Order is a control document. The Order is complete when the quantity ordered is the same as the quantity shipped and invoiced. When you close an order, unshipped (backordered) quantities are cancelled.", + "sequence": 120, + "column_name": "C_Order_ID", + "element_name": "C_Order_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Order", + "key_column_name": "C_Order.C_Order_ID", + "display_column_name": "", + "query": "SELECT C_Order.C_Order_ID,NULL,NVL(C_Order.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Order.DateOrdered AS Text),'-1'),C_Order.IsActive, C_Order.UUID FROM C_Order ORDER BY 3", + "direct_query": "SELECT C_Order.C_Order_ID,NULL,NVL(C_Order.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Order.DateOrdered AS Text),'-1'),C_Order.IsActive, C_Order.UUID FROM C_Order WHERE C_Order.C_Order_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 143, + "uuid": "a52203d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Order", + "description": "Enter and change sales orders", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 181, + "uuid": "a5220b20-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Order", + "description": "Manage Purchase Orders", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57312, + "uuid": "002ab318-7023-4837-af6d-facc057aaedd", + "name": "Activity", + "description": "Business Activity", + "help": "Activities indicate tasks that are performed and used to utilize Activity based Costing", + "sequence": 130, + "column_name": "C_Activity_ID", + "element_name": "C_Activity_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Activity", + "key_column_name": "C_Activity.C_Activity_ID", + "display_column_name": "", + "query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity ORDER BY 3", + "direct_query": "SELECT C_Activity.C_Activity_ID,NULL,NVL(C_Activity.Name,'-1'),C_Activity.IsActive, C_Activity.UUID FROM C_Activity WHERE C_Activity.C_Activity_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 134, + "uuid": "a520e07e-fb40-11e8-a479-7a0060f0aa01", + "name": "Activity (ABC)", + "description": "Maintain Activities for Activity Based Costing", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57313, + "uuid": "ef0e8035-52eb-4c57-a838-2ec9191dc218", + "name": "Invoice", + "description": "Invoice Identifier", + "help": "The Invoice Document.", + "sequence": 140, + "column_name": "C_Invoice_ID", + "element_name": "C_Invoice_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Invoice", + "key_column_name": "C_Invoice.C_Invoice_ID", + "display_column_name": "", + "query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Invoice.DateInvoiced AS Text),'-1') ||'_'|| NVL(CAST (C_Invoice.GrandTotal AS Text),'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice ORDER BY 3", + "direct_query": "SELECT C_Invoice.C_Invoice_ID,NULL,NVL(C_Invoice.DocumentNo,'-1') ||'_'|| NVL(CAST (C_Invoice.DateInvoiced AS Text),'-1') ||'_'|| NVL(CAST (C_Invoice.GrandTotal AS Text),'-1'),C_Invoice.IsActive, C_Invoice.UUID FROM C_Invoice WHERE C_Invoice.C_Invoice_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 167, + "uuid": "a5220bac-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Customer)", + "description": "Customer Invoice Entry", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 183, + "uuid": "a520e312-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice (Vendor)", + "description": "Vendor Invoice Entry", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57314, + "uuid": "12425c91-9bd4-49af-9a7b-26387da58388", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 150, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57315, + "uuid": "3c25d2ef-d8e3-4b86-9088-894995b60bde", + "name": "Due Date", + "description": "Date when the payment is due", + "help": "Date when the payment is due without deductions or discount", + "sequence": 160, + "column_name": "DueDate", + "element_name": "DueDate", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": true, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 57316, + "uuid": "dc7192c4-6107-4fd4-bdae-4bc324ceae43", + "name": "Sales Group", + "description": "Sales Group", + "help": "", + "sequence": 170, + "column_name": "C_BP_SalesGroup_ID", + "element_name": "C_BP_SalesGroup_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_SalesGroup", + "key_column_name": "C_BP_SalesGroup.C_BP_SalesGroup_ID", + "display_column_name": "", + "query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup ORDER BY 3", + "direct_query": "SELECT C_BP_SalesGroup.C_BP_SalesGroup_ID,NULL,NVL(C_BP_SalesGroup.Name,'-1'),C_BP_SalesGroup.IsActive, C_BP_SalesGroup.UUID FROM C_BP_SalesGroup WHERE C_BP_SalesGroup.C_BP_SalesGroup_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53691, + "uuid": "340ab277-5c90-4897-ab69-271c793ae458", + "name": "Business Partner Sales Group", + "description": "Business Partner Sales Group", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57317, + "uuid": "3d40fbc5-4061-44d0-8a6e-389ca05c2e85", + "name": "Account Type", + "description": "Account Type classification for Business Partner", + "help": "", + "sequence": 180, + "column_name": "C_BP_AccountType_ID", + "element_name": "C_BP_AccountType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_AccountType", + "key_column_name": "C_BP_AccountType.C_BP_AccountType_ID", + "display_column_name": "", + "query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType ORDER BY 3", + "direct_query": "SELECT C_BP_AccountType.C_BP_AccountType_ID,NULL,NVL(C_BP_AccountType.Name,'-1'),C_BP_AccountType.IsActive, C_BP_AccountType.UUID FROM C_BP_AccountType WHERE C_BP_AccountType.C_BP_AccountType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53692, + "uuid": "1d7993d0-c94b-4545-a497-2ad29c3b06f4", + "name": "Business Partner Account Type", + "description": "Business Partner Account Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57318, + "uuid": "899c4865-7350-4d43-ae54-1f00d8bd4989", + "name": "Segment", + "description": "Business Partner Segment", + "help": "", + "sequence": 190, + "column_name": "C_BP_Segment_ID", + "element_name": "C_BP_Segment_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Segment", + "key_column_name": "C_BP_Segment.C_BP_Segment_ID", + "display_column_name": "", + "query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment ORDER BY 3", + "direct_query": "SELECT C_BP_Segment.C_BP_Segment_ID,NULL,NVL(C_BP_Segment.Name,'-1'),C_BP_Segment.IsActive, C_BP_Segment.UUID FROM C_BP_Segment WHERE C_BP_Segment.C_BP_Segment_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53693, + "uuid": "bc1f3ba0-0190-46aa-b066-82049f1f2803", + "name": "Business Partner Segment", + "description": "Business Partner Segment", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 57319, + "uuid": "bcea97f8-f498-45dc-b35c-3d758d4fd57d", + "name": "Industry Type", + "description": "Business Partner Industry Type or classification", + "help": "Use this field for set a industry type or classification for business partner", + "sequence": 200, + "column_name": "C_BP_IndustryType_ID", + "element_name": "C_BP_IndustryType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_IndustryType", + "key_column_name": "C_BP_IndustryType.C_BP_IndustryType_ID", + "display_column_name": "", + "query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType ORDER BY 3", + "direct_query": "SELECT C_BP_IndustryType.C_BP_IndustryType_ID,NULL,NVL(C_BP_IndustryType.Name,'-1'),C_BP_IndustryType.IsActive, C_BP_IndustryType.UUID FROM C_BP_IndustryType WHERE C_BP_IndustryType.C_BP_IndustryType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53694, + "uuid": "a86ce537-86fd-4f2b-aa1c-90f01a8dcbd7", + "name": "Business Partner Industry Type", + "description": "Business Partner Industry Type", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 467, + "uuid": "a439b9ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Existing Organization", + "description": "Organizational entity within client - set to empty if you want to create a new organization", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 10, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 468, + "uuid": "a43a1d1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Organization Type", + "help": "Organization Type allows you to categorize your organizations for reporting purposes", + "sequence": 20, + "column_name": "AD_OrgType_ID", + "element_name": "AD_OrgType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_OrgType", + "key_column_name": "AD_OrgType.AD_OrgType_ID", + "display_column_name": "", + "query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType ORDER BY 3", + "direct_query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType WHERE AD_OrgType.AD_OrgType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 304, + "uuid": "a5214460-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Maintain Organization Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 469, + "uuid": "a439b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Limit Access to Role", + "description": "If no Role is selected, grant access to all (non-manual) roles of the Client", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 30, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + } + ], + "fields": [ + { + "id": 9707, + "uuid": "8d64b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 0, + "column_name": "Description", + "element_name": "Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9684, + "uuid": "8d6750a8-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Status", + "description": "Business Partner Credit Status", + "help": "Credit Management is inactive if Credit Status is No Credit Check, Credit Stop or if the Credit Limit is 0.\nIf active, the status is set automatically set to Credit Hold, if the Total Open Balance (including Vendor activities) is higher then the Credit Limit. It is set to Credit Watch, if above 90% of the Credit Limit and Credit OK otherwise.", + "sequence": 0, + "column_name": "SOCreditStatus", + "element_name": "SOCreditStatus", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9680, + "uuid": "8d641622-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Greeting to print on correspondence", + "help": "The Greeting identifies the greeting to print on correspondence.", + "sequence": 0, + "column_name": "C_Greeting_ID", + "element_name": "C_Greeting_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Greeting", + "key_column_name": "C_Greeting.C_Greeting_ID", + "display_column_name": "", + "query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting ORDER BY 3", + "direct_query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting WHERE C_Greeting.C_Greeting_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 178, + "uuid": "a520eb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Maintain Greetings", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9685, + "uuid": "8d64a2ea-fb40-11e8-a479-7a0060f0aa01", + "name": "Min Shelf Life %", + "description": "Minimum Shelf Life in percent based on Product Instance Guarantee Date", + "help": "Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select \"Show All\"", + "sequence": 0, + "column_name": "ShelfLifeMinPct", + "element_name": "ShelfLifeMinPct", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9690, + "uuid": "8d64a3a8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference No", + "description": "Your customer or vendor number at the Business Partner's site", + "help": "The reference number can be printed on orders and invoices to allow your business partner to faster identify your records.", + "sequence": 0, + "column_name": "ReferenceNo", + "element_name": "ReferenceNo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 9662, + "uuid": "8d64ae5c-fb40-11e8-a479-7a0060f0aa01", + "name": "Name 2", + "description": "Additional Name", + "help": "", + "sequence": 0, + "column_name": "Name2", + "element_name": "Name2", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9708, + "uuid": "8d64bf50-fb40-11e8-a479-7a0060f0aa01", + "name": "Employees", + "description": "Number of employees", + "help": "Indicates the number of employees for this Business Partner. This field displays only for Prospects.", + "sequence": 0, + "column_name": "NumberEmployees", + "element_name": "NumberEmployees", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9665, + "uuid": "8d5ed874-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax ID", + "description": "Tax Identification", + "help": "The Tax ID field identifies the legal Identification number of this Entity.", + "sequence": 0, + "column_name": "TaxID", + "element_name": "TaxID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9683, + "uuid": "8d60fb7c-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Print Format", + "description": "Print Format for printing Invoices", + "help": "You need to define a Print Format to print the document.", + "sequence": 0, + "column_name": "Invoice_PrintFormat_ID", + "element_name": "Invoice_PrintFormat_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_PrintFormat", + "key_column_name": "AD_PrintFormat.AD_PrintFormat_ID", + "display_column_name": "Name", + "query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 ORDER BY 3", + "direct_query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 AND AD_PrintFormat.AD_PrintFormat_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 240, + "uuid": "a5216e18-fb40-11e8-a479-7a0060f0aa01", + "name": "Print Format", + "description": "Maintain Print Format", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9666, + "uuid": "8d61351a-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Schedule for generating Invoices", + "help": "The Invoice Schedule identifies the frequency used when generating invoices.", + "sequence": 0, + "column_name": "C_InvoiceSchedule_ID", + "element_name": "C_InvoiceSchedule_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_InvoiceSchedule", + "key_column_name": "C_InvoiceSchedule.C_InvoiceSchedule_ID", + "display_column_name": "", + "query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule ORDER BY 3", + "direct_query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule WHERE C_InvoiceSchedule.C_InvoiceSchedule_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 147, + "uuid": "a5216c1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Maintain Invoicing Schedule", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10594, + "uuid": "8d62dc3a-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Balance", + "description": "Total Open Balance Amount in primary Accounting Currency", + "help": "The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management.\nInvoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).", + "sequence": 0, + "column_name": "TotalOpenBalance", + "element_name": "TotalOpenBalance", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9670, + "uuid": "8d6749f0-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Limit", + "description": "Total outstanding invoice amounts allowed", + "help": "The Credit Limit indicates the total amount allowed \"on account\" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditLimit", + "element_name": "SO_CreditLimit", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9686, + "uuid": "8d66d2fe-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "sequence": 0, + "column_name": "AD_OrgBP_ID", + "element_name": "AD_OrgBP_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 28, + "default_value": "", + "read_only_logic": "@AD_OrgBP_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9672, + "uuid": "8d6668dc-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Reference", + "description": "Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner", + "help": "The business partner order reference is the order reference for this specific transaction; Often Purchase Order numbers are given to print on Invoices for easier reference. A standard number can be defined in the Business Partner (Customer) window.", + "sequence": 0, + "column_name": "POReference", + "element_name": "POReference", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 9696, + "uuid": "8d662b7e-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Language for this entity", + "help": "The Language identifies the language to use for display and formatting", + "sequence": 0, + "column_name": "AD_Language", + "element_name": "AD_Language", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Language", + "key_column_name": "AD_Language.AD_Language", + "display_column_name": "Name", + "query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') ORDER BY 3", + "direct_query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') AND AD_Language.AD_Language=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 106, + "uuid": "a5213222-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Maintain Languages", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9705, + "uuid": "8d65f758-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Dunning Rules for overdue invoices", + "help": "The Dunning indicates the rules and method of dunning for past due payments.", + "sequence": 0, + "column_name": "C_Dunning_ID", + "element_name": "C_Dunning_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Dunning", + "key_column_name": "C_Dunning.C_Dunning_ID", + "display_column_name": "", + "query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning ORDER BY 3", + "direct_query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning WHERE C_Dunning.C_Dunning_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 159, + "uuid": "a5211d3c-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Maintain Dunning Levels", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10472, + "uuid": "8d36d306-fb40-11e8-a479-7a0060f0aa01", + "name": "Flat Discount %", + "description": "Flat discount percentage ", + "help": "", + "sequence": 0, + "column_name": "FlatDiscount", + "element_name": "FlatDiscount", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 22, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9663, + "uuid": "8d36f9f8-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Rule", + "description": "Frequency and method of invoicing ", + "help": "The Invoice Rule defines how a Business Partner is invoiced and the frequency of invoicing.", + "sequence": 0, + "column_name": "InvoiceRule", + "element_name": "InvoiceRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2448, + "uuid": "8d572d7c-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 0, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9694, + "uuid": "8d5a3684-fb40-11e8-a479-7a0060f0aa01", + "name": "URL", + "description": "Full URL address - e.g. http://www.adempiere.org", + "help": "The URL defines an fully qualified web address like http://www.adempiere.org", + "sequence": 0, + "column_name": "URL", + "element_name": "URL", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 40, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 120 + }, + { + "id": 9691, + "uuid": "8d5a33dc-fb40-11e8-a479-7a0060f0aa01", + "name": "Acquisition Cost", + "description": "The cost of gaining the prospect as a customer", + "help": "The Acquisition Cost identifies the cost associated with making this prospect a customer.", + "sequence": 0, + "column_name": "AcqusitionCost", + "element_name": "AcqusitionCost", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 37, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9692, + "uuid": "8d5a34c2-fb40-11e8-a479-7a0060f0aa01", + "name": "Rating", + "description": "Classification or Importance", + "help": "The Rating is used to differentiate the importance", + "sequence": 0, + "column_name": "Rating", + "element_name": "Rating", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9693, + "uuid": "8d5a35a8-fb40-11e8-a479-7a0060f0aa01", + "name": "One time transaction", + "description": "", + "help": "", + "sequence": 0, + "column_name": "IsOneTime", + "element_name": "IsOneTime", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9676, + "uuid": "8d5f1898-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Rule", + "description": "Defines the timing of Delivery", + "help": "The Delivery Rule indicates when an order should be delivered. For example should the order be delivered when the entire order is complete, when a line is complete or as the products become available.", + "sequence": 0, + "column_name": "DeliveryRule", + "element_name": "DeliveryRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9671, + "uuid": "8d5fad4e-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Via", + "description": "How the order will be delivered", + "help": "The Delivery Via indicates how the products should be delivered. For example, will the order be picked up or shipped.", + "sequence": 0, + "column_name": "DeliveryViaRule", + "element_name": "DeliveryViaRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9678, + "uuid": "8d5fb2c6-fb40-11e8-a479-7a0060f0aa01", + "name": "Customer", + "description": "Indicates if this Business Partner is a Customer", + "help": "The Customer checkbox indicates if this Business Partner is a customer. If it is select additional fields will display which further define this customer.", + "sequence": 0, + "column_name": "IsCustomer", + "element_name": "IsCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9688, + "uuid": "8d6006e0-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Volume in 1.000", + "description": "Total Volume of Sales in Thousands of Currency", + "help": "The Sales Volume indicates the total volume of sales for a Business Partner.", + "sequence": 0, + "column_name": "SalesVolume", + "element_name": "SalesVolume", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9681, + "uuid": "8d60aa50-fb40-11e8-a479-7a0060f0aa01", + "name": "Send EMail", + "description": "Enable sending Document EMail", + "help": "Send emails with document attached (e.g. Invoice, Delivery Note, etc.)", + "sequence": 0, + "column_name": "SendEMail", + "element_name": "SendEMail", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9682, + "uuid": "8d60b55e-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Parent", + "description": "Business Partner Parent", + "help": "The parent (organization) of the Business Partner for reporting purposes.", + "sequence": 0, + "column_name": "BPartner_Parent_ID", + "element_name": "BPartner_Parent_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "@BPartner_Parent_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "Name", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' AND C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9703, + "uuid": "8d60bf86-fb40-11e8-a479-7a0060f0aa01", + "name": "SO Tax exempt", + "description": "Business partner is exempt from tax on sales", + "help": "If a business partner is exempt from tax on sales, the exempt tax rate is used. For this, you need to set up a tax rate with a 0% rate and indicate that this is your tax exempt rate. This is required for tax reporting, so that you can track tax exempt transactions.", + "sequence": 0, + "column_name": "IsTaxExempt", + "element_name": "IsTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9699, + "uuid": "8d62c2c2-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "How you pay the invoice", + "help": "The Payment Rule indicates the method of invoice payment.", + "sequence": 0, + "column_name": "PaymentRule", + "element_name": "PaymentRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9687, + "uuid": "8d60fc12-fb40-11e8-a479-7a0060f0aa01", + "name": "D-U-N-S", + "description": "Dun & Bradstreet Number", + "help": "Used for EDI - For details see www.dnb.com/dunsno/list.htm", + "sequence": 0, + "column_name": "DUNS", + "element_name": "DUNS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 11 + }, + { + "id": 9668, + "uuid": "8d60ee02-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Description", + "description": "Description to be used on orders", + "help": "The Order Description identifies the standard description to use on orders for this Customer.", + "sequence": 0, + "column_name": "SO_Description", + "element_name": "SO_Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9669, + "uuid": "8d6135a6-fb40-11e8-a479-7a0060f0aa01", + "name": "Freight Cost Rule", + "description": "Method for charging Freight", + "help": "The Freight Cost Rule indicates the method used when charging for freight.", + "sequence": 0, + "column_name": "FreightCostRule", + "element_name": "FreightCostRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9689, + "uuid": "8d627556-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Used", + "description": "Current open balance", + "help": "The Credit Used indicates the total amount of open or unpaid invoices in primary accounting currency for the Business Partner. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditUsed", + "element_name": "SO_CreditUsed", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9695, + "uuid": "8d626462-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 0, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9697, + "uuid": "8d629568-fb40-11e8-a479-7a0060f0aa01", + "name": "Actual Life Time Value", + "description": "Actual Life Time Revenue", + "help": "The Actual Life Time Value is the recorded revenue in primary accounting currency generated by the Business Partner.", + "sequence": 0, + "column_name": "ActualLifeTimeValue", + "element_name": "ActualLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9698, + "uuid": "8d629658-fb40-11e8-a479-7a0060f0aa01", + "name": "Share", + "description": "Share of Customer's business as a percentage", + "help": "The Share indicates the percentage of this Business Partner's volume of the products supplied.", + "sequence": 0, + "column_name": "ShareOfCustomer", + "element_name": "ShareOfCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9706, + "uuid": "8d62a27e-fb40-11e8-a479-7a0060f0aa01", + "name": "NAICS/SIC", + "description": "Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html", + "help": "The NAICS/SIC identifies either of these codes that may be applicable to this Business Partner.", + "sequence": 0, + "column_name": "NAICS", + "element_name": "NAICS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 6 + }, + { + "id": 9704, + "uuid": "8d62b9e4-fb40-11e8-a479-7a0060f0aa01", + "name": "Employee", + "description": "Indicates if this Business Partner is an employee", + "help": "The Employee checkbox indicates if this Business Partner is an Employee. If it is selected, additional fields will display which further identify this employee.", + "sequence": 0, + "column_name": "IsEmployee", + "element_name": "IsEmployee", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9700, + "uuid": "8d62c376-fb40-11e8-a479-7a0060f0aa01", + "name": "Potential Life Time Value", + "description": "Total Revenue expected", + "help": "The Potential Life Time Value is the anticipated revenue in primary accounting currency to be generated by the Business Partner.", + "sequence": 0, + "column_name": "PotentialLifeTimeValue", + "element_name": "PotentialLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9673, + "uuid": "8d6306e2-fb40-11e8-a479-7a0060f0aa01", + "name": "First Sale", + "description": "Date of First Sale", + "help": "The First Sale Date identifies the date of the first sale to this Business Partner", + "sequence": 0, + "column_name": "FirstSale", + "element_name": "FirstSale", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 9674, + "uuid": "8d630796-fb40-11e8-a479-7a0060f0aa01", + "name": "Prospect", + "description": "Indicates this is a Prospect", + "help": "The Prospect checkbox indicates an entity that is an active prospect.", + "sequence": 0, + "column_name": "IsProspect", + "element_name": "IsProspect", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9677, + "uuid": "8d630840-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Printed", + "description": "Print Discount on Invoice and Order", + "help": "The Discount Printed Checkbox indicates if the discount will be printed on the document.", + "sequence": 0, + "column_name": "IsDiscountPrinted", + "element_name": "IsDiscountPrinted", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9701, + "uuid": "8d63387e-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Copies", + "description": "Number of copies to be printed", + "help": "The Document Copies indicates the number of copies of each document that will be generated.", + "sequence": 0, + "column_name": "DocumentCopies", + "element_name": "DocumentCopies", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9667, + "uuid": "8d635656-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Business Partner Group", + "help": "The Business Partner Group provides a method of defining defaults to be used for individual Business Partners.", + "sequence": 0, + "column_name": "C_BP_Group_ID", + "element_name": "C_BP_Group_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Group", + "key_column_name": "C_BP_Group.C_BP_Group_ID", + "display_column_name": "", + "query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group ORDER BY 3", + "direct_query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group WHERE C_BP_Group.C_BP_Group_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 192, + "uuid": "a5216404-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Maintain Business Partner Groups", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9664, + "uuid": "8d635f5c-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 0, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9675, + "uuid": "8d63cbe0-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Schema to calculate the trade discount percentage", + "help": "After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.", + "sequence": 0, + "column_name": "M_DiscountSchema_ID", + "element_name": "M_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9702, + "uuid": "8d63d07c-fb40-11e8-a479-7a0060f0aa01", + "name": "Summary Level", + "description": "This is a summary entity", + "help": "A summary entity represents a branch in a tree rather than an end-node. Summary entities are used for reporting and do not have own values.", + "sequence": 0, + "column_name": "IsSummary", + "element_name": "IsSummary", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9679, + "uuid": "8d641564-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 0, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2442, + "uuid": "8d5b14a0-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2444, + "uuid": "8d3b391e-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2475, + "uuid": "8d39a270-fb40-11e8-a479-7a0060f0aa01", + "name": "Search Key", + "description": "Search key for the record in the format required - must be unique", + "help": "A search key allows you a fast method of finding a particular record.\nIf you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the \"Maintain Sequence\" window with the name \"DocumentNo_\", where TableName is the actual name of the table (e.g. C_Order).", + "sequence": 0, + "column_name": "Value", + "element_name": "Value", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 8344, + "uuid": "8d0773ea-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Indicates if the business partner is a sales representative or company agent", + "help": "The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.", + "sequence": 0, + "column_name": "IsSalesRep", + "element_name": "IsSalesRep", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 5283, + "uuid": "8cf417dc-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Discount Schema", + "description": "Schema to calculate the purchase trade discount percentage", + "help": "", + "sequence": 0, + "column_name": "PO_DiscountSchema_ID", + "element_name": "PO_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 58570, + "uuid": "8d1f0604-fb40-11e8-a479-7a0060f0aa01", + "name": "Is Manufacturer", + "description": "Indicate role of this Business partner as Manufacturer", + "help": "", + "sequence": 0, + "column_name": "IsManufacturer", + "element_name": "IsManufacturer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "'N'", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 76161, + "uuid": "8db10658-fb40-11e8-a479-7a0060f0aa01", + "name": "AP Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "sequence": 0, + "column_name": "APEnquiry", + "element_name": "APEnquiry", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53752, + "uuid": "a42cfb4e-fb40-11e8-a479-7a0060f0aa01", + "name": "AP Trial balance", + "description": "Trial Balance for a period or date range", + "help": "Select a Period (current period if empty) or enter a Account Date Range. If an account is selected, the balance is calculated based on the account type and the primary calendar of the client (i.e. for revenue/expense accounts from the beginning of the year). If no account is selected, the balance is the sum of all transactions before the selected account range or first day of the period selected. You can select an alternative Reporting Hierarchy.", + "is_report": true, + "access_level": 1, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76162, + "uuid": "8db0f564-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "sequence": 0, + "column_name": "UnappliedPayments", + "element_name": "UnappliedPayments", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53754, + "uuid": "a42cfbb2-fb40-11e8-a479-7a0060f0aa01", + "name": "Unapplied AR Payments", + "description": "Payment Detail Report", + "help": "Type adjusted payments (receipts positive, payments negative) with allocated and available amounts", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76164, + "uuid": "8db10de2-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "sequence": 0, + "column_name": "VendorOpenInvoices", + "element_name": "VendorOpenInvoices", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53757, + "uuid": "a42cf996-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Invoices", + "description": "Open Item (Invoice) List", + "help": "Displays all unpaid invoices for a given Business Partner and date range. Please note that Invoices paid in Cash will appear in Open Items until the Cash Journal is processed.", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 76165, + "uuid": "8db10130-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "sequence": 0, + "column_name": "NotPosted", + "element_name": "NotPosted", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53756, + "uuid": "a42cff4a-fb40-11e8-a479-7a0060f0aa01", + "name": "Not Posted Invoice", + "description": "", + "help": "", + "is_report": true, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [ + { + "name": "ps - Postscript file", + "description": "ps - Postscript file", + "type": "ps" + }, + { + "name": "xml - XML file", + "description": "xml - XML file", + "type": "xml" + }, + { + "name": "pdf - Acrobat PDF file", + "description": "pdf - Acrobat PDF file", + "type": "pdf" + }, + { + "name": "html - HTML file", + "description": "html - HTML file", + "type": "html" + }, + { + "name": "txt - Tab delimited file", + "description": "txt - Tab delimited file", + "type": "txt" + }, + { + "name": "ssv - Semicolon Separated Values file", + "description": "ssv - Semicolon Separated Values file", + "type": "ssv" + }, + { + "name": "csv - Excel Comma Separated Values file", + "description": "csv - Excel Comma Separated Values file", + "type": "csv" + }, + { + "name": "xls - Excel file", + "description": "xls - Excel file", + "type": "xls" + }, + { + "name": "xlsx - XLSX file", + "description": "xlsx - XLSX file", + "type": "xlsx" + }, + { + "name": "arxml - Adempiere Report Definition", + "description": "arxml - Adempiere Report Definition", + "type": "arxml" + } + ], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 88397, + "uuid": "a01bf36e-128f-11e9-92c3-4b26b82f7572", + "name": "FBTT Tax exempt", + "description": "Business partner is exempt from tax on FBTT", + "help": "", + "sequence": 0, + "column_name": "IsFBTTTaxExempt", + "element_name": "IsFBTTTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50079, + "uuid": "a023bc98-128f-11e9-9326-47085fc08f18", + "name": "Financial Big Transaction Tax (Venezuela)", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2464, + "uuid": "8cf2ae7e-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 10, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 7622, + "uuid": "8d612840-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 20, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2567, + "uuid": "8cef46bc-fb40-11e8-a479-7a0060f0aa01", + "name": "Vendor", + "description": "Indicates if this Business Partner is a Vendor", + "help": "The Vendor checkbox indicates if this Business Partner is a Vendor. If it is selected, additional fields will display which further identify this vendor.", + "sequence": 30, + "column_name": "IsVendor", + "element_name": "IsVendor", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2480, + "uuid": "8cecee3a-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "Purchase payment option", + "help": "The Payment Rule indicates the method of purchase payment.", + "sequence": 40, + "column_name": "PaymentRulePO", + "element_name": "PaymentRulePO", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 4622, + "uuid": "8d034cde-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Payment Term", + "description": "Payment rules for a purchase order", + "help": "The PO Payment Term indicates the payment term that will be used when this purchase order becomes an invoice.", + "sequence": 50, + "column_name": "PO_PaymentTerm_ID", + "element_name": "PO_PaymentTerm_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "Name", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2466, + "uuid": "8ceb0a52-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Pricelist", + "description": "Price List used by this Business Partner", + "help": "Identifies the price list used by a Vendor for products purchased by this organization.", + "sequence": 60, + "column_name": "PO_PriceList_ID", + "element_name": "PO_PriceList_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "Name", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 94803, + "uuid": "59785e6a-8eff-11e9-8ace-3f50039ee0e6", + "name": "Withholding Tax Exempt", + "description": "Withholding Tax Exempt for this Vendor", + "help": "The documents or business partner flagged with this flag will not processed when running withholding", + "sequence": 70, + "column_name": "IsWithholdingTaxExempt", + "element_name": "IsWithholdingTaxExempt", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50105, + "uuid": "529061a2-8e2c-11e9-9fe8-afc6279d77e5", + "name": "Withholding Definition (Venezuela)", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 94802, + "uuid": "5b418eaa-8efb-11e9-9f98-13da01ffec14", + "name": "Withholding Tax Rate", + "description": "Withholding Tax Rate for a Business Partner", + "help": "", + "sequence": 80, + "column_name": "WithholdingTaxRate_ID", + "element_name": "WithholdingTaxRate_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsWithholdingTaxExempt@=N", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50105, + "uuid": "529061a2-8e2c-11e9-9fe8-afc6279d77e5", + "name": "Withholding Definition (Venezuela)", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "LVE_List", + "key_column_name": "LVE_List.LVE_List_ID", + "display_column_name": "Name", + "query": "SELECT LVE_List.LVE_List_ID,NULL,NVL(LVE_List.Name,'-1'),LVE_List.IsActive, LVE_List.UUID FROM LVE_List WHERE EXISTS(SELECT 1 FROM LVE_WithholdingTax wt WHERE wt.Type = 'IV' AND wt.WithholdingRateType_ID = LVE_List.LVE_ListType_ID AND wt.AD_Client_ID = @#AD_Client_ID@) ORDER BY 3", + "direct_query": "SELECT LVE_List.LVE_List_ID,NULL,NVL(LVE_List.Name,'-1'),LVE_List.IsActive, LVE_List.UUID FROM LVE_List WHERE LVE_List.LVE_List_ID=?", + "validation_code": "EXISTS(SELECT 1 FROM LVE_WithholdingTax wt WHERE wt.Type = 'IV' AND wt.WithholdingRateType_ID = LVE_List.LVE_ListType_ID AND wt.AD_Client_ID = @#AD_Client_ID@)", + "zoom_windows": [ + { + "id": 53539, + "uuid": "c60ca2da-128f-11e9-b6df-c3467b409bc6", + "name": "List Configuration (LVE)", + "description": "List Configuration", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 94849, + "uuid": "ce0da918-9122-11e9-80f2-b3d2be297286", + "name": "Withholding Rental Exempt", + "description": "Withholding Rental Exempt for this Vendor", + "help": "The documents or business partner flagged with this flag will not processed when running withholding", + "sequence": 90, + "column_name": "IsWithholdingRentalExempt", + "element_name": "IsWithholdingRentalExempt", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 95137, + "uuid": "97066260-969b-11e9-87b7-5bea6b17a75c", + "name": "Withholding Municipal Exempt", + "description": "Withholding Municipal Exempt for this Vendor", + "help": "The documents or business partner flagged with this flag will not processed when running withholding", + "sequence": 100, + "column_name": "IsWithholdingMunicipalExempt", + "element_name": "IsWithholdingMunicipalExempt", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 95138, + "uuid": "9f899a56-969b-11e9-87f6-2f7022b65d65", + "name": "Withholding Business Activity", + "description": "Withholding Business Activity for Municipal application", + "help": "", + "sequence": 110, + "column_name": "BusinessActivity_ID", + "element_name": "BusinessActivity_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsWithholdingMunicipalExempt@=N", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "LVE_List", + "key_column_name": "LVE_List.LVE_List_ID", + "display_column_name": "Name", + "query": "SELECT LVE_List.LVE_List_ID,NULL,NVL(LVE_List.Name,'-1'),LVE_List.IsActive, LVE_List.UUID FROM LVE_List WHERE EXISTS(SELECT 1 FROM LVE_WithholdingTax wt WHERE wt.Type = 'IM' AND wt.WithholdingRateType_ID = LVE_List.LVE_ListType_ID AND wt.AD_Client_ID = @#AD_Client_ID@) ORDER BY 3", + "direct_query": "SELECT LVE_List.LVE_List_ID,NULL,NVL(LVE_List.Name,'-1'),LVE_List.IsActive, LVE_List.UUID FROM LVE_List WHERE LVE_List.LVE_List_ID=?", + "validation_code": "EXISTS(SELECT 1 FROM LVE_WithholdingTax wt WHERE wt.Type = 'IM' AND wt.WithholdingRateType_ID = LVE_List.LVE_ListType_ID AND wt.AD_Client_ID = @#AD_Client_ID@)", + "zoom_windows": [ + { + "id": 53539, + "uuid": "c60ca2da-128f-11e9-b6df-c3467b409bc6", + "name": "List Configuration (LVE)", + "description": "List Configuration", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 95139, + "uuid": "a42e9796-969b-11e9-8835-03f7a3340eb2", + "name": "Withholding Municipal Rate", + "description": "Withholding Municipal Rate for document", + "help": "", + "sequence": 120, + "column_name": "WithholdingMunicipalRate_ID", + "element_name": "WithholdingMunicipalRate_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsWithholdingMunicipalExempt@=N", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "LVE_ListVersion", + "key_column_name": "LVE_ListVersion.LVE_ListVersion_ID", + "display_column_name": "Amount", + "query": "SELECT LVE_ListVersion.LVE_ListVersion_ID,NULL,NVL(LVE_ListVersion.Amount,'-1'),LVE_ListVersion.IsActive, LVE_ListVersion.UUID FROM LVE_ListVersion WHERE LVE_ListVersion.LVE_List_ID = @BusinessActivity_ID@ ORDER BY 3", + "direct_query": "SELECT LVE_ListVersion.LVE_ListVersion_ID,NULL,NVL(LVE_ListVersion.Amount,'-1'),LVE_ListVersion.IsActive, LVE_ListVersion.UUID FROM LVE_ListVersion WHERE LVE_ListVersion.LVE_ListVersion_ID=?", + "validation_code": "LVE_ListVersion.LVE_List_ID = @BusinessActivity_ID@", + "zoom_windows": [ + { + "id": 53539, + "uuid": "c60ca2da-128f-11e9-b6df-c3467b409bc6", + "name": "List Configuration (LVE)", + "description": "List Configuration", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100102, + "uuid": "9499c792-09a9-4aa2-b420-4f233098a833", + "name": "Drop Shipment", + "description": "Drop Shipments are sent from the Vendor directly to the Customer", + "help": "Drop Shipments do not cause any Inventory reservations or movements as the Shipment is from the Vendor's inventory. The Shipment of the Vendor to the Customer must be confirmed.", + "sequence": 130, + "column_name": "IsDropShip", + "element_name": "IsDropShip", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsVendor@='Y'", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 95683, + "uuid": "5e829330-cd02-11e9-9b00-0242ac110002", + "name": "Withholding Third Party", + "description": "", + "help": "", + "sequence": 130, + "column_name": "WHThirdParty_ID", + "element_name": "WHThirdParty_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "Name", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Value,'-1') || '-' || NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='N' AND C_BPartner.IsActive='Y' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Value,'-1') || '-' || NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='N' AND C_BPartner.IsActive='Y' AND C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 225, + "uuid": "a4a07ccc-fb40-11e8-a479-7a0060f0aa01", + "name": "Employee", + "description": "Define Employee Parameters", + "help": "The Employee Tab defines a Business Partner who is an Employee of this organization. If the Employee is also a Sales Representative then the check box should be selected.", + "table_name": "C_BPartner", + "sequence": 40, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": false, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "C_BPartner_ID", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\" FROM C_BPartner AS C_BPartner", + "where_clause": "C_BPartner.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [ + { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 467, + "uuid": "a439b9ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Existing Organization", + "description": "Organizational entity within client - set to empty if you want to create a new organization", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 10, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 468, + "uuid": "a43a1d1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Organization Type", + "help": "Organization Type allows you to categorize your organizations for reporting purposes", + "sequence": 20, + "column_name": "AD_OrgType_ID", + "element_name": "AD_OrgType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_OrgType", + "key_column_name": "AD_OrgType.AD_OrgType_ID", + "display_column_name": "", + "query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType ORDER BY 3", + "direct_query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType WHERE AD_OrgType.AD_OrgType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 304, + "uuid": "a5214460-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Maintain Organization Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 469, + "uuid": "a439b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Limit Access to Role", + "description": "If no Role is selected, grant access to all (non-manual) roles of the Client", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 30, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + } + ], + "fields": [ + { + "id": 9734, + "uuid": "8d6f14be-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Status", + "description": "Business Partner Credit Status", + "help": "Credit Management is inactive if Credit Status is No Credit Check, Credit Stop or if the Credit Limit is 0.\nIf active, the status is set automatically set to Credit Hold, if the Total Open Balance (including Vendor activities) is higher then the Credit Limit. It is set to Credit Watch, if above 90% of the Credit Limit and Credit OK otherwise.", + "sequence": 0, + "column_name": "SOCreditStatus", + "element_name": "SOCreditStatus", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=289 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9756, + "uuid": "8d5f6d70-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Dunning Rules for overdue invoices", + "help": "The Dunning indicates the rules and method of dunning for past due payments.", + "sequence": 0, + "column_name": "C_Dunning_ID", + "element_name": "C_Dunning_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Dunning", + "key_column_name": "C_Dunning.C_Dunning_ID", + "display_column_name": "", + "query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning ORDER BY 3", + "direct_query": "SELECT C_Dunning.C_Dunning_ID,NULL,NVL(C_Dunning.Name,'-1'),C_Dunning.IsActive, C_Dunning.UUID FROM C_Dunning WHERE C_Dunning.C_Dunning_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 159, + "uuid": "a5211d3c-fb40-11e8-a479-7a0060f0aa01", + "name": "Dunning", + "description": "Maintain Dunning Levels", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9712, + "uuid": "8d638888-fb40-11e8-a479-7a0060f0aa01", + "name": "Tax ID", + "description": "Tax Identification", + "help": "The Tax ID field identifies the legal Identification number of this Entity.", + "sequence": 0, + "column_name": "TaxID", + "element_name": "TaxID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9727, + "uuid": "8d639ad0-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Printed", + "description": "Print Discount on Invoice and Order", + "help": "The Discount Printed Checkbox indicates if the discount will be printed on the document.", + "sequence": 0, + "column_name": "IsDiscountPrinted", + "element_name": "IsDiscountPrinted", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9713, + "uuid": "8d664dfc-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Schedule for generating Invoices", + "help": "The Invoice Schedule identifies the frequency used when generating invoices.", + "sequence": 0, + "column_name": "C_InvoiceSchedule_ID", + "element_name": "C_InvoiceSchedule_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_InvoiceSchedule", + "key_column_name": "C_InvoiceSchedule.C_InvoiceSchedule_ID", + "display_column_name": "", + "query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule ORDER BY 3", + "direct_query": "SELECT C_InvoiceSchedule.C_InvoiceSchedule_ID,NULL,NVL(C_InvoiceSchedule.Name,'-1'),C_InvoiceSchedule.IsActive, C_InvoiceSchedule.UUID FROM C_InvoiceSchedule WHERE C_InvoiceSchedule.C_InvoiceSchedule_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 147, + "uuid": "a5216c1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Schedule", + "description": "Maintain Invoicing Schedule", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9752, + "uuid": "8d654b28-fb40-11e8-a479-7a0060f0aa01", + "name": "Potential Life Time Value", + "description": "Total Revenue expected", + "help": "The Potential Life Time Value is the anticipated revenue in primary accounting currency to be generated by the Business Partner.", + "sequence": 0, + "column_name": "PotentialLifeTimeValue", + "element_name": "PotentialLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9711, + "uuid": "8d654be6-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "The terms of Payment (timing, discount)", + "help": "Payment Terms identify the method and timing of payment.", + "sequence": 0, + "column_name": "C_PaymentTerm_ID", + "element_name": "C_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9748, + "uuid": "8d6578dc-fb40-11e8-a479-7a0060f0aa01", + "name": "Vendor", + "description": "Indicates if this Business Partner is a Vendor", + "help": "The Vendor checkbox indicates if this Business Partner is a Vendor. If it is selected, additional fields will display which further identify this vendor.", + "sequence": 0, + "column_name": "IsVendor", + "element_name": "IsVendor", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9731, + "uuid": "8d6594f2-fb40-11e8-a479-7a0060f0aa01", + "name": "Send EMail", + "description": "Enable sending Document EMail", + "help": "Send emails with document attached (e.g. Invoice, Delivery Note, etc.)", + "sequence": 0, + "column_name": "SendEMail", + "element_name": "SendEMail", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9726, + "uuid": "8d66552c-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Rule", + "description": "Defines the timing of Delivery", + "help": "The Delivery Rule indicates when an order should be delivered. For example should the order be delivered when the entire order is complete, when a line is complete or as the products become available.", + "sequence": 0, + "column_name": "DeliveryRule", + "element_name": "DeliveryRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=151 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9718, + "uuid": "8d67c95c-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Limit", + "description": "Total outstanding invoice amounts allowed", + "help": "The Credit Limit indicates the total amount allowed \"on account\" in primary accounting currency. If the Credit Limit is 0, no check is performed. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditLimit", + "element_name": "SO_CreditLimit", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9751, + "uuid": "8d5f6cda-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "How you pay the invoice", + "help": "The Payment Rule indicates the method of invoice payment.", + "sequence": 0, + "column_name": "PaymentRule", + "element_name": "PaymentRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9753, + "uuid": "8d36e616-fb40-11e8-a479-7a0060f0aa01", + "name": "Document Copies", + "description": "Number of copies to be printed", + "help": "The Document Copies indicates the number of copies of each document that will be generated.", + "sequence": 0, + "column_name": "DocumentCopies", + "element_name": "DocumentCopies", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9729, + "uuid": "8d370920-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 0, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10473, + "uuid": "8d38409c-fb40-11e8-a479-7a0060f0aa01", + "name": "Flat Discount %", + "description": "Flat discount percentage ", + "help": "", + "sequence": 0, + "column_name": "FlatDiscount", + "element_name": "FlatDiscount", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 22, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 2490, + "uuid": "8d3a0bf2-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 0, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10595, + "uuid": "8d5e7b7c-fb40-11e8-a479-7a0060f0aa01", + "name": "Open Balance", + "description": "Total Open Balance Amount in primary Accounting Currency", + "help": "The Total Open Balance Amount is the calculated open item amount for Customer and Vendor activity. If the Balance is below zero, we owe the Business Partner. The amount is used for Credit Management.\nInvoices and Payment Allocations determine the Open Balance (i.e. not Orders or Payments).", + "sequence": 0, + "column_name": "TotalOpenBalance", + "element_name": "TotalOpenBalance", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9746, + "uuid": "8d5eaeee-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Unique identifier of a Price List", + "help": "Price Lists are used to determine the pricing, margin and cost of items purchased or sold.", + "sequence": 0, + "column_name": "M_PriceList_ID", + "element_name": "M_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9747, + "uuid": "8d5eaf84-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Language for this entity", + "help": "The Language identifies the language to use for display and formatting", + "sequence": 0, + "column_name": "AD_Language", + "element_name": "AD_Language", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Language", + "key_column_name": "AD_Language.AD_Language", + "display_column_name": "Name", + "query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') ORDER BY 3", + "direct_query": "SELECT NULL,AD_Language.AD_Language,NVL(AD_Language.Name,'-1'),AD_Language.IsActive, AD_Language.UUID FROM AD_Language WHERE (AD_Language.IsSystemLanguage='Y' OR AD_Language.IsBaseLanguage='Y') AND AD_Language.AD_Language=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 106, + "uuid": "a5213222-fb40-11e8-a479-7a0060f0aa01", + "name": "Language", + "description": "Maintain Languages", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9749, + "uuid": "8d5eb01a-fb40-11e8-a479-7a0060f0aa01", + "name": "Actual Life Time Value", + "description": "Actual Life Time Revenue", + "help": "The Actual Life Time Value is the recorded revenue in primary accounting currency generated by the Business Partner.", + "sequence": 0, + "column_name": "ActualLifeTimeValue", + "element_name": "ActualLifeTimeValue", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9757, + "uuid": "8d5f4246-fb40-11e8-a479-7a0060f0aa01", + "name": "NAICS/SIC", + "description": "Standard Industry Code or its successor NAIC - http://www.osha.gov/oshstats/sicser.html", + "help": "The NAICS/SIC identifies either of these codes that may be applicable to this Business Partner.", + "sequence": 0, + "column_name": "NAICS", + "element_name": "NAICS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 6 + }, + { + "id": 9758, + "uuid": "8d5faa42-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 0, + "column_name": "Description", + "element_name": "Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9735, + "uuid": "8d5fbe4c-fb40-11e8-a479-7a0060f0aa01", + "name": "Min Shelf Life %", + "description": "Minimum Shelf Life in percent based on Product Instance Guarantee Date", + "help": "Minimum Shelf Life of products with Guarantee Date instance. If > 0 you cannot select products with a shelf life ((Guarantee Date-Today) / Guarantee Days) less than the minimum shelf life, unless you select \"Show All\"", + "sequence": 0, + "column_name": "ShelfLifeMinPct", + "element_name": "ShelfLifeMinPct", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9739, + "uuid": "8d5fbf96-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Used", + "description": "Current open balance", + "help": "The Credit Used indicates the total amount of open or unpaid invoices in primary accounting currency for the Business Partner. Credit Management is based on the Total Open Amount, which includes Vendor activities.", + "sequence": 0, + "column_name": "SO_CreditUsed", + "element_name": "SO_CreditUsed", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9740, + "uuid": "8d6031a6-fb40-11e8-a479-7a0060f0aa01", + "name": "Purchase Pricelist", + "description": "Price List used by this Business Partner", + "help": "Identifies the price list used by a Vendor for products purchased by this organization.", + "sequence": 0, + "column_name": "PO_PriceList_ID", + "element_name": "PO_PriceList_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_PriceList", + "key_column_name": "M_PriceList.M_PriceList_ID", + "display_column_name": "Name", + "query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList ORDER BY 3", + "direct_query": "SELECT M_PriceList.M_PriceList_ID,NULL,NVL(M_PriceList.Name,'-1'),M_PriceList.IsActive, M_PriceList.UUID FROM M_PriceList WHERE M_PriceList.M_PriceList_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 146, + "uuid": "a5210c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List", + "description": "Maintain Product Price Lists", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9720, + "uuid": "8d603bce-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Discount Schema", + "description": "Schema to calculate the purchase trade discount percentage", + "help": "", + "sequence": 0, + "column_name": "PO_DiscountSchema_ID", + "element_name": "PO_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9722, + "uuid": "8d603c78-fb40-11e8-a479-7a0060f0aa01", + "name": "First Sale", + "description": "Date of First Sale", + "help": "The First Sale Date identifies the date of the first sale to this Business Partner", + "sequence": 0, + "column_name": "FirstSale", + "element_name": "FirstSale", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 9723, + "uuid": "8d603d18-fb40-11e8-a479-7a0060f0aa01", + "name": "Prospect", + "description": "Indicates this is a Prospect", + "help": "The Prospect checkbox indicates an entity that is an active prospect.", + "sequence": 0, + "column_name": "IsProspect", + "element_name": "IsProspect", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9715, + "uuid": "8d606662-fb40-11e8-a479-7a0060f0aa01", + "name": "PO Payment Term", + "description": "Payment rules for a purchase order", + "help": "The PO Payment Term indicates the payment term that will be used when this purchase order becomes an invoice.", + "sequence": 0, + "column_name": "PO_PaymentTerm_ID", + "element_name": "PO_PaymentTerm_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_PaymentTerm", + "key_column_name": "C_PaymentTerm.C_PaymentTerm_ID", + "display_column_name": "Name", + "query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm ORDER BY 3", + "direct_query": "SELECT C_PaymentTerm.C_PaymentTerm_ID,NULL,NVL(C_PaymentTerm.Name,'-1'),C_PaymentTerm.IsActive, C_PaymentTerm.UUID FROM C_PaymentTerm WHERE C_PaymentTerm.C_PaymentTerm_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 141, + "uuid": "a5217188-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Term", + "description": "Maintain Payment Terms", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9741, + "uuid": "8d60ad20-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference No", + "description": "Your customer or vendor number at the Business Partner's site", + "help": "The reference number can be printed on orders and invoices to allow your business partner to faster identify your records.", + "sequence": 0, + "column_name": "ReferenceNo", + "element_name": "ReferenceNo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 9733, + "uuid": "8d60efc4-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Print Format", + "description": "Print Format for printing Invoices", + "help": "You need to define a Print Format to print the document.", + "sequence": 0, + "column_name": "Invoice_PrintFormat_ID", + "element_name": "Invoice_PrintFormat_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_PrintFormat", + "key_column_name": "AD_PrintFormat.AD_PrintFormat_ID", + "display_column_name": "Name", + "query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 ORDER BY 3", + "direct_query": "SELECT AD_PrintFormat.AD_PrintFormat_ID,NULL,NVL(AD_PrintFormat.Name,'-1'),AD_PrintFormat.IsActive, AD_PrintFormat.UUID FROM AD_PrintFormat WHERE AD_PrintFormat.AD_Table_ID=516 AND AD_PrintFormat.AD_PrintFormat_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 240, + "uuid": "a5216e18-fb40-11e8-a479-7a0060f0aa01", + "name": "Print Format", + "description": "Maintain Print Format", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9736, + "uuid": "8d621098-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "sequence": 0, + "column_name": "AD_OrgBP_ID", + "element_name": "AD_OrgBP_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 28, + "default_value": "", + "read_only_logic": "@AD_OrgBP_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9724, + "uuid": "8d622a6a-fb40-11e8-a479-7a0060f0aa01", + "name": "Payment Rule", + "description": "Purchase payment option", + "help": "The Payment Rule indicates the method of purchase payment.", + "sequence": 0, + "column_name": "PaymentRulePO", + "element_name": "PaymentRulePO", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M' ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=195 AND AD_Ref_List.Value=?", + "validation_code": "AD_Ref_List.Value <> 'B' AND AD_Ref_List.Value <> 'M'", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9728, + "uuid": "8d625904-fb40-11e8-a479-7a0060f0aa01", + "name": "Customer", + "description": "Indicates if this Business Partner is a Customer", + "help": "The Customer checkbox indicates if this Business Partner is a customer. If it is select additional fields will display which further define this customer.", + "sequence": 0, + "column_name": "IsCustomer", + "element_name": "IsCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9725, + "uuid": "8d6259f4-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Schema to calculate the trade discount percentage", + "help": "After calculation of the (standard) price, the trade discount percentage is calculated and applied resulting in the final price.", + "sequence": 0, + "column_name": "M_DiscountSchema_ID", + "element_name": "M_DiscountSchema_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "M_DiscountSchema", + "key_column_name": "M_DiscountSchema.M_DiscountSchema_ID", + "display_column_name": "Name", + "query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' ORDER BY 3", + "direct_query": "SELECT M_DiscountSchema.M_DiscountSchema_ID,NULL,NVL(M_DiscountSchema.Name,'-1'),M_DiscountSchema.IsActive, M_DiscountSchema.UUID FROM M_DiscountSchema WHERE M_DiscountSchema.DiscountType<>'P' AND M_DiscountSchema.M_DiscountSchema_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 233, + "uuid": "a5211666-fb40-11e8-a479-7a0060f0aa01", + "name": "Discount Schema", + "description": "Maintain Trade Discount Schema", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 337, + "uuid": "a520cc06-fb40-11e8-a479-7a0060f0aa01", + "name": "Price List Schema", + "description": "Maintain Price List Schema", + "is_sales_transaction": false, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9721, + "uuid": "8d6280d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Reference", + "description": "Transaction Reference Number (Sales Order, Purchase Order) of your Business Partner", + "help": "The business partner order reference is the order reference for this specific transaction; Often Purchase Order numbers are given to print on Invoices for easier reference. A standard number can be defined in the Business Partner (Customer) window.", + "sequence": 0, + "column_name": "POReference", + "element_name": "POReference", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 9732, + "uuid": "8d62a49a-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Parent", + "description": "Business Partner Parent", + "help": "The parent (organization) of the Business Partner for reporting purposes.", + "sequence": 0, + "column_name": "BPartner_Parent_ID", + "element_name": "BPartner_Parent_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "@BPartner_Parent_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "Name", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsSummary='Y' AND C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9737, + "uuid": "8d62a56c-fb40-11e8-a479-7a0060f0aa01", + "name": "D-U-N-S", + "description": "Dun & Bradstreet Number", + "help": "Used for EDI - For details see www.dnb.com/dunsno/list.htm", + "sequence": 0, + "column_name": "DUNS", + "element_name": "DUNS", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 11 + }, + { + "id": 9738, + "uuid": "8d62a62a-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Volume in 1.000", + "description": "Total Volume of Sales in Thousands of Currency", + "help": "The Sales Volume indicates the total volume of sales for a Business Partner.", + "sequence": 0, + "column_name": "SalesVolume", + "element_name": "SalesVolume", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9714, + "uuid": "8d62c8e4-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Business Partner Group", + "help": "The Business Partner Group provides a method of defining defaults to be used for individual Business Partners.", + "sequence": 0, + "column_name": "C_BP_Group_ID", + "element_name": "C_BP_Group_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BP_Group", + "key_column_name": "C_BP_Group.C_BP_Group_ID", + "display_column_name": "", + "query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group ORDER BY 3", + "direct_query": "SELECT C_BP_Group.C_BP_Group_ID,NULL,NVL(C_BP_Group.Name,'-1'),C_BP_Group.IsActive, C_BP_Group.UUID FROM C_BP_Group WHERE C_BP_Group.C_BP_Group_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 192, + "uuid": "a5216404-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner Group", + "description": "Maintain Business Partner Groups", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9730, + "uuid": "8d62d58c-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Greeting to print on correspondence", + "help": "The Greeting identifies the greeting to print on correspondence.", + "sequence": 0, + "column_name": "C_Greeting_ID", + "element_name": "C_Greeting_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Greeting", + "key_column_name": "C_Greeting.C_Greeting_ID", + "display_column_name": "", + "query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting ORDER BY 3", + "direct_query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting WHERE C_Greeting.C_Greeting_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 178, + "uuid": "a520eb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Maintain Greetings", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9755, + "uuid": "8d630fc0-fb40-11e8-a479-7a0060f0aa01", + "name": "SO Tax exempt", + "description": "Business partner is exempt from tax on sales", + "help": "If a business partner is exempt from tax on sales, the exempt tax rate is used. For this, you need to set up a tax rate with a 0% rate and indicate that this is your tax exempt rate. This is required for tax reporting, so that you can track tax exempt transactions.", + "sequence": 0, + "column_name": "IsTaxExempt", + "element_name": "IsTaxExempt", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9716, + "uuid": "8d62f724-fb40-11e8-a479-7a0060f0aa01", + "name": "Order Description", + "description": "Description to be used on orders", + "help": "The Order Description identifies the standard description to use on orders for this Customer.", + "sequence": 0, + "column_name": "SO_Description", + "element_name": "SO_Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9759, + "uuid": "8d63131c-fb40-11e8-a479-7a0060f0aa01", + "name": "Employees", + "description": "Number of employees", + "help": "Indicates the number of employees for this Business Partner. This field displays only for Prospects.", + "sequence": 0, + "column_name": "NumberEmployees", + "element_name": "NumberEmployees", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9717, + "uuid": "8d6323c0-fb40-11e8-a479-7a0060f0aa01", + "name": "Freight Cost Rule", + "description": "Method for charging Freight", + "help": "The Freight Cost Rule indicates the method used when charging for freight.", + "sequence": 0, + "column_name": "FreightCostRule", + "element_name": "FreightCostRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=153 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9710, + "uuid": "8d6387a2-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Rule", + "description": "Frequency and method of invoicing ", + "help": "The Invoice Rule defines how a Business Partner is invoiced and the frequency of invoicing.", + "sequence": 0, + "column_name": "InvoiceRule", + "element_name": "InvoiceRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=150 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9750, + "uuid": "8d63a732-fb40-11e8-a479-7a0060f0aa01", + "name": "Share", + "description": "Share of Customer's business as a percentage", + "help": "The Share indicates the percentage of this Business Partner's volume of the products supplied.", + "sequence": 0, + "column_name": "ShareOfCustomer", + "element_name": "ShareOfCustomer", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 9719, + "uuid": "8d63d734-fb40-11e8-a479-7a0060f0aa01", + "name": "Delivery Via", + "description": "How the order will be delivered", + "help": "The Delivery Via indicates how the products should be delivered. For example, will the order be picked up or shipped.", + "sequence": 0, + "column_name": "DeliveryViaRule", + "element_name": "DeliveryViaRule", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=152 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9754, + "uuid": "8d63f750-fb40-11e8-a479-7a0060f0aa01", + "name": "Summary Level", + "description": "This is a summary entity", + "help": "A summary entity represents a branch in a tree rather than an end-node. Summary entities are used for reporting and do not have own values.", + "sequence": 0, + "column_name": "IsSummary", + "element_name": "IsSummary", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9742, + "uuid": "8d640966-fb40-11e8-a479-7a0060f0aa01", + "name": "Acquisition Cost", + "description": "The cost of gaining the prospect as a customer", + "help": "The Acquisition Cost identifies the cost associated with making this prospect a customer.", + "sequence": 0, + "column_name": "AcqusitionCost", + "element_name": "AcqusitionCost", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 37, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 9743, + "uuid": "8d640a24-fb40-11e8-a479-7a0060f0aa01", + "name": "Rating", + "description": "Classification or Importance", + "help": "The Rating is used to differentiate the importance", + "sequence": 0, + "column_name": "Rating", + "element_name": "Rating", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9744, + "uuid": "8d640ae2-fb40-11e8-a479-7a0060f0aa01", + "name": "One time transaction", + "description": "", + "help": "", + "sequence": 0, + "column_name": "IsOneTime", + "element_name": "IsOneTime", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 9709, + "uuid": "8d64c040-fb40-11e8-a479-7a0060f0aa01", + "name": "Name 2", + "description": "Additional Name", + "help": "", + "sequence": 0, + "column_name": "Name2", + "element_name": "Name2", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 9745, + "uuid": "8d64f0f6-fb40-11e8-a479-7a0060f0aa01", + "name": "URL", + "description": "Full URL address - e.g. http://www.adempiere.org", + "help": "The URL defines an fully qualified web address like http://www.adempiere.org", + "sequence": 0, + "column_name": "URL", + "element_name": "URL", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 40, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 120 + }, + { + "id": 2484, + "uuid": "8d39a9e6-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2486, + "uuid": "8d38a5d2-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": true, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2517, + "uuid": "8d37fb6e-fb40-11e8-a479-7a0060f0aa01", + "name": "Search Key", + "description": "Search key for the record in the format required - must be unique", + "help": "A search key allows you a fast method of finding a particular record.\nIf you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the \"Maintain Sequence\" window with the name \"DocumentNo_\", where TableName is the actual name of the table (e.g. C_Order).", + "sequence": 10, + "column_name": "Value", + "element_name": "Value", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.erpya.lve.model.CalloutBPartner.taxID", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2506, + "uuid": "8cef3ca8-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 20, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 7623, + "uuid": "8d60dfb6-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 30, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2499, + "uuid": "8cedd548-fb40-11e8-a479-7a0060f0aa01", + "name": "Employee", + "description": "Indicates if this Business Partner is an employee", + "help": "The Employee checkbox indicates if this Business Partner is an Employee. If it is selected, additional fields will display which further identify this employee.", + "sequence": 40, + "column_name": "IsEmployee", + "element_name": "IsEmployee", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2501, + "uuid": "8cee177e-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Indicates if the business partner is a sales representative or company agent", + "help": "The Sales Rep checkbox indicates if this business partner is a sales representative. A sales representative may also be an employee, but does not need to be.", + "sequence": 50, + "column_name": "IsSalesRep", + "element_name": "IsSalesRep", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + } + ] + }, + { + "id": 226, + "uuid": "a4a07d76-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank Account", + "description": "Define Bank Account", + "help": "The Define Bank Account Tab defines the banking information for this business partner. This data is used for processing payments and remittances.", + "table_name": "C_BP_BankAccount", + "sequence": 50, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BP_BankAccount.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BP_BankAccount.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BP_BankAccount.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", (SELECT NVL(C_BPartner.Name,'') FROM C_BPartner WHERE C_BP_BankAccount.C_BPartner_ID=C_BPartner.C_BPartner_ID) AS \"DisplayColumn_C_BPartner_ID\", (SELECT NVL(AD_User.Name,'') FROM AD_User WHERE C_BP_BankAccount.AD_User_ID=AD_User.AD_User_ID) AS \"DisplayColumn_AD_User_ID\", BPBankAcctUse_AD_Ref_List.Name AS \"DisplayColumn_BPBankAcctUse\", (SELECT NVL(C_Bank.Name,'')||' - '||NVL(C_Bank.RoutingNo,'') FROM C_Bank WHERE C_BP_BankAccount.C_Bank_ID=C_Bank.C_Bank_ID) AS \"DisplayColumn_C_Bank_ID\", BankAccountType_AD_Ref_List.Name AS \"DisplayColumn_BankAccountType\", CreditCardType_AD_Ref_List.Name AS \"DisplayColumn_CreditCardType\", R_AvsAddr_AD_Ref_List.Name AS \"DisplayColumn_R_AvsAddr\", R_AvsZip_AD_Ref_List.Name AS \"DisplayColumn_R_AvsZip\" FROM C_BP_BankAccount AS C_BP_BankAccount LEFT JOIN AD_Ref_List AS BPBankAcctUse_AD_Ref_List ON(BPBankAcctUse_AD_Ref_List.Value = C_BP_BankAccount.BPBankAcctUse AND BPBankAcctUse_AD_Ref_List.AD_Reference_ID = 393) LEFT JOIN AD_Ref_List AS BankAccountType_AD_Ref_List ON(BankAccountType_AD_Ref_List.Value = C_BP_BankAccount.BankAccountType AND BankAccountType_AD_Ref_List.AD_Reference_ID = 216) LEFT JOIN AD_Ref_List AS CreditCardType_AD_Ref_List ON(CreditCardType_AD_Ref_List.Value = C_BP_BankAccount.CreditCardType AND CreditCardType_AD_Ref_List.AD_Reference_ID = 149) LEFT JOIN AD_Ref_List AS R_AvsAddr_AD_Ref_List ON(R_AvsAddr_AD_Ref_List.Value = C_BP_BankAccount.R_AvsAddr AND R_AvsAddr_AD_Ref_List.AD_Reference_ID = 213) LEFT JOIN AD_Ref_List AS R_AvsZip_AD_Ref_List ON(R_AvsZip_AD_Ref_List.Value = C_BP_BankAccount.R_AvsZip AND R_AvsZip_AD_Ref_List.AD_Reference_ID = 213)", + "where_clause": "C_BP_BankAccount.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [], + "fields": [ + { + "id": 2201, + "uuid": "8d54c8ac-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Bank Account", + "description": "Bank Account of the Business Partner", + "help": "The Partner Bank Account identifies the bank account to be used for this Business Partner", + "sequence": 0, + "column_name": "C_BP_BankAccount_ID", + "element_name": "C_BP_BankAccount_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2198, + "uuid": "8d57ed7a-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2199, + "uuid": "8d588870-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 4105, + "uuid": "8d0ac180-fb40-11e8-a479-7a0060f0aa01", + "name": "User/Contact", + "description": "User within the system - Internal or Business Partner Contact", + "help": "The User identifies a unique user in the system. This could be an internal user or a business partner contact", + "sequence": 0, + "column_name": "AD_User_ID", + "element_name": "AD_User_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE AD_User.C_BPartner_ID=@C_BPartner_ID@ ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE AD_User.AD_User_ID=?", + "validation_code": "AD_User.C_BPartner_ID=@C_BPartner_ID@", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 92922, + "uuid": "2dce518a-8166-11e9-8618-ef2b7b17c28f", + "name": "IBAN", + "description": "International Bank Account Number", + "help": "If your bank provides an International Bank Account Number, enter it here\nDetails ISO 13616 and http://www.ecbs.org. The account number has the maximum length of 22 characters (without spaces). The IBAN is often printed with a apace after 4 characters. Do not enter the spaces in Adempiere.", + "sequence": 0, + "column_name": "IBAN", + "element_name": "IBAN", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=Y", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2204, + "uuid": "8cedc1de-fb40-11e8-a479-7a0060f0aa01", + "name": "Routing No", + "description": "Bank Routing Number", + "help": "The Bank Routing Number (ABA Number) identifies a legal Bank. It is used in routing checks and electronic transactions.", + "sequence": 0, + "column_name": "RoutingNo", + "element_name": "RoutingNo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=Y & @C_Bank_ID@=0", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4109, + "uuid": "8cf14ae8-fb40-11e8-a479-7a0060f0aa01", + "name": "Credit Card", + "description": "Credit Card (Visa, MC, AmEx)", + "help": "The Credit Card drop down list box is used for selecting the type of Credit Card presented for payment.", + "sequence": 0, + "column_name": "CreditCardType", + "element_name": "CreditCardType", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=N", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=149 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=149 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 4108, + "uuid": "8d0909e4-fb40-11e8-a479-7a0060f0aa01", + "name": "Number", + "description": "Credit Card Number ", + "help": "The Credit Card number indicates the number on the credit card, without blanks or spaces.", + "sequence": 0, + "column_name": "CreditCardNumber", + "element_name": "CreditCardNumber", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=N", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4110, + "uuid": "8cf1f966-fb40-11e8-a479-7a0060f0aa01", + "name": "Verification Code", + "description": "Credit Card Verification code on credit card", + "help": "The Credit Card Verification indicates the verification code on the credit card (AMEX 4 digits on front; MC,Visa 3 digits back)", + "sequence": 0, + "column_name": "CreditCardVV", + "element_name": "CreditCardVV", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=N", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 4 + }, + { + "id": 4106, + "uuid": "8d06b770-fb40-11e8-a479-7a0060f0aa01", + "name": "Exp. Month", + "description": "Expiry Month", + "help": "The Expiry Month indicates the expiry month for this credit card.", + "sequence": 0, + "column_name": "CreditCardExpMM", + "element_name": "CreditCardExpMM", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=N", + "display_type": 11, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 4107, + "uuid": "8cef3212-fb40-11e8-a479-7a0060f0aa01", + "name": "Exp. Year", + "description": "Expiry Year", + "help": "The Expiry Year indicates the expiry year for this credit card.", + "sequence": 0, + "column_name": "CreditCardExpYY", + "element_name": "CreditCardExpYY", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=N", + "display_type": 11, + "default_value": "2000", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 4102, + "uuid": "8cedc15c-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Street", + "description": "Street address of the Credit Card or Account holder", + "help": "The Street Address of the Credit Card or Account holder.", + "sequence": 0, + "column_name": "A_Street", + "element_name": "A_Street", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 4096, + "uuid": "8cecc63a-fb40-11e8-a479-7a0060f0aa01", + "name": "Account City", + "description": "City or the Credit Card or Account Holder", + "help": "The Account City indicates the City of the Credit Card or Account holder", + "sequence": 0, + "column_name": "A_City", + "element_name": "A_City", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 4103, + "uuid": "8cf25f5a-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Zip/Postal", + "description": "Zip Code of the Credit Card or Account Holder", + "help": "The Zip Code of the Credit Card or Account Holder.", + "sequence": 0, + "column_name": "A_Zip", + "element_name": "A_Zip", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4101, + "uuid": "8cf114c4-fb40-11e8-a479-7a0060f0aa01", + "name": "Account State", + "description": "State of the Credit Card or Account holder", + "help": "The State of the Credit Card or Account holder", + "sequence": 0, + "column_name": "A_State", + "element_name": "A_State", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 6298, + "uuid": "8d0b427c-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Country", + "description": "Country", + "help": "Account Country Name", + "sequence": 0, + "column_name": "A_Country", + "element_name": "A_Country", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 4098, + "uuid": "8cef3fc8-fb40-11e8-a479-7a0060f0aa01", + "name": "Driver License", + "description": "Payment Identification - Driver License", + "help": "The Driver's License being used as identification.", + "sequence": 0, + "column_name": "A_Ident_DL", + "element_name": "A_Ident_DL", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4112, + "uuid": "8d5a7fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Address verified", + "description": "This address has been verified", + "help": "The Address Verified indicates if the address has been verified by the Credit Card Company.", + "sequence": 0, + "column_name": "R_AvsAddr", + "element_name": "R_AvsAddr", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=213 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=213 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 4113, + "uuid": "8d57fefa-fb40-11e8-a479-7a0060f0aa01", + "name": "Zip verified", + "description": "The Zip Code has been verified", + "help": "The Zip Verified indicates if the zip code has been verified by the Credit Card Company.", + "sequence": 0, + "column_name": "R_AvsZip", + "element_name": "R_AvsZip", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=213 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=213 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2202, + "uuid": "8d38a3ca-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 10, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": true, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsActive='Y' AND C_BPartner.IsSummary='N' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "C_BPartner.IsActive='Y' AND C_BPartner.IsSummary='N'", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2203, + "uuid": "8d38a690-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 20, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 4111, + "uuid": "8cf34af0-fb40-11e8-a479-7a0060f0aa01", + "name": "ACH", + "description": "Automatic Clearing House", + "help": "The ACH checkbox indicates if this Bank Account accepts ACH transactions.", + "sequence": 30, + "column_name": "IsACH", + "element_name": "IsACH", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 13699, + "uuid": "8d0f009c-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Usage", + "description": "Business Partner Bank Account usage", + "help": "Determines how the bank account is used.", + "sequence": 40, + "column_name": "BPBankAcctUse", + "element_name": "BPBankAcctUse", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=Y", + "display_type": 17, + "default_value": "B", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=393 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=393 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2200, + "uuid": "8cf18364-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank", + "description": "Bank", + "help": "The Bank is a unique identifier of a Bank for this Organization or for a Business Partner with whom this Organization transacts.", + "sequence": 50, + "column_name": "C_Bank_ID", + "element_name": "C_Bank_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 3, + "display_logic": "@IsACH@=Y", + "display_type": 30, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Bank", + "key_column_name": "C_Bank.C_Bank_ID", + "display_column_name": "", + "query": "SELECT C_Bank.C_Bank_ID,NULL,NVL(C_Bank.Name,'-1') ||'_'|| NVL(C_Bank.RoutingNo,'-1'),C_Bank.IsActive, C_Bank.UUID FROM C_Bank ORDER BY 3", + "direct_query": "SELECT C_Bank.C_Bank_ID,NULL,NVL(C_Bank.Name,'-1') ||'_'|| NVL(C_Bank.RoutingNo,'-1'),C_Bank.IsActive, C_Bank.UUID FROM C_Bank WHERE C_Bank.C_Bank_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 158, + "uuid": "a5214fc8-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank", + "description": "Maintain Bank", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 4104, + "uuid": "8cf02f50-fb40-11e8-a479-7a0060f0aa01", + "name": "Bank Account Type", + "description": "Bank Account Type", + "help": "The Bank Account Type field indicates the type of account (savings, checking etc) this account is defined as.", + "sequence": 60, + "column_name": "BankAccountType", + "element_name": "BankAccountType", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsACH@=Y", + "display_type": 17, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=216 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=216 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2197, + "uuid": "8d0c5838-fb40-11e8-a479-7a0060f0aa01", + "name": "Account No", + "description": "Account Number", + "help": "The Account Number indicates the Number assigned to this bank account. ", + "sequence": 70, + "column_name": "AccountNo", + "element_name": "AccountNo", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 2, + "display_logic": "@IsACH@=Y", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 104, + "uuid": "8dde09c8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4099, + "uuid": "8ce90b94-fb40-11e8-a479-7a0060f0aa01", + "name": "Social Security No", + "description": "Payment Identification - Social Security No", + "help": "The Social Security number being used as identification.", + "sequence": 80, + "column_name": "A_Ident_SSN", + "element_name": "A_Ident_SSN", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 104, + "uuid": "8dde09c8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 20 + }, + { + "id": 4100, + "uuid": "8d05a2c2-fb40-11e8-a479-7a0060f0aa01", + "name": "Account Name", + "description": "Name on Credit Card or Account holder", + "help": "The Name of the Credit Card or Account holder.", + "sequence": 90, + "column_name": "A_Name", + "element_name": "A_Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 104, + "uuid": "8dde09c8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 4097, + "uuid": "8cef3f46-fb40-11e8-a479-7a0060f0aa01", + "name": "Account EMail", + "description": "Email Address", + "help": "The EMail Address indicates the EMail address off the Credit Card or Account holder.", + "sequence": 100, + "column_name": "A_EMail", + "element_name": "A_EMail", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 104, + "uuid": "8dde09c8-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + } + ] + }, + { + "id": 222, + "uuid": "a4a06ffc-fb40-11e8-a479-7a0060f0aa01", + "name": "Location", + "description": "Define Location", + "help": "The Location Tab defines the physical location of a business partner. A business partner may have multiple location records.", + "table_name": "C_BPartner_Location", + "sequence": 60, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner_Location.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner_Location.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner_Location.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", (SELECT NVL(C_BPartner.Name,'') FROM C_BPartner WHERE C_BPartner_Location.C_BPartner_ID=C_BPartner.C_BPartner_ID) AS \"DisplayColumn_C_BPartner_ID\", (SELECT NVL(C_SalesRegion.Name,'') FROM C_SalesRegion WHERE C_BPartner_Location.C_SalesRegion_ID=C_SalesRegion.C_SalesRegion_ID) AS \"DisplayColumn_C_SalesRegion_ID\" FROM C_BPartner_Location AS C_BPartner_Location", + "where_clause": "C_BPartner_Location.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [], + "fields": [ + { + "id": 2613, + "uuid": "8d381b3a-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Location", + "description": "Identifies the (ship to) address for this Business Partner", + "help": "The Partner address indicates the location of a Business Partner", + "sequence": 0, + "column_name": "C_BPartner_Location_ID", + "element_name": "C_BPartner_Location_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2181, + "uuid": "8d39d57e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2182, + "uuid": "8d54d9fa-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2187, + "uuid": "8cec1708-fb40-11e8-a479-7a0060f0aa01", + "name": "Fax", + "description": "Facsimile number", + "help": "The Fax identifies a facsimile number for this Business Partner or Location", + "sequence": 0, + "column_name": "Fax", + "element_name": "Fax", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2188, + "uuid": "8cec17e4-fb40-11e8-a479-7a0060f0aa01", + "name": "ISDN", + "description": "ISDN or modem line", + "help": "The ISDN identifies a ISDN or Modem line number.", + "sequence": 0, + "column_name": "ISDN", + "element_name": "ISDN", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2194, + "uuid": "8cec4412-fb40-11e8-a479-7a0060f0aa01", + "name": "Pay-From Address", + "description": "Business Partner pays from that address and we'll send dunning letters there", + "help": "If the Pay-From Address is selected, this location is the address the Business Partner pays from and where dunning letters will be sent to.", + "sequence": 0, + "column_name": "IsPayFrom", + "element_name": "IsPayFrom", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2195, + "uuid": "8cecbc58-fb40-11e8-a479-7a0060f0aa01", + "name": "Remit-To Address", + "description": "Business Partner payment address", + "help": "If the Remit-To Address is selected, the location is used to send payments to the vendor.", + "sequence": 0, + "column_name": "IsRemitTo", + "element_name": "IsRemitTo", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2186, + "uuid": "8cebfc8c-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Region", + "description": "Sales coverage region", + "help": "The Sales Region indicates a specific area of sales coverage.", + "sequence": 0, + "column_name": "C_SalesRegion_ID", + "element_name": "C_SalesRegion_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_SalesRegion", + "key_column_name": "C_SalesRegion.C_SalesRegion_ID", + "display_column_name": "", + "query": "SELECT C_SalesRegion.C_SalesRegion_ID,NULL,NVL(C_SalesRegion.Name,'-1'),C_SalesRegion.IsActive, C_SalesRegion.UUID FROM C_SalesRegion ORDER BY 3", + "direct_query": "SELECT C_SalesRegion.C_SalesRegion_ID,NULL,NVL(C_SalesRegion.Name,'-1'),C_SalesRegion.IsActive, C_SalesRegion.UUID FROM C_SalesRegion WHERE C_SalesRegion.C_SalesRegion_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 152, + "uuid": "a520fee2-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Region", + "description": "Maintain Sales Regions", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2183, + "uuid": "8d3a9cc0-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 10, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": true, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2189, + "uuid": "8d37e6ec-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 20, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2185, + "uuid": "8ce8463c-fb40-11e8-a479-7a0060f0aa01", + "name": "Address", + "description": "Location or Address", + "help": "The Location / Address field defines the location of an entity.", + "sequence": 30, + "column_name": "C_Location_ID", + "element_name": "C_Location_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 21, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "org.adempiere.model.CalloutBPartnerLocation.formatPhone", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 2190, + "uuid": "8cecf916-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 40, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": ".", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 2191, + "uuid": "8cf26d56-fb40-11e8-a479-7a0060f0aa01", + "name": "Phone", + "description": "Identifies a telephone number", + "help": "The Phone field identifies a telephone number", + "sequence": 50, + "column_name": "Phone", + "element_name": "Phone", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2192, + "uuid": "8cec27ca-fb40-11e8-a479-7a0060f0aa01", + "name": "2nd Phone", + "description": "Identifies an alternate telephone number.", + "help": "The 2nd Phone field identifies an alternate telephone number.", + "sequence": 60, + "column_name": "Phone2", + "element_name": "Phone2", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 2196, + "uuid": "8ceb1344-fb40-11e8-a479-7a0060f0aa01", + "name": "Ship Address", + "description": "Business Partner Shipment Address", + "help": "If the Ship Address is selected, the location is used to ship goods to a customer or receive goods from a vendor.", + "sequence": 70, + "column_name": "IsShipTo", + "element_name": "IsShipTo", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 2193, + "uuid": "8ceb2fdc-fb40-11e8-a479-7a0060f0aa01", + "name": "Invoice Address", + "description": "Business Partner Invoice/Bill Address", + "help": "If the Invoice Address is selected, the location is used to send invoices to a customer or receive invoices from a vendor.", + "sequence": 80, + "column_name": "IsBillTo", + "element_name": "IsBillTo", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 95537, + "uuid": "8cbfa29a-becc-11e9-9fd6-0242ac110002", + "name": "SICA Code", + "description": "Used for identify a location", + "help": "See: https://sistema.sunagro.gob.ve/index.php", + "sequence": 90, + "column_name": "SICACode", + "element_name": "SICACode", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50109, + "uuid": "2f5bac34-becc-11e9-acc1-0242ac110002", + "name": "Government Information (Venezuela)", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 99647, + "uuid": "402c1121-71a2-493c-8a00-a4af78394b26", + "name": "Default Shipping", + "description": "Default Shipping", + "help": "The Default Checkbox indicates if this record will be used as a default value.", + "sequence": 170, + "column_name": "IsDefaultShipping", + "element_name": "IsDefaultShipping", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsShipTo@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 99649, + "uuid": "4e944f0f-2b37-446c-82c6-e5d8684b78f5", + "name": "Default Billing Location", + "description": "Default Billing Location for Store", + "help": "", + "sequence": 180, + "column_name": "IsDefaultBilling", + "element_name": "IsDefaultBilling", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsBillTo@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 99650, + "uuid": "4ea51389-cd9f-4b05-9aaf-ca5eec83b343", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 190, + "column_name": "Description", + "element_name": "Description", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": false, + "default_value_to": "", + "field_length": 255 + } + ] + }, + { + "id": 496, + "uuid": "a4a15b88-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact (User)", + "description": "Maintain User within the system - Internal or Business Partner Contact", + "help": "The User identifies a unique user in the system. This could be an internal user or a business partner contact", + "table_name": "AD_User", + "sequence": 70, + "tab_level": 1, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 7, + "link_column_name": "C_BPartner_ID", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT AD_User.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE AD_User.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE AD_User.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", (SELECT NVL(C_BPartner.Name,'') FROM C_BPartner WHERE AD_User.C_BPartner_ID=C_BPartner.C_BPartner_ID) AS \"DisplayColumn_C_BPartner_ID\", (SELECT NVL(C_Greeting.Name,'') FROM C_Greeting WHERE AD_User.C_Greeting_ID=C_Greeting.C_Greeting_ID) AS \"DisplayColumn_C_Greeting_ID\", (SELECT NVL(C_BPartner_Location.Name,'') FROM C_BPartner_Location WHERE AD_User.C_BPartner_Location_ID=C_BPartner_Location.C_BPartner_Location_ID) AS \"DisplayColumn_C_BPartner_Location_ID\", NotificationType_AD_Ref_List.Name AS \"DisplayColumn_NotificationType\", (SELECT NVL(C_Job.Name,'') FROM C_Job WHERE AD_User.C_Job_ID=C_Job.C_Job_ID) AS \"DisplayColumn_C_Job_ID\" FROM AD_User AS AD_User LEFT JOIN AD_Ref_List AS NotificationType_AD_Ref_List ON(NotificationType_AD_Ref_List.Value = AD_User.NotificationType AND NotificationType_AD_Ref_List.AD_Reference_ID = 344)", + "where_clause": "AD_User.C_BPartner_ID = @C_BPartner_ID@", + "order_by_clause": "", + "parent_tab_uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "processes": [ + { + "id": 53276, + "uuid": "a42c73b8-fb40-11e8-a479-7a0060f0aa01", + "name": "Convert Lead", + "description": "Convert Lead to BP and Opportunity", + "help": "Convert Lead into a Business Partner and (optional) Sales Opportunity", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 53582, + "uuid": "a43b97d0-fb40-11e8-a479-7a0060f0aa01", + "name": "CreateOpportunity", + "description": "Create Opportunity", + "help": "Create a new Sales Opportunity when converting a lead", + "sequence": 10, + "column_name": "CreateOpportunity", + "element_name": "CreateOpportunity", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 53583, + "uuid": "a43b7fac-fb40-11e8-a479-7a0060f0aa01", + "name": "Expected Close Date", + "description": "Expected Close Date", + "help": "The Expected Close Date indicates the expected last or final date", + "sequence": 20, + "column_name": "ExpectedCloseDate", + "element_name": "ExpectedCloseDate", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 53584, + "uuid": "a43b84f2-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 30, + "column_name": "Description", + "element_name": "Description", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 53585, + "uuid": "a43b806a-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Stage", + "description": "Stages of the sales process", + "help": "Define what stages your sales process will move through", + "sequence": 40, + "column_name": "C_SalesStage_ID", + "element_name": "C_SalesStage_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_SalesStage", + "key_column_name": "C_SalesStage.C_SalesStage_ID", + "display_column_name": "Name", + "query": "SELECT C_SalesStage.C_SalesStage_ID,NULL,NVL(C_SalesStage.Name,'-1'),C_SalesStage.IsActive, C_SalesStage.UUID FROM C_SalesStage WHERE C_SalesStage.IsActive='Y' ORDER BY C_SalesStage.Value", + "direct_query": "SELECT C_SalesStage.C_SalesStage_ID,NULL,NVL(C_SalesStage.Name,'-1'),C_SalesStage.IsActive, C_SalesStage.UUID FROM C_SalesStage WHERE C_SalesStage.IsActive='Y' AND C_SalesStage.C_SalesStage_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 53154, + "uuid": "a521cf98-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Stage", + "description": "", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 53586, + "uuid": "a43b8394-fb40-11e8-a479-7a0060f0aa01", + "name": "Opportunity Amount", + "description": "The estimated value of this opportunity.", + "help": "", + "sequence": 50, + "column_name": "OpportunityAmt", + "element_name": "OpportunityAmt", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 12, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 53587, + "uuid": "a43b78ae-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "The Currency for this record", + "help": "Indicates the Currency to be used when processing or reporting on this record", + "sequence": 60, + "column_name": "C_Currency_ID", + "element_name": "C_Currency_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Currency", + "key_column_name": "C_Currency.C_Currency_ID", + "display_column_name": "ISO_Code", + "query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.IsEMUMember='N' AND C_Currency.IsActive='Y' ORDER BY C_Currency.ISO_Code", + "direct_query": "SELECT C_Currency.C_Currency_ID,NULL,NVL(C_Currency.ISO_Code,'-1'),C_Currency.IsActive, C_Currency.UUID FROM C_Currency WHERE C_Currency.IsEMUMember='N' AND C_Currency.IsActive='Y' AND C_Currency.C_Currency_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 115, + "uuid": "a520e6be-fb40-11e8-a479-7a0060f0aa01", + "name": "Currency", + "description": "Maintain Currencies", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 53588, + "uuid": "a43b7aa2-fb40-11e8-a479-7a0060f0aa01", + "name": "Sales Representative", + "description": "Sales Representative or Company Agent", + "help": "The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.", + "sequence": 70, + "column_name": "SalesRep_ID", + "element_name": "SalesRep_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@CreateOpportunity@='Y'", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE EXISTS (SELECT * FROM C_BPartner bp WHERE AD_User.C_BPartner_ID=bp.C_BPartner_ID AND bp.IsSalesRep='Y')\n AND AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + } + ] + }, + { + "id": 54464, + "uuid": "ef559ff5-bfec-4fc6-936e-9f7a2e23750d", + "name": "Generate Token for Third Party Access", + "description": "Generate Token for Third Party Access", + "help": "Generate Token for Third Party Access based on User and Role\nIf you select \"Revoke All Tokens\" then all generated token will be revoked and nothing is generated for this user and role", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 57925, + "uuid": "6eb5a179-ed42-434a-ae71-8dc3970b7e75", + "name": "Role", + "description": "Responsibility Role", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 10, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "Name", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE EXISTS(SELECT 1 FROM AD_User_Roles ur WHERE ur.AD_User_ID = @AD_User_ID@ AND ur.AD_Role_ID = AD_Role.AD_Role_ID) ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "EXISTS(SELECT 1 FROM AD_User_Roles ur WHERE ur.AD_User_ID = @AD_User_ID@ AND ur.AD_Role_ID = AD_Role.AD_Role_ID)", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 22 + }, + { + "id": 57928, + "uuid": "57c79846-c6dc-4463-bf63-bf60a94b1a56", + "name": "Revoke All Tokens", + "description": "Revoke All Tokens", + "help": "A revoke token request causes the removal of the client permissions associated with the specified token used to access the user's protected resources. ... OAuth refresh tokens are tokens issued by the Authorization Server to the client that can be used to obtain a new access token.", + "sequence": 20, + "column_name": "IsRevokeAllTokens", + "element_name": "IsRevokeAllTokens", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + } + ] + } + ], + "fields": [ + { + "id": 7003, + "uuid": "8d5f77c0-fb40-11e8-a479-7a0060f0aa01", + "name": "Trx Organization", + "description": "Performing or initiating organization", + "help": "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.", + "sequence": 0, + "column_name": "AD_OrgTrx_ID", + "element_name": "AD_OrgTrx_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 18, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "Name", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Value,'-1') || '-' || NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.IsSummary='N' AND AD_Org_ID <> 0 ORDER BY AD_Org.Name", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Value,'-1') || '-' || NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.IsSummary='N' AND AD_Org_ID <> 0 AND AD_Org.AD_Org_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7015, + "uuid": "8ce71758-fb40-11e8-a479-7a0060f0aa01", + "name": "User/Contact", + "description": "User within the system - Internal or Business Partner Contact", + "help": "The User identifies a unique user in the system. This could be an internal user or a business partner contact", + "sequence": 0, + "column_name": "AD_User_ID", + "element_name": "AD_User_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 10474, + "uuid": "8d67a6c0-fb40-11e8-a479-7a0060f0aa01", + "name": "LDAP User Name", + "description": "User Name used for authorization via LDAP (directory) services", + "help": "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.", + "sequence": 0, + "column_name": "LDAPUser", + "element_name": "LDAPUser", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 7006, + "uuid": "8d5f78ec-fb40-11e8-a479-7a0060f0aa01", + "name": "Supervisor", + "description": "Supervisor for this user/organization - used for escalation and approval", + "help": "The Supervisor indicates who will be used for forwarding and escalating issues for this user - or for approvals.", + "sequence": 0, + "column_name": "Supervisor_ID", + "element_name": "Supervisor_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "Name", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User ORDER BY AD_User.Name", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7009, + "uuid": "8ce8974a-fb40-11e8-a479-7a0060f0aa01", + "name": "Convert Lead", + "description": "Convert Lead to BP and Opportunity", + "help": "Convert Lead into a Business Partner and (optional) Sales Opportunity", + "sequence": 0, + "column_name": "Processing", + "element_name": "Processing", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 28, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "process": { + "id": 53276, + "uuid": "a42c73b8-fb40-11e8-a479-7a0060f0aa01", + "name": "Convert Lead", + "description": "Convert Lead to BP and Opportunity", + "help": "Convert Lead into a Business Partner and (optional) Sales Opportunity", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 7019, + "uuid": "8d5dd406-fb40-11e8-a479-7a0060f0aa01", + "name": "EMail User ID", + "description": "User Name (ID) in the Mail System", + "help": "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.", + "sequence": 0, + "column_name": "EMailUser", + "element_name": "EMailUser", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 7018, + "uuid": "8d6230c8-fb40-11e8-a479-7a0060f0aa01", + "name": "EMail User Password", + "description": "Password of your email user id", + "help": "Required if the mail server requires authentification to send emails.", + "sequence": 0, + "column_name": "EMailUserPW", + "element_name": "EMailUserPW", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 7014, + "uuid": "8d572976-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7016, + "uuid": "8d6147f8-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.AD_Client_ID=@AD_Client_ID@ OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.AD_Client_ID=@AD_Client_ID@ OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 84884, + "uuid": "8db6403c-fb40-11e8-a479-7a0060f0aa01", + "name": "Is Project Manager", + "description": "Is Project Manager", + "help": "Is Project Manager indicates if the contact is assigned as project manager to a project", + "sequence": 0, + "column_name": "IsProjectManager", + "element_name": "IsProjectManager", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 112, + "uuid": "8dddf8de-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 84885, + "uuid": "8db65f0e-fb40-11e8-a479-7a0060f0aa01", + "name": "Is Project Member", + "description": "Is Project Member", + "help": "Is Project Member indicates if the contact is assigned to a project and will receive notifications of any project changes", + "sequence": 0, + "column_name": "IsProjectMember", + "element_name": "IsProjectMember", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 112, + "uuid": "8dddf8de-fb40-11e8-a479-7a0060f0aa01", + "name": "Project", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 81447, + "uuid": "8d9fae30-fb40-11e8-a479-7a0060f0aa01", + "name": "Login User", + "description": "", + "help": "Define if the user can login", + "sequence": 0, + "column_name": "IsLoginUser", + "element_name": "IsLoginUser", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 135, + "uuid": "8dddfc9e-fb40-11e8-a479-7a0060f0aa01", + "name": "Access", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 81448, + "uuid": "8db640dc-fb40-11e8-a479-7a0060f0aa01", + "name": "Internal User", + "description": "Is just for use internal", + "help": "", + "sequence": 0, + "column_name": "IsInternalUser", + "element_name": "IsInternalUser", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsLoginUser@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 81446, + "uuid": "8dba710c-fb40-11e8-a479-7a0060f0aa01", + "name": "Search Key", + "description": "Search key for the record in the format required - must be unique", + "help": "A search key allows you a fast method of finding a particular record.\nIf you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the \"Maintain Sequence\" window with the name \"DocumentNo_\", where TableName is the actual name of the table (e.g. C_Order).", + "sequence": 0, + "column_name": "Value", + "element_name": "Value", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsLoginUser@='Y'", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 7013, + "uuid": "8db64f64-fb40-11e8-a479-7a0060f0aa01", + "name": "Password", + "description": "Password of any length (case sensitive)", + "help": "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\".", + "sequence": 0, + "column_name": "Password", + "element_name": "Password", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": true, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsLoginUser@='Y'", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1024 + }, + { + "id": 81458, + "uuid": "8db64a46-fb40-11e8-a479-7a0060f0aa01", + "name": "Webstore User", + "description": "Is a user for Webstore", + "help": "It is created from Webstore", + "sequence": 0, + "column_name": "IsWebstoreUser", + "element_name": "IsWebstoreUser", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "@IsLoginUser@='Y'", + "display_type": 20, + "default_value": "N", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 7020, + "uuid": "8db64ec4-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Greeting to print on correspondence", + "help": "The Greeting identifies the greeting to print on correspondence.", + "sequence": 0, + "column_name": "C_Greeting_ID", + "element_name": "C_Greeting_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Greeting", + "key_column_name": "C_Greeting.C_Greeting_ID", + "display_column_name": "", + "query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting ORDER BY 3", + "direct_query": "SELECT C_Greeting.C_Greeting_ID,NULL,NVL(C_Greeting.Name,'-1'),C_Greeting.IsActive, C_Greeting.UUID FROM C_Greeting WHERE C_Greeting.C_Greeting_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 178, + "uuid": "a520eb00-fb40-11e8-a479-7a0060f0aa01", + "name": "Greeting", + "description": "Maintain Greetings", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7023, + "uuid": "8db65fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Partner Location", + "description": "Identifies the (ship to) address for this Business Partner", + "help": "The Partner address indicates the location of a Business Partner", + "sequence": 0, + "column_name": "C_BPartner_Location_ID", + "element_name": "C_BPartner_Location_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner_Location", + "key_column_name": "C_BPartner_Location.C_BPartner_Location_ID", + "display_column_name": "", + "query": "SELECT C_BPartner_Location.C_BPartner_Location_ID,NULL,NVL(C_BPartner_Location.Name,'-1'),C_BPartner_Location.IsActive, C_BPartner_Location.UUID FROM C_BPartner_Location WHERE C_BPartner_Location.C_BPartner_ID=@C_BPartner_ID@ ORDER BY 3", + "direct_query": "SELECT C_BPartner_Location.C_BPartner_Location_ID,NULL,NVL(C_BPartner_Location.Name,'-1'),C_BPartner_Location.IsActive, C_BPartner_Location.UUID FROM C_BPartner_Location WHERE C_BPartner_Location.C_BPartner_Location_ID=?", + "validation_code": "C_BPartner_Location.C_BPartner_ID=@C_BPartner_ID@", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7028, + "uuid": "8cf2b298-fb40-11e8-a479-7a0060f0aa01", + "name": "Title", + "description": "Name this entity is referred to as", + "help": "The Title indicates the name that an entity is referred to as.", + "sequence": 0, + "column_name": "Title", + "element_name": "Title", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 7025, + "uuid": "8d08f8fa-fb40-11e8-a479-7a0060f0aa01", + "name": "Fax", + "description": "Facsimile number", + "help": "The Fax identifies a facsimile number for this Business Partner or Location", + "sequence": 0, + "column_name": "Fax", + "element_name": "Fax", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 12321, + "uuid": "8db6617a-fb40-11e8-a479-7a0060f0aa01", + "name": "Position", + "description": "Job Position", + "help": "", + "sequence": 0, + "column_name": "C_Job_ID", + "element_name": "C_Job_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_Job", + "key_column_name": "C_Job.C_Job_ID", + "display_column_name": "", + "query": "SELECT C_Job.C_Job_ID,NULL,NVL(C_Job.Name,'-1'),C_Job.IsActive, C_Job.UUID FROM C_Job WHERE C_Job.IsEmployee=(SELECT IsEmployee FROM C_BPartner WHERE C_BPartner_ID=@C_BPartner_ID@) ORDER BY 3", + "direct_query": "SELECT C_Job.C_Job_ID,NULL,NVL(C_Job.Name,'-1'),C_Job.IsActive, C_Job.UUID FROM C_Job WHERE C_Job.C_Job_ID=?", + "validation_code": "C_Job.IsEmployee=(SELECT IsEmployee FROM C_BPartner WHERE C_BPartner_ID=@C_BPartner_ID@)", + "zoom_windows": [ + { + "id": 351, + "uuid": "a5213cfe-fb40-11e8-a479-7a0060f0aa01", + "name": "Position", + "description": "Maintain Job Positions", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 12320, + "uuid": "8db6621a-fb40-11e8-a479-7a0060f0aa01", + "name": "Full BP Access", + "description": "The user/contact has full access to Business Partner information and resources", + "help": "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\"", + "sequence": 0, + "column_name": "IsFullBPAccess", + "element_name": "IsFullBPAccess", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 11526, + "uuid": "8db662b0-fb40-11e8-a479-7a0060f0aa01", + "name": "EMail Verify", + "description": "Date Email was verified", + "help": "", + "sequence": 0, + "column_name": "EMailVerifyDate", + "element_name": "EMailVerifyDate", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 16, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 8255, + "uuid": "8d9faf66-fb40-11e8-a479-7a0060f0aa01", + "name": "Verification Info", + "description": "Verification information of EMail Address", + "help": "The field contains additional information how the EMail Address has been verified", + "sequence": 0, + "column_name": "EMailVerify", + "element_name": "EMailVerify", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": true, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 7005, + "uuid": "8d0abce4-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner ", + "description": "Identifies a Business Partner", + "help": "A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson", + "sequence": 10, + "column_name": "C_BPartner_ID", + "element_name": "C_BPartner_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 30, + "default_value": "", + "read_only_logic": "@C_BPartner_ID@!0", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "C_BPartner", + "key_column_name": "C_BPartner.C_BPartner_ID", + "display_column_name": "", + "query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.IsActive='Y' AND C_BPartner.IsSummary='N' ORDER BY 3", + "direct_query": "SELECT C_BPartner.C_BPartner_ID,NULL,NVL(C_BPartner.Name,'-1'),C_BPartner.IsActive, C_BPartner.UUID FROM C_BPartner WHERE C_BPartner.C_BPartner_ID=?", + "validation_code": "C_BPartner.IsActive='Y' AND C_BPartner.IsSummary='N'", + "zoom_windows": [ + { + "id": 123, + "uuid": "a520de12-fb40-11e8-a479-7a0060f0aa01", + "name": "Business Partner", + "description": "Maintain Business Partners", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 7012, + "uuid": "8d5cb90e-fb40-11e8-a479-7a0060f0aa01", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 20, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 7010, + "uuid": "8cfbdf4e-fb40-11e8-a479-7a0060f0aa01", + "name": "Name", + "description": "Alphanumeric identifier of the entity", + "help": "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.", + "sequence": 30, + "column_name": "Name", + "element_name": "Name", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 7011, + "uuid": "8cf1329c-fb40-11e8-a479-7a0060f0aa01", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 40, + "column_name": "Description", + "element_name": "Description", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 7029, + "uuid": "8cfc187e-fb40-11e8-a479-7a0060f0aa01", + "name": "Comments", + "description": "Comments or additional information", + "help": "The Comments field allows for free form entry of additional information.", + "sequence": 50, + "column_name": "Comments", + "element_name": "Comments", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 14, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 2000 + }, + { + "id": 7022, + "uuid": "8d02e474-fb40-11e8-a479-7a0060f0aa01", + "name": "Birthday", + "description": "Birthday or Anniversary day", + "help": "Birthday or Anniversary day", + "sequence": 60, + "column_name": "Birthday", + "element_name": "Birthday", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 11681, + "uuid": "8db660da-fb40-11e8-a479-7a0060f0aa01", + "name": "Notification Type", + "description": "Type of Notifications", + "help": "Emails or Notification sent out for Request Updates, etc.", + "sequence": 70, + "column_name": "NotificationType", + "element_name": "NotificationType", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 17, + "default_value": "E", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=344 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=344 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 7017, + "uuid": "8db64e10-fb40-11e8-a479-7a0060f0aa01", + "name": "EMail Address", + "description": "Electronic Mail Address", + "help": "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.", + "sequence": 80, + "column_name": "EMail", + "element_name": "EMail", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "@IsLoginUser@='Y'", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 60 + }, + { + "id": 7024, + "uuid": "8db66044-fb40-11e8-a479-7a0060f0aa01", + "name": "Phone", + "description": "Identifies a telephone number", + "help": "The Phone field identifies a telephone number", + "sequence": 90, + "column_name": "Phone", + "element_name": "Phone", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 7021, + "uuid": "8d9faec6-fb40-11e8-a479-7a0060f0aa01", + "name": "2nd Phone", + "description": "Identifies an alternate telephone number.", + "help": "The 2nd Phone field identifies an alternate telephone number.", + "sequence": 100, + "column_name": "Phone2", + "element_name": "Phone2", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 40 + }, + { + "id": 7027, + "uuid": "8db66350-fb40-11e8-a479-7a0060f0aa01", + "name": "Last Contact", + "description": "Date this individual was last contacted", + "help": "The Last Contact indicates the date that this Business Partner Contact was last contacted.", + "sequence": 110, + "column_name": "LastContact", + "element_name": "LastContact", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 15, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 7 + }, + { + "id": 7026, + "uuid": "8d0455c0-fb40-11e8-a479-7a0060f0aa01", + "name": "Last Result", + "description": "Result of last contact", + "help": "The Last Result identifies the result of the last contact made.", + "sequence": 120, + "column_name": "LastResult", + "element_name": "LastResult", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": true, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "field_group": { + "id": 50061, + "uuid": "8dde0c52-fb40-11e8-a479-7a0060f0aa01", + "name": "Contact", + "field_group_type": "C", + "is_active": true + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + } + ] + }, + { + "id": 55043, + "uuid": "f849a57d-555e-4146-b7a4-835f3b03f04b", + "name": "Social Media", + "description": "Social Media Information for User/Contact", + "help": "See: https://en.wikipedia.org/wiki/Social_media for future reference", + "table_name": "AD_UserSocialMedia", + "sequence": 80, + "tab_level": 2, + "is_active": true, + "is_single_row": false, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 7, + "link_column_name": "AD_User_ID", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT AD_UserSocialMedia.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE AD_UserSocialMedia.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE AD_UserSocialMedia.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", (SELECT NVL(AD_User.Name,'') FROM AD_User WHERE AD_UserSocialMedia.AD_User_ID=AD_User.AD_User_ID) AS \"DisplayColumn_AD_User_ID\", ApplicationType_AD_Ref_List.Name AS \"DisplayColumn_ApplicationType\", (SELECT NVL(AD_AppSupport.Value,'')||' - '||NVL(AD_AppSupport.Name,'') FROM AD_AppSupport WHERE AD_UserSocialMedia.AD_AppSupport_ID=AD_AppSupport.AD_AppSupport_ID) AS \"DisplayColumn_AD_AppSupport_ID\" FROM AD_UserSocialMedia AS AD_UserSocialMedia LEFT JOIN AD_Ref_List AS ApplicationType_AD_Ref_List ON(ApplicationType_AD_Ref_List.Value = AD_UserSocialMedia.ApplicationType AND ApplicationType_AD_Ref_List.AD_Reference_ID = 54081)", + "where_clause": "EXISTS(SELECT 1 FROM AD_User AS t0 INNER JOIN C_BPartner_Location AS t1 ON(t1.C_BPartner_ID=t0.C_BPartner_Location_ID) INNER JOIN C_BP_BankAccount AS t2 ON(t2.C_BP_BankAccount_ID=t1.C_BP_BankAccount_ID) INNER JOIN C_BPartner AS t3 ON(t3.C_BPartner_ID=t2.C_BPartner_ID) INNER JOIN C_BPartner AS t4 ON(t4.C_BPartner_ID=t3.C_BPartner_ID) INNER JOIN C_BPartner AS t5 ON(t5.C_BPartner_ID=t4.C_BPartner_ID) WHERE t5.C_BPartner_ID = @C_BPartner_ID@ AND t0.C_BPartner_ID = AD_UserSocialMedia.AD_User_ID)", + "order_by_clause": "", + "parent_tab_uuid": "a4a15b88-fb40-11e8-a479-7a0060f0aa01", + "processes": [], + "fields": [ + { + "id": 100163, + "uuid": "4f80fa9a-d963-4999-a086-0890e1bc2e1f", + "name": "Social Media", + "description": "User External Link for Social Media", + "help": "See https://en.wikipedia.org/wiki/Social_media for future references", + "sequence": 0, + "column_name": "AD_UserSocialMedia_ID", + "element_name": "AD_UserSocialMedia_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": true, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 13, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100164, + "uuid": "d08fcc84-934c-4f9f-9678-d49668425c81", + "name": "Immutable Universally Unique Identifier", + "description": "Immutable Universally Unique Identifier", + "help": "\"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", + "sequence": 0, + "column_name": "UUID", + "element_name": "UUID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 36 + }, + { + "id": 100165, + "uuid": "fd3c0cbf-d68c-46d3-b6b7-c2393646c8e1", + "name": "Client", + "description": "Client/Tenant for this installation.", + "help": "A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.", + "sequence": 0, + "column_name": "AD_Client_ID", + "element_name": "AD_Client_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Client_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Client", + "key_column_name": "AD_Client.AD_Client_ID", + "display_column_name": "", + "query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID <> 0 ORDER BY 3", + "direct_query": "SELECT AD_Client.AD_Client_ID,NULL,NVL(AD_Client.Name,'-1'),AD_Client.IsActive, AD_Client.UUID FROM AD_Client WHERE AD_Client.AD_Client_ID=?", + "validation_code": "AD_Client.AD_Client_ID <> 0", + "zoom_windows": [ + { + "id": 109, + "uuid": "a521762e-fb40-11e8-a479-7a0060f0aa01", + "name": "Client", + "description": "Maintain Clients/Tenants", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100166, + "uuid": "fa896fcc-855c-4a60-ab6c-14e5ea7fc8fd", + "name": "Organization", + "description": "Organizational entity within client", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 0, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": false, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@#AD_Org_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE (AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "(AD_Org.IsSummary='N' OR AD_Org.AD_Org_ID=0)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100167, + "uuid": "dabee666-8d6e-4700-bba3-48956e993e73", + "name": "User/Contact", + "description": "User within the system - Internal or Business Partner Contact", + "help": "The User identifies a unique user in the system. This could be an internal user or a business partner contact", + "sequence": 10, + "column_name": "AD_User_ID", + "element_name": "AD_User_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": true, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "@AD_User_ID@", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_User", + "key_column_name": "AD_User.AD_User_ID", + "display_column_name": "", + "query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User ORDER BY 3", + "direct_query": "SELECT AD_User.AD_User_ID,NULL,NVL(AD_User.Name,'-1'),AD_User.IsActive, AD_User.UUID FROM AD_User WHERE AD_User.AD_User_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 108, + "uuid": "a5216710-fb40-11e8-a479-7a0060f0aa01", + "name": "User", + "description": "Maintain Users of the system", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100168, + "uuid": "52207d23-41cb-490a-8357-24e5af580568", + "name": "Application Type", + "description": "Application Type, used for identify a Application Type like Message Queue", + "help": "You can define a type like Message Queue", + "sequence": 20, + "column_name": "ApplicationType", + "element_name": "ApplicationType", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 1, + "display_logic": "", + "display_type": 17, + "default_value": "SMN", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Ref_List", + "key_column_name": "AD_Ref_List.Value", + "display_column_name": "Name", + "query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=54081 ORDER BY 3", + "direct_query": "SELECT NULL, AD_Ref_List.Value,AD_Ref_List.Name,AD_Ref_List.IsActive, AD_Ref_List.UUID FROM AD_Ref_List WHERE AD_Ref_List.AD_Reference_ID=54081 AND AD_Ref_List.Value=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + }, + { + "id": 101, + "uuid": "a5212b92-fb40-11e8-a479-7a0060f0aa01", + "name": "Reference", + "description": "Maintain System References", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 3 + }, + { + "id": 100169, + "uuid": "795cabec-d7b0-4ac4-8b60-89fc92630a19", + "name": "App Support", + "description": "App Support for External Connection", + "help": "Used for define a new API for external Connection", + "sequence": 30, + "column_name": "AD_AppSupport_ID", + "element_name": "AD_AppSupport_ID", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_AppSupport", + "key_column_name": "AD_AppSupport.AD_AppSupport_ID", + "display_column_name": "", + "query": "SELECT AD_AppSupport.AD_AppSupport_ID,NULL,NVL(AD_AppSupport.Value,'-1') ||'_'|| NVL(AD_AppSupport.Name,'-1'),AD_AppSupport.IsActive, AD_AppSupport.UUID FROM AD_AppSupport WHERE AD_AppSupport.ApplicationType = '@ApplicationType@' ORDER BY 3", + "direct_query": "SELECT AD_AppSupport.AD_AppSupport_ID,NULL,NVL(AD_AppSupport.Value,'-1') ||'_'|| NVL(AD_AppSupport.Name,'-1'),AD_AppSupport.IsActive, AD_AppSupport.UUID FROM AD_AppSupport WHERE AD_AppSupport.AD_AppSupport_ID=?", + "validation_code": "AD_AppSupport.ApplicationType = '@ApplicationType@'", + "zoom_windows": [ + { + "id": 53641, + "uuid": "a5220e40-fb40-11e8-a479-7a0060f0aa01", + "name": "App Support", + "description": "App Support for External Connection", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 10 + }, + { + "id": 100170, + "uuid": "f48968e5-795f-46a2-a042-85b723f37378", + "name": "Account Name", + "description": "", + "help": "", + "sequence": 40, + "column_name": "AccountName", + "element_name": "AccountName", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": true, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": true, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": true, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 2, + "display_logic": "", + "display_type": 10, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + }, + { + "id": 100171, + "uuid": "bfdf9026-0f39-44a2-9f8f-889b0caa0090", + "name": "Active", + "description": "The record is active in the system", + "help": "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.\nThere are two reasons for de-activating and not deleting records:\n(1) The system requires the record for audit purposes.\n(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.", + "sequence": 50, + "column_name": "IsActive", + "element_name": "IsActive", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": true, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 20, + "default_value": "Y", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 1 + }, + { + "id": 100172, + "uuid": "3027f834-9761-4969-95ff-4e8707691a3c", + "name": "Description", + "description": "Optional short description of the record", + "help": "A description is limited to 255 characters.", + "sequence": 60, + "column_name": "Description", + "element_name": "Description", + "is_displayed": true, + "is_displayed_grid": true, + "is_read_only": false, + "is_allow_copy": true, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": true, + "is_identifier": false, + "is_allow_logging": true, + "is_selection_column": true, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 14, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 255 + } + ] + }, + { + "id": 220, + "uuid": "a49fca34-fb40-11e8-a479-7a0060f0aa01", + "name": "Logo", + "description": "Business Partner", + "help": "The Business Partner Tab defines any Entity with whom an organization transacts.", + "table_name": "C_BPartner", + "sequence": 10, + "tab_level": 0, + "is_active": true, + "is_single_row": true, + "is_advanced_tab": false, + "is_has_tree": false, + "is_info_tab": false, + "is_sort_tab": false, + "is_translation_tab": false, + "is_read_only": false, + "is_insert_record": true, + "is_view": false, + "is_deleteable": true, + "is_document": false, + "is_change_log": false, + "access_level": 3, + "link_column_name": "", + "sort_order_column_name": "", + "sort_yes_no_column_name": "", + "parent_column_name": "", + "display_logic": "", + "commit_warning": "", + "query": "SELECT C_BPartner.*, (SELECT NVL(AD_Client.Name,'') FROM AD_Client WHERE C_BPartner.AD_Client_ID=AD_Client.AD_Client_ID) AS \"DisplayColumn_AD_Client_ID\", (SELECT NVL(AD_Org.Name,'') FROM AD_Org WHERE C_BPartner.AD_Org_ID=AD_Org.AD_Org_ID) AS \"DisplayColumn_AD_Org_ID\", BPartner_Parent_ID_C_BPartner.Name AS \"DisplayColumn_BPartner_Parent_ID\", (SELECT NVL(C_Greeting.Name,'') FROM C_Greeting WHERE C_BPartner.C_Greeting_ID=C_Greeting.C_Greeting_ID) AS \"DisplayColumn_C_Greeting_ID\", SOCreditStatus_AD_Ref_List.Name AS \"DisplayColumn_SOCreditStatus\", (SELECT NVL(C_TaxGroup.Name,'') FROM C_TaxGroup WHERE C_BPartner.C_TaxGroup_ID=C_TaxGroup.C_TaxGroup_ID) AS \"DisplayColumn_C_TaxGroup_ID\", (SELECT NVL(C_BP_Group.Name,'') FROM C_BP_Group WHERE C_BPartner.C_BP_Group_ID=C_BP_Group.C_BP_Group_ID) AS \"DisplayColumn_C_BP_Group_ID\", AD_Language_AD_Language.Name AS \"DisplayColumn_AD_Language\", (SELECT NVL(C_BP_AccountType.Name,'') FROM C_BP_AccountType WHERE C_BPartner.C_BP_AccountType_ID=C_BP_AccountType.C_BP_AccountType_ID) AS \"DisplayColumn_C_BP_AccountType_ID\", (SELECT NVL(C_BP_IndustryType.Name,'') FROM C_BP_IndustryType WHERE C_BPartner.C_BP_IndustryType_ID=C_BP_IndustryType.C_BP_IndustryType_ID) AS \"DisplayColumn_C_BP_IndustryType_ID\", (SELECT NVL(C_BP_Segment.Name,'') FROM C_BP_Segment WHERE C_BPartner.C_BP_Segment_ID=C_BP_Segment.C_BP_Segment_ID) AS \"DisplayColumn_C_BP_Segment_ID\", (SELECT NVL(C_BP_SalesGroup.Name,'') FROM C_BP_SalesGroup WHERE C_BPartner.C_BP_SalesGroup_ID=C_BP_SalesGroup.C_BP_SalesGroup_ID) AS \"DisplayColumn_C_BP_SalesGroup_ID\", PersonType_AD_Ref_List.Name AS \"DisplayColumn_PersonType\" FROM C_BPartner AS C_BPartner LEFT JOIN C_BPartner AS BPartner_Parent_ID_C_BPartner ON(BPartner_Parent_ID_C_BPartner.C_BPartner_ID = C_BPartner.BPartner_Parent_ID) LEFT JOIN AD_Ref_List AS SOCreditStatus_AD_Ref_List ON(SOCreditStatus_AD_Ref_List.Value = C_BPartner.SOCreditStatus AND SOCreditStatus_AD_Ref_List.AD_Reference_ID = 289) LEFT JOIN AD_Language AS AD_Language_AD_Language ON(AD_Language_AD_Language.AD_Language = C_BPartner.AD_Language) LEFT JOIN AD_Ref_List AS PersonType_AD_Ref_List ON(PersonType_AD_Ref_List.Value = C_BPartner.PersonType AND PersonType_AD_Ref_List.AD_Reference_ID = 54145)", + "where_clause": "", + "order_by_clause": "", + "parent_tab_uuid": "", + "field_group": { + "id": 50012, + "uuid": "8dde0482-fb40-11e8-a479-7a0060f0aa01", + "name": "Logo", + "field_group_type": "T", + "is_active": true + }, + "processes": [ + { + "id": 260, + "uuid": "a42b86e2-fb40-11e8-a479-7a0060f0aa01", + "name": "Link Organization", + "description": "Link Business Partner to an Organization", + "help": "If the Business Partner is another Organization, select the Organization or set to empty to create a new Organization. You link a Business Partner to an Organization to create explicit Documents for Inter-Org transaction.\nIf you create a new Organization, you may supply a Organization Type. If you select a Role, the access to the new Organization is limited to that role, otherwise all (non manual) roles of the Client will have access to the new Organization.", + "is_report": false, + "access_level": 3, + "show_help": "", + "is_direct_print": false, + "is_active": true, + "report_export_types": [], + "parameters": [ + { + "id": 467, + "uuid": "a439b9ce-fb40-11e8-a479-7a0060f0aa01", + "name": "Existing Organization", + "description": "Organizational entity within client - set to empty if you want to create a new organization", + "help": "An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.", + "sequence": 10, + "column_name": "AD_Org_ID", + "element_name": "AD_Org_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Org", + "key_column_name": "AD_Org.AD_Org_ID", + "display_column_name": "", + "query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID) ORDER BY 3", + "direct_query": "SELECT AD_Org.AD_Org_ID,NULL,NVL(AD_Org.Name,'-1'),AD_Org.IsActive, AD_Org.UUID FROM AD_Org WHERE AD_Org.AD_Org_ID=?", + "validation_code": "AD_Org.AD_Org_ID <> 0 AND AD_Org.IsSummary='N' \nAND NOT EXISTS (SELECT * FROM C_BPartner bp WHERE AD_Org.AD_Org_ID=bp.AD_OrgBP_ID)", + "zoom_windows": [ + { + "id": 110, + "uuid": "a5210fa4-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization", + "description": "Maintain Organizations", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 468, + "uuid": "a43a1d1a-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Organization Type", + "help": "Organization Type allows you to categorize your organizations for reporting purposes", + "sequence": 20, + "column_name": "AD_OrgType_ID", + "element_name": "AD_OrgType_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_OrgType", + "key_column_name": "AD_OrgType.AD_OrgType_ID", + "display_column_name": "", + "query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType ORDER BY 3", + "direct_query": "SELECT AD_OrgType.AD_OrgType_ID,NULL,NVL(AD_OrgType.Name,'-1'),AD_OrgType.IsActive, AD_OrgType.UUID FROM AD_OrgType WHERE AD_OrgType.AD_OrgType_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 304, + "uuid": "a5214460-fb40-11e8-a479-7a0060f0aa01", + "name": "Organization Type", + "description": "Maintain Organization Types", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + }, + { + "id": 469, + "uuid": "a439b2b2-fb40-11e8-a479-7a0060f0aa01", + "name": "Limit Access to Role", + "description": "If no Role is selected, grant access to all (non-manual) roles of the Client", + "help": "The Role determines security and access a user who has this Role will have in the System.", + "sequence": 30, + "column_name": "AD_Role_ID", + "element_name": "AD_Role_ID", + "is_displayed": true, + "is_displayed_grid": false, + "is_read_only": false, + "is_allow_copy": false, + "is_encrypted": false, + "is_same_line": false, + "is_heading": false, + "is_field_only": false, + "is_quick_entry": false, + "is_mandatory": false, + "is_key": false, + "is_parent": false, + "is_updateable": false, + "is_identifier": false, + "is_allow_logging": false, + "is_selection_column": false, + "is_range": false, + "is_always_updateable": false, + "is_translated": false, + "identifier_sequence": 0, + "display_logic": "", + "display_type": 19, + "default_value": "-1", + "read_only_logic": "", + "mandatory_logic": "", + "callout": "", + "column_sql": "", + "v_format": "", + "value_min": "", + "value_max": "", + "format_pattern": "", + "reference": { + "table_name": "AD_Role", + "key_column_name": "AD_Role.AD_Role_ID", + "display_column_name": "", + "query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role ORDER BY 3", + "direct_query": "SELECT AD_Role.AD_Role_ID,NULL,NVL(AD_Role.Name,'-1'),AD_Role.IsActive, AD_Role.UUID FROM AD_Role WHERE AD_Role.AD_Role_ID=?", + "validation_code": "", + "zoom_windows": [ + { + "id": 111, + "uuid": "a521354c-fb40-11e8-a479-7a0060f0aa01", + "name": "Role", + "description": "Maintain User Responsibilities", + "is_sales_transaction": true, + "is_active": false + } + ] + }, + "is_query_criteria": false, + "is_order_by": false, + "seq_no_grid": 0, + "sort_no": 0, + "is_info_only": false, + "is_active": true, + "default_value_to": "", + "field_length": 0 + } + ] + } + ], + "fields": [] + } + ] + } +} \ No newline at end of file