Home
Keyboard 3x3 keys (ymdk\ymd09) with QMK
HardWare:
A 9-key macropad by YMDK with per-key RGB lighting.
Tools:
QMK on GitHub ( QMK Configurator / ToolBox )
store the «default.c» for your keymap in «\qmk_firmware\keyboards\ymdk\ymd09\keymaps\default»
MSSYS «qmk compile -kb ymdk/ymd09 -km urs_01»
keymap.c example:
***********************************************************
#include QMK_KEYBOARD_H
enum {
Urs_1,
Urs_2,
Urs_3
};
bool process_record_user(uint16_t keycode, keyrecord_t *record){
switch(keycode){
case Urs_1:
if (record->event.pressed){
SEND_STRING("Hallo Urs");
}
else {
register_code(KC_ENT);
unregister_code(KC_ENT);
}
break;
case Urs_2:
if (record->event.pressed){
register_code(KC_LGUI);
register_code(KC_LSFT);
register_code(KC_S);
}
else {
unregister_code(KC_LGUI);
unregister_code(KC_LSFT);
unregister_code(KC_S);
}
break;
}
return true;
}
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[0] = LAYOUT(Urs_1, Urs_2, Urs_3,
KC_KP_4, LT(1, KC_KP_5), KC_KP_6,
KC_KP_1, KC_KP_2, KC_KP_3),
[1] = LAYOUT(RGB_RMOD, RGB_VAI, RGB_MOD,
RGB_HUI, KC_TRNS, RGB_SAI,
RGB_HUD, RGB_VAD, RGB_SAD),
};
https://gist.github.com/panzerstadt for example
- Details
AL Development - Business Central
Hello World App
- Businesscentral Admin Center ...
- MS Learn - BusinessCentral (administrator, developer, functional-consultant, solution-architect)
- Visual Studio Code (AL Language, AZ AL Dev Tools/AL Code Outline)
>> View >> Command Palette >> AL:Go!
>> in file launch.json (below "startobjectid") add «"tenant":"myTenantID",» and «"environmentName":"mySandBox",»
>> (command Palette) Download Symbols ... follow the instructions (the code needed is copied to the clipboard automatically)
>> build = ctrl+shift+b
>> F5 = build & deploy - AL: Clear credentials
The Page Inspector
top right «?» --> Other resources --> Help & Support --> (Troubleshooting) Inspect pages and data ...
OR --> CTRL + ALT + F1
Mandatory Fields in AL and Business Central
- Toutorials by Krzyztof Bialowas (AL for Beginners) / Erik Hougaard / Kauffmann NL / Steve Endow
- Docker Container Helper on FreddysBlog.com
- MS Docs - Business Central (Main)
- MS Docs - Table, Table Fields, and Table Extension Properties
- MS Docs - FieldType Option Type https://docs.microsoft.com/en-us/dynamics-nav/sql-server-data-types
- MS Docs - SQL Server Data Types (be aware NAV not BC)
- MS Docs - FlowFields
- MS Docs - Table Keys
- MS Docs - Triggers
- MS Docs - Pages Overview
- MS Docs - Available Fonts
- Tutorial - Customizing Standard Reports
- MS Docs - Create and Modify a Custom Report or Document Layout (i.e. Report Layout Selection >> Custom Report Layouts {RDLC & Word})
- Tool - Visual Studio (for the RDLC files)
- Next >> how to copy Belgium VAT reports into CH localised SandBox..
11 G/L - VAT Reconciliation
12 VAT Statement
13 VAT Register
19 VAT- VIES Declaration Tax Auth
20 Calculate and Post VAT Settlement
31 VAT Exceptions
32 Batch VAT Registration No. Check
209 Sales Reservation Avail.
409 Purchase Reservation Avail.
740 VAT Report Print
2500 Day Book VAT Entry
11310 VAT Statement Report
11312 Checklist Revenue and VAT
- Details
Page 5 of 5