How To replace file record in AL extensions ?
Brax007
Member Posts: 26
Hi everyone,
I'm discovering the AL extensions recently and I came across a problem when converting CAL to AL.
The problem is that I cant use File rec anymore so how can I replace it? this is an exemple of an obsolete code in the AL code :
procedure CheckPathExist(PathToCheck_P: Text[1024]): Boolean
var
File_L: Record File; (The type or method 'File' cannot be used for 'Extension' development)
begin
File_L.RESET;
File_L.SETFILTER(Path, PathToCheck_P);
File_L.SETRANGE("Is a file", FALSE);
IF File_L.ISEMPTY THEN
EXIT(FALSE)
ELSE
EXIT(TRUE);
end;
Thanks in advance!
I'm discovering the AL extensions recently and I came across a problem when converting CAL to AL.
The problem is that I cant use File rec anymore so how can I replace it? this is an exemple of an obsolete code in the AL code :
procedure CheckPathExist(PathToCheck_P: Text[1024]): Boolean
var
File_L: Record File; (The type or method 'File' cannot be used for 'Extension' development)
begin
File_L.RESET;
File_L.SETFILTER(Path, PathToCheck_P);
File_L.SETRANGE("Is a file", FALSE);
IF File_L.ISEMPTY THEN
EXIT(FALSE)
ELSE
EXIT(TRUE);
end;
Thanks in advance!
0
Answers
-
Try adding
"target": "Internal",
to app.json when you are using the on premise version0 -
I'm using the on premise version0
-
And was it the solution, or is file rec still not available?0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
