diff --git a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCreateCustomer.Codeunit.al b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCreateCustomer.Codeunit.al
index 214caf5975..7f47fd27cc 100644
--- a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCreateCustomer.Codeunit.al
+++ b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCreateCustomer.Codeunit.al
@@ -3,7 +3,6 @@
///
codeunit 30110 "Shpfy Create Customer"
{
- Access = Internal;
Permissions =
#if not CLEAN22
tabledata "Config. Template Header" = r,
@@ -171,7 +170,7 @@ codeunit 30110 "Shpfy Create Customer"
/// Set Shop.
///
/// Parameter of type Code[20].
- internal procedure SetShop(Code: Code[20])
+ procedure SetShop(Code: Code[20])
begin
Clear(Shop);
Shop.Get(Code);
@@ -181,7 +180,7 @@ codeunit 30110 "Shpfy Create Customer"
/// Set Shop.
///
/// Parameter of type Record "Shopify Shop".
- internal procedure SetShop(ShopifyShop: Record "Shpfy Shop")
+ procedure SetShop(ShopifyShop: Record "Shpfy Shop")
begin
Shop := ShopifyShop;
end;
@@ -190,7 +189,7 @@ codeunit 30110 "Shpfy Create Customer"
/// Set Template Code.
///
/// Parameter of type Code[20].
- internal procedure SetTemplateCode(Code: Code[20])
+ procedure SetTemplateCode(Code: Code[20])
begin
TemplateCode := Code;
end;
diff --git a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCustomerImport.Codeunit.al b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCustomerImport.Codeunit.al
index 1da85b147e..4c2f7735b9 100644
--- a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCustomerImport.Codeunit.al
+++ b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyCustomerImport.Codeunit.al
@@ -3,8 +3,6 @@
///
codeunit 30117 "Shpfy Customer Import"
{
- Access = Internal;
-
trigger OnRun()
var
CustomerAddress: Record "Shpfy Customer Address";
@@ -49,12 +47,12 @@ codeunit 30117 "Shpfy Customer Import"
/// Get Customer.
///
/// Parameter of type Record "Shopify Customer".
- internal procedure GetCustomer(var ShopifyCustomerResult: Record "Shpfy Customer")
+ procedure GetCustomer(var ShopifyCustomerResult: Record "Shpfy Customer")
begin
ShopifyCustomerResult := ShopifyCustomer;
end;
- internal procedure SetAllowCreate(Value: Boolean)
+ procedure SetAllowCreate(Value: Boolean)
begin
AllowCreate := Value;
end;
@@ -63,7 +61,7 @@ codeunit 30117 "Shpfy Customer Import"
/// Set Customer.
///
/// Parameter of type BigInteger.
- internal procedure SetCustomer(Id: BigInteger)
+ procedure SetCustomer(Id: BigInteger)
begin
if Id <> 0 then begin
Clear(ShopifyCustomer);
@@ -82,7 +80,7 @@ codeunit 30117 "Shpfy Customer Import"
/// Set Customer.
///
/// Parameter of type Record "Shopify Customer".
- internal procedure SetCustomer(ShopifyCustomer: Record "Shpfy Customer")
+ procedure SetCustomer(ShopifyCustomer: Record "Shpfy Customer")
begin
SetCustomer(ShopifyCustomer.Id);
end;
@@ -91,7 +89,7 @@ codeunit 30117 "Shpfy Customer Import"
/// Set Shop.
///
/// Parameter of type Code[20].
- internal procedure SetShop(Code: Code[20])
+ procedure SetShop(Code: Code[20])
begin
Clear(Shop);
Shop.Get(Code);
@@ -102,7 +100,7 @@ codeunit 30117 "Shpfy Customer Import"
/// Set Shop.
///
/// Parameter of type Record "Shopify Shop".
- internal procedure SetShop(ShopifyShop: Record "Shpfy Shop")
+ procedure SetShop(ShopifyShop: Record "Shpfy Shop")
begin
Shop := ShopifyShop;
CustomerApi.SetShop(Shop);
@@ -112,7 +110,7 @@ codeunit 30117 "Shpfy Customer Import"
/// Set Template Code.
///
/// Parameter of type Code[10].
- internal procedure SetTemplateCode(Code: Code[10])
+ procedure SetTemplateCode(Code: Code[10])
begin
TemplateCode := Code;
end;
diff --git a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyUpdateCustomer.Codeunit.al b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyUpdateCustomer.Codeunit.al
index 291794906f..577f7301d8 100644
--- a/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyUpdateCustomer.Codeunit.al
+++ b/Apps/W1/Shopify/app/src/Customer/Codeunits/ShpfyUpdateCustomer.Codeunit.al
@@ -3,7 +3,6 @@
///
codeunit 30124 "Shpfy Update Customer"
{
- Access = Internal;
Permissions =
#if not CLEAN22
tabledata "Config. Template Header" = r,